@gooddata/code-cli 0.36.0-alpha.2 → 0.36.0-alpha.4
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/NOTICE +3 -3
- package/dist/index.js +1133 -837
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -35,7 +35,7 @@ var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
|
35
35
|
var __getProtoOf = Object.getPrototypeOf;
|
|
36
36
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
37
37
|
var __esmMin = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
38
|
-
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
38
|
+
var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
|
|
39
39
|
var __exportAll = (all, no_symbols) => {
|
|
40
40
|
let target = {};
|
|
41
41
|
for (var name in all) __defProp(target, name, {
|
|
@@ -2581,28 +2581,28 @@ var require_ansi_escapes = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
2581
2581
|
ansiEscapes.cursorDown = (count = 1) => ESC + count + "B";
|
|
2582
2582
|
ansiEscapes.cursorForward = (count = 1) => ESC + count + "C";
|
|
2583
2583
|
ansiEscapes.cursorBackward = (count = 1) => ESC + count + "D";
|
|
2584
|
-
ansiEscapes.cursorLeft =
|
|
2585
|
-
ansiEscapes.cursorSavePosition = isTerminalApp ? "\x1B7" :
|
|
2586
|
-
ansiEscapes.cursorRestorePosition = isTerminalApp ? "\x1B8" :
|
|
2587
|
-
ansiEscapes.cursorGetPosition =
|
|
2588
|
-
ansiEscapes.cursorNextLine =
|
|
2589
|
-
ansiEscapes.cursorPrevLine =
|
|
2590
|
-
ansiEscapes.cursorHide =
|
|
2591
|
-
ansiEscapes.cursorShow =
|
|
2584
|
+
ansiEscapes.cursorLeft = "\x1B[G";
|
|
2585
|
+
ansiEscapes.cursorSavePosition = isTerminalApp ? "\x1B7" : "\x1B[s";
|
|
2586
|
+
ansiEscapes.cursorRestorePosition = isTerminalApp ? "\x1B8" : "\x1B[u";
|
|
2587
|
+
ansiEscapes.cursorGetPosition = "\x1B[6n";
|
|
2588
|
+
ansiEscapes.cursorNextLine = "\x1B[E";
|
|
2589
|
+
ansiEscapes.cursorPrevLine = "\x1B[F";
|
|
2590
|
+
ansiEscapes.cursorHide = "\x1B[?25l";
|
|
2591
|
+
ansiEscapes.cursorShow = "\x1B[?25h";
|
|
2592
2592
|
ansiEscapes.eraseLines = (count) => {
|
|
2593
2593
|
let clear = "";
|
|
2594
2594
|
for (let i = 0; i < count; i++) clear += ansiEscapes.eraseLine + (i < count - 1 ? ansiEscapes.cursorUp() : "");
|
|
2595
2595
|
if (count) clear += ansiEscapes.cursorLeft;
|
|
2596
2596
|
return clear;
|
|
2597
2597
|
};
|
|
2598
|
-
ansiEscapes.eraseEndLine =
|
|
2599
|
-
ansiEscapes.eraseStartLine =
|
|
2600
|
-
ansiEscapes.eraseLine =
|
|
2601
|
-
ansiEscapes.eraseDown =
|
|
2602
|
-
ansiEscapes.eraseUp =
|
|
2603
|
-
ansiEscapes.eraseScreen =
|
|
2604
|
-
ansiEscapes.scrollUp =
|
|
2605
|
-
ansiEscapes.scrollDown =
|
|
2598
|
+
ansiEscapes.eraseEndLine = "\x1B[K";
|
|
2599
|
+
ansiEscapes.eraseStartLine = "\x1B[1K";
|
|
2600
|
+
ansiEscapes.eraseLine = "\x1B[2K";
|
|
2601
|
+
ansiEscapes.eraseDown = "\x1B[J";
|
|
2602
|
+
ansiEscapes.eraseUp = "\x1B[1J";
|
|
2603
|
+
ansiEscapes.eraseScreen = "\x1B[2J";
|
|
2604
|
+
ansiEscapes.scrollUp = "\x1B[S";
|
|
2605
|
+
ansiEscapes.scrollDown = "\x1B[T";
|
|
2606
2606
|
ansiEscapes.clearScreen = "\x1Bc";
|
|
2607
2607
|
ansiEscapes.clearTerminal = process.platform === "win32" ? `${ansiEscapes.eraseScreen}${ESC}0f` : `${ansiEscapes.eraseScreen}${ESC}3J${ESC}H`;
|
|
2608
2608
|
ansiEscapes.beep = BEL;
|
|
@@ -2650,8 +2650,8 @@ var require_ansi_escapes = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
2650
2650
|
};
|
|
2651
2651
|
}));
|
|
2652
2652
|
//#endregion
|
|
2653
|
-
//#region ../../../common/temp/aac/node_modules/.pnpm
|
|
2654
|
-
var
|
|
2653
|
+
//#region ../../../common/temp/aac/node_modules/.pnpm/yoctocolors-cjs@2.1.2/node_modules/yoctocolors-cjs/index.js
|
|
2654
|
+
var require_yoctocolors_cjs = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
2655
2655
|
const hasColors = __require("node:tty")?.WriteStream?.prototype?.hasColors?.() ?? false;
|
|
2656
2656
|
const format = (open, close) => {
|
|
2657
2657
|
if (!hasColors) return (input) => input;
|
|
@@ -2715,10 +2715,13 @@ var import_yoctocolors_cjs = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJS
|
|
|
2715
2715
|
colors.bgCyanBright = format(106, 49);
|
|
2716
2716
|
colors.bgWhiteBright = format(107, 49);
|
|
2717
2717
|
module.exports = colors;
|
|
2718
|
-
}))
|
|
2719
|
-
|
|
2720
|
-
|
|
2718
|
+
}));
|
|
2719
|
+
//#endregion
|
|
2720
|
+
//#region ../../../common/temp/aac/node_modules/.pnpm/@inquirer+figures@1.0.13/node_modules/@inquirer/figures/dist/esm/index.js
|
|
2721
2721
|
var import_commander = require_commander();
|
|
2722
|
+
var import_main = require_main$5();
|
|
2723
|
+
var import_ansi_escapes = /* @__PURE__ */ __toESM(require_ansi_escapes(), 1);
|
|
2724
|
+
var import_yoctocolors_cjs = /* @__PURE__ */ __toESM(require_yoctocolors_cjs(), 1);
|
|
2722
2725
|
function isUnicodeSupported$1() {
|
|
2723
2726
|
if (process$1.platform !== "win32") return process$1.env["TERM"] !== "linux";
|
|
2724
2727
|
return Boolean(process$1.env["WT_SESSION"]) || Boolean(process$1.env["TERMINUS_SUBLIME"]) || process$1.env["ConEmuTask"] === "{cmd::Cmder}" || process$1.env["TERM_PROGRAM"] === "Terminus-Sublime" || process$1.env["TERM_PROGRAM"] === "vscode" || process$1.env["TERM"] === "xterm-256color" || process$1.env["TERM"] === "alacritty" || process$1.env["TERMINAL_EMULATOR"] === "JetBrains-JediTerm";
|
|
@@ -16484,7 +16487,7 @@ var require_buffer_list = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
16484
16487
|
function copyBuffer(src, target, offset) {
|
|
16485
16488
|
Buffer$9.prototype.copy.call(src, target, offset);
|
|
16486
16489
|
}
|
|
16487
|
-
module.exports =
|
|
16490
|
+
module.exports = /*#__PURE__*/ function() {
|
|
16488
16491
|
function BufferList() {
|
|
16489
16492
|
_classCallCheck(this, BufferList);
|
|
16490
16493
|
this.head = null;
|
|
@@ -16903,7 +16906,8 @@ var require__stream_writable = /* @__PURE__ */ __commonJSMin(((exports, module)
|
|
|
16903
16906
|
this.ended = false;
|
|
16904
16907
|
this.finished = false;
|
|
16905
16908
|
this.destroyed = false;
|
|
16906
|
-
|
|
16909
|
+
var noDecode = options.decodeStrings === false;
|
|
16910
|
+
this.decodeStrings = !noDecode;
|
|
16907
16911
|
this.defaultEncoding = options.defaultEncoding || "utf8";
|
|
16908
16912
|
this.length = 0;
|
|
16909
16913
|
this.writing = false;
|
|
@@ -19082,8 +19086,8 @@ var require_bl = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
19082
19086
|
module.exports.BufferList = BufferList;
|
|
19083
19087
|
}));
|
|
19084
19088
|
//#endregion
|
|
19085
|
-
//#region ../../../common/temp/aac/node_modules/.pnpm/
|
|
19086
|
-
var
|
|
19089
|
+
//#region ../../../common/temp/aac/node_modules/.pnpm/ora@5.4.1/node_modules/ora/index.js
|
|
19090
|
+
var require_ora = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
19087
19091
|
const readline$1 = __require("readline");
|
|
19088
19092
|
const chalk = require_source();
|
|
19089
19093
|
const cliCursor = require_cli_cursor();
|
|
@@ -19350,11 +19354,14 @@ var import_ora = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((export
|
|
|
19350
19354
|
})();
|
|
19351
19355
|
return spinner;
|
|
19352
19356
|
};
|
|
19353
|
-
}))
|
|
19354
|
-
|
|
19355
|
-
|
|
19356
|
-
var import_strip_ansi = /* @__PURE__ */ __toESM(require_strip_ansi(), 1);
|
|
19357
|
+
}));
|
|
19358
|
+
//#endregion
|
|
19359
|
+
//#region ../../../common/temp/aac/node_modules/.pnpm/inquirer@9.3.7/node_modules/inquirer/lib/utils/readline.js
|
|
19357
19360
|
var import_cli_width = /* @__PURE__ */ __toESM(require_cli_width(), 1);
|
|
19361
|
+
var import_strip_ansi = /* @__PURE__ */ __toESM(require_strip_ansi(), 1);
|
|
19362
|
+
var import_string_width = /* @__PURE__ */ __toESM(require_string_width(), 1);
|
|
19363
|
+
var import_wrap_ansi = /* @__PURE__ */ __toESM(require_wrap_ansi(), 1);
|
|
19364
|
+
var import_ora = /* @__PURE__ */ __toESM(require_ora(), 1);
|
|
19358
19365
|
/**
|
|
19359
19366
|
* Move cursor left by `x`
|
|
19360
19367
|
* @param {Readline} rl - Readline instance
|
|
@@ -19882,7 +19889,8 @@ var RawListPrompt = class extends Prompt {
|
|
|
19882
19889
|
this.rawDefault = safeIndex;
|
|
19883
19890
|
}
|
|
19884
19891
|
this.opt.default = null;
|
|
19885
|
-
|
|
19892
|
+
const shouldLoop = this.opt.loop === void 0 ? true : this.opt.loop;
|
|
19893
|
+
this.paginator = new Paginator(void 0, { isInfinite: shouldLoop });
|
|
19886
19894
|
}
|
|
19887
19895
|
/**
|
|
19888
19896
|
* Start the Inquiry session
|
|
@@ -34996,9 +35004,10 @@ var import_main$2 = (/* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
34996
35004
|
var editorOpts = ExternalEditor.splitStringBySpace(editor).map(function(piece) {
|
|
34997
35005
|
return piece.replace("\\ ", " ");
|
|
34998
35006
|
});
|
|
35007
|
+
var bin = editorOpts.shift();
|
|
34999
35008
|
this.editor = {
|
|
35000
35009
|
args: editorOpts,
|
|
35001
|
-
bin
|
|
35010
|
+
bin
|
|
35002
35011
|
};
|
|
35003
35012
|
};
|
|
35004
35013
|
ExternalEditor.prototype.createTemporaryFile = function() {
|
|
@@ -35033,7 +35042,8 @@ var import_main$2 = (/* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
35033
35042
|
};
|
|
35034
35043
|
ExternalEditor.prototype.launchEditor = function() {
|
|
35035
35044
|
try {
|
|
35036
|
-
|
|
35045
|
+
var editorProcess = child_process_1$1.spawnSync(this.editor.bin, this.editor.args.concat([this.tempFile]), { stdio: "inherit" });
|
|
35046
|
+
this.lastExitStatus = editorProcess.status;
|
|
35037
35047
|
} catch (launchError) {
|
|
35038
35048
|
throw new LaunchEditorError_1.LaunchEditorError(launchError);
|
|
35039
35049
|
}
|
|
@@ -35061,7 +35071,8 @@ var EditorPrompt = class extends Prompt {
|
|
|
35061
35071
|
_run(cb) {
|
|
35062
35072
|
this.done = cb;
|
|
35063
35073
|
this.editorResult = new import_cjs.Subject();
|
|
35064
|
-
|
|
35074
|
+
const events = observe(this.rl);
|
|
35075
|
+
this.lineSubscription = events.line.subscribe(this.startExternalEditor.bind(this));
|
|
35065
35076
|
const waitUserInput = this.opt.waitUserInput === void 0 ? true : this.opt.waitUserInput;
|
|
35066
35077
|
const validation = this.handleSubmitEvents(this.editorResult);
|
|
35067
35078
|
validation.success.forEach(this.onEnd.bind(this));
|
|
@@ -35532,32 +35543,32 @@ ansiEscapes.cursorUp = (count = 1) => ESC + count + "A";
|
|
|
35532
35543
|
ansiEscapes.cursorDown = (count = 1) => ESC + count + "B";
|
|
35533
35544
|
ansiEscapes.cursorForward = (count = 1) => ESC + count + "C";
|
|
35534
35545
|
ansiEscapes.cursorBackward = (count = 1) => ESC + count + "D";
|
|
35535
|
-
ansiEscapes.cursorLeft =
|
|
35536
|
-
ansiEscapes.cursorSavePosition = isTerminalApp ? "\x1B7" :
|
|
35537
|
-
ansiEscapes.cursorRestorePosition = isTerminalApp ? "\x1B8" :
|
|
35538
|
-
ansiEscapes.cursorGetPosition =
|
|
35539
|
-
ansiEscapes.cursorNextLine =
|
|
35540
|
-
ansiEscapes.cursorPrevLine =
|
|
35541
|
-
ansiEscapes.cursorHide =
|
|
35542
|
-
ansiEscapes.cursorShow =
|
|
35546
|
+
ansiEscapes.cursorLeft = "\x1B[G";
|
|
35547
|
+
ansiEscapes.cursorSavePosition = isTerminalApp ? "\x1B7" : "\x1B[s";
|
|
35548
|
+
ansiEscapes.cursorRestorePosition = isTerminalApp ? "\x1B8" : "\x1B[u";
|
|
35549
|
+
ansiEscapes.cursorGetPosition = "\x1B[6n";
|
|
35550
|
+
ansiEscapes.cursorNextLine = "\x1B[E";
|
|
35551
|
+
ansiEscapes.cursorPrevLine = "\x1B[F";
|
|
35552
|
+
ansiEscapes.cursorHide = "\x1B[?25l";
|
|
35553
|
+
ansiEscapes.cursorShow = "\x1B[?25h";
|
|
35543
35554
|
ansiEscapes.eraseLines = (count) => {
|
|
35544
35555
|
let clear = "";
|
|
35545
35556
|
for (let i = 0; i < count; i++) clear += ansiEscapes.eraseLine + (i < count - 1 ? ansiEscapes.cursorUp() : "");
|
|
35546
35557
|
if (count) clear += ansiEscapes.cursorLeft;
|
|
35547
35558
|
return clear;
|
|
35548
35559
|
};
|
|
35549
|
-
ansiEscapes.eraseEndLine =
|
|
35550
|
-
ansiEscapes.eraseStartLine =
|
|
35551
|
-
ansiEscapes.eraseLine =
|
|
35552
|
-
ansiEscapes.eraseDown =
|
|
35553
|
-
ansiEscapes.eraseUp =
|
|
35554
|
-
ansiEscapes.eraseScreen =
|
|
35555
|
-
ansiEscapes.scrollUp =
|
|
35556
|
-
ansiEscapes.scrollDown =
|
|
35560
|
+
ansiEscapes.eraseEndLine = "\x1B[K";
|
|
35561
|
+
ansiEscapes.eraseStartLine = "\x1B[1K";
|
|
35562
|
+
ansiEscapes.eraseLine = "\x1B[2K";
|
|
35563
|
+
ansiEscapes.eraseDown = "\x1B[J";
|
|
35564
|
+
ansiEscapes.eraseUp = "\x1B[1J";
|
|
35565
|
+
ansiEscapes.eraseScreen = "\x1B[2J";
|
|
35566
|
+
ansiEscapes.scrollUp = "\x1B[S";
|
|
35567
|
+
ansiEscapes.scrollDown = "\x1B[T";
|
|
35557
35568
|
ansiEscapes.clearScreen = "\x1Bc";
|
|
35558
35569
|
ansiEscapes.clearTerminal = isWindows ? `${ansiEscapes.eraseScreen}${ESC}0f` : `${ansiEscapes.eraseScreen}${ESC}3J${ESC}H`;
|
|
35559
|
-
ansiEscapes.enterAlternativeScreen =
|
|
35560
|
-
ansiEscapes.exitAlternativeScreen =
|
|
35570
|
+
ansiEscapes.enterAlternativeScreen = "\x1B[?1049h";
|
|
35571
|
+
ansiEscapes.exitAlternativeScreen = "\x1B[?1049l";
|
|
35561
35572
|
ansiEscapes.beep = BEL;
|
|
35562
35573
|
ansiEscapes.link = (text, url) => [
|
|
35563
35574
|
OSC,
|
|
@@ -37092,7 +37103,7 @@ function isPromise(value) {
|
|
|
37092
37103
|
//#endregion
|
|
37093
37104
|
//#region package.json
|
|
37094
37105
|
var name$1 = "@gooddata/code-cli";
|
|
37095
|
-
var version$1 = "0.36.0-alpha.
|
|
37106
|
+
var version$1 = "0.36.0-alpha.4";
|
|
37096
37107
|
//#endregion
|
|
37097
37108
|
//#region ../code/esm/features/references/types.js
|
|
37098
37109
|
var UpdateReferencesType;
|
|
@@ -48588,31 +48599,28 @@ var require_schemes = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
48588
48599
|
parse: wsParse,
|
|
48589
48600
|
serialize: wsSerialize
|
|
48590
48601
|
};
|
|
48591
|
-
const wss = {
|
|
48592
|
-
scheme: "wss",
|
|
48593
|
-
domainHost: ws.domainHost,
|
|
48594
|
-
parse: ws.parse,
|
|
48595
|
-
serialize: ws.serialize
|
|
48596
|
-
};
|
|
48597
|
-
const urn = {
|
|
48598
|
-
scheme: "urn",
|
|
48599
|
-
parse: urnParse,
|
|
48600
|
-
serialize: urnSerialize,
|
|
48601
|
-
skipNormalize: true
|
|
48602
|
-
};
|
|
48603
|
-
const urnuuid = {
|
|
48604
|
-
scheme: "urn:uuid",
|
|
48605
|
-
parse: urnuuidParse,
|
|
48606
|
-
serialize: urnuuidSerialize,
|
|
48607
|
-
skipNormalize: true
|
|
48608
|
-
};
|
|
48609
48602
|
const SCHEMES = {
|
|
48610
48603
|
http,
|
|
48611
48604
|
https,
|
|
48612
48605
|
ws,
|
|
48613
|
-
wss
|
|
48614
|
-
|
|
48615
|
-
|
|
48606
|
+
wss: {
|
|
48607
|
+
scheme: "wss",
|
|
48608
|
+
domainHost: ws.domainHost,
|
|
48609
|
+
parse: ws.parse,
|
|
48610
|
+
serialize: ws.serialize
|
|
48611
|
+
},
|
|
48612
|
+
urn: {
|
|
48613
|
+
scheme: "urn",
|
|
48614
|
+
parse: urnParse,
|
|
48615
|
+
serialize: urnSerialize,
|
|
48616
|
+
skipNormalize: true
|
|
48617
|
+
},
|
|
48618
|
+
"urn:uuid": {
|
|
48619
|
+
scheme: "urn:uuid",
|
|
48620
|
+
parse: urnuuidParse,
|
|
48621
|
+
serialize: urnuuidSerialize,
|
|
48622
|
+
skipNormalize: true
|
|
48623
|
+
}
|
|
48616
48624
|
};
|
|
48617
48625
|
module.exports = SCHEMES;
|
|
48618
48626
|
}));
|
|
@@ -51624,6 +51632,11 @@ var require_anchors$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
51624
51632
|
prevAnchors.add(anchor);
|
|
51625
51633
|
return anchor;
|
|
51626
51634
|
},
|
|
51635
|
+
/**
|
|
51636
|
+
* With circular references, the source node is only resolved after all
|
|
51637
|
+
* of its child nodes are. This is why anchors are set only after all of
|
|
51638
|
+
* the nodes have been created.
|
|
51639
|
+
*/
|
|
51627
51640
|
setAnchors: () => {
|
|
51628
51641
|
for (const source of aliasObjects) {
|
|
51629
51642
|
const ref = sourceObjects.get(source);
|
|
@@ -53376,6 +53389,14 @@ var require_binary$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
53376
53389
|
identify: (value) => value instanceof Uint8Array,
|
|
53377
53390
|
default: false,
|
|
53378
53391
|
tag: "tag:yaml.org,2002:binary",
|
|
53392
|
+
/**
|
|
53393
|
+
* Returns a Buffer in node and an Uint8Array in browsers
|
|
53394
|
+
*
|
|
53395
|
+
* To use the resulting buffer as an image, you'll want to do something like:
|
|
53396
|
+
*
|
|
53397
|
+
* const blob = new Blob([buffer], { type: 'image/jpeg' })
|
|
53398
|
+
* document.querySelector('#photo').src = URL.createObjectURL(blob)
|
|
53399
|
+
*/
|
|
53379
53400
|
resolve(src, onError) {
|
|
53380
53401
|
if (typeof node_buffer$1.Buffer === "function") return node_buffer$1.Buffer.from(src, "base64");
|
|
53381
53402
|
else if (typeof atob === "function") {
|
|
@@ -55061,6 +55082,7 @@ var require_resolve_block_scalar$1 = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
55061
55082
|
onError(token, "UNEXPECTED_TOKEN", token.message);
|
|
55062
55083
|
length += token.source.length;
|
|
55063
55084
|
break;
|
|
55085
|
+
/* istanbul ignore next should not happen */
|
|
55064
55086
|
default: {
|
|
55065
55087
|
onError(token, "UNEXPECTED_TOKEN", `Unexpected token in block scalar header: ${token.type}`);
|
|
55066
55088
|
const ts = token.source;
|
|
@@ -55110,6 +55132,7 @@ var require_resolve_flow_scalar$1 = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
55110
55132
|
_type = Scalar.Scalar.QUOTE_DOUBLE;
|
|
55111
55133
|
value = doubleQuotedValue(source, _onError);
|
|
55112
55134
|
break;
|
|
55135
|
+
/* istanbul ignore next should not happen */
|
|
55113
55136
|
default:
|
|
55114
55137
|
onError(scalar, "UNEXPECTED_TOKEN", `Expected a flow scalar value, but found: ${type}`);
|
|
55115
55138
|
return {
|
|
@@ -55139,6 +55162,7 @@ var require_resolve_flow_scalar$1 = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
55139
55162
|
function plainValue(source, onError) {
|
|
55140
55163
|
let badChar = "";
|
|
55141
55164
|
switch (source[0]) {
|
|
55165
|
+
/* istanbul ignore next should not happen */
|
|
55142
55166
|
case " ":
|
|
55143
55167
|
badChar = "a tab character";
|
|
55144
55168
|
break;
|
|
@@ -56799,6 +56823,7 @@ var require_parser$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
56799
56823
|
return it.sep ?? it.start;
|
|
56800
56824
|
}
|
|
56801
56825
|
case "block-seq": return parent.items[parent.items.length - 1].start;
|
|
56826
|
+
/* istanbul ignore next should not happen */
|
|
56802
56827
|
default: return [];
|
|
56803
56828
|
}
|
|
56804
56829
|
}
|
|
@@ -57051,6 +57076,7 @@ var require_parser$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
57051
57076
|
});
|
|
57052
57077
|
return;
|
|
57053
57078
|
}
|
|
57079
|
+
/* istanbul ignore next should not happen */
|
|
57054
57080
|
default:
|
|
57055
57081
|
yield* this.pop();
|
|
57056
57082
|
yield* this.pop(token);
|
|
@@ -57168,6 +57194,7 @@ var require_parser$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
57168
57194
|
}
|
|
57169
57195
|
yield* this.pop();
|
|
57170
57196
|
break;
|
|
57197
|
+
/* istanbul ignore next should not happen */
|
|
57171
57198
|
default:
|
|
57172
57199
|
yield* this.pop();
|
|
57173
57200
|
yield* this.step();
|
|
@@ -63376,6 +63403,11 @@ var require_anchors = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
63376
63403
|
prevAnchors.add(anchor);
|
|
63377
63404
|
return anchor;
|
|
63378
63405
|
},
|
|
63406
|
+
/**
|
|
63407
|
+
* With circular references, the source node is only resolved after all
|
|
63408
|
+
* of its child nodes are. This is why anchors are set only after all of
|
|
63409
|
+
* the nodes have been created.
|
|
63410
|
+
*/
|
|
63379
63411
|
setAnchors: () => {
|
|
63380
63412
|
for (const source of aliasObjects) {
|
|
63381
63413
|
const ref = sourceObjects.get(source);
|
|
@@ -65128,6 +65160,14 @@ var require_binary = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
65128
65160
|
identify: (value) => value instanceof Uint8Array,
|
|
65129
65161
|
default: false,
|
|
65130
65162
|
tag: "tag:yaml.org,2002:binary",
|
|
65163
|
+
/**
|
|
65164
|
+
* Returns a Buffer in node and an Uint8Array in browsers
|
|
65165
|
+
*
|
|
65166
|
+
* To use the resulting buffer as an image, you'll want to do something like:
|
|
65167
|
+
*
|
|
65168
|
+
* const blob = new Blob([buffer], { type: 'image/jpeg' })
|
|
65169
|
+
* document.querySelector('#photo').src = URL.createObjectURL(blob)
|
|
65170
|
+
*/
|
|
65131
65171
|
resolve(src, onError) {
|
|
65132
65172
|
if (typeof node_buffer.Buffer === "function") return node_buffer.Buffer.from(src, "base64");
|
|
65133
65173
|
else if (typeof atob === "function") {
|
|
@@ -66813,6 +66853,7 @@ var require_resolve_block_scalar = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
66813
66853
|
onError(token, "UNEXPECTED_TOKEN", token.message);
|
|
66814
66854
|
length += token.source.length;
|
|
66815
66855
|
break;
|
|
66856
|
+
/* istanbul ignore next should not happen */
|
|
66816
66857
|
default: {
|
|
66817
66858
|
onError(token, "UNEXPECTED_TOKEN", `Unexpected token in block scalar header: ${token.type}`);
|
|
66818
66859
|
const ts = token.source;
|
|
@@ -66862,6 +66903,7 @@ var require_resolve_flow_scalar = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
66862
66903
|
_type = Scalar.Scalar.QUOTE_DOUBLE;
|
|
66863
66904
|
value = doubleQuotedValue(source, _onError);
|
|
66864
66905
|
break;
|
|
66906
|
+
/* istanbul ignore next should not happen */
|
|
66865
66907
|
default:
|
|
66866
66908
|
onError(scalar, "UNEXPECTED_TOKEN", `Expected a flow scalar value, but found: ${type}`);
|
|
66867
66909
|
return {
|
|
@@ -66891,6 +66933,7 @@ var require_resolve_flow_scalar = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
66891
66933
|
function plainValue(source, onError) {
|
|
66892
66934
|
let badChar = "";
|
|
66893
66935
|
switch (source[0]) {
|
|
66936
|
+
/* istanbul ignore next should not happen */
|
|
66894
66937
|
case " ":
|
|
66895
66938
|
badChar = "a tab character";
|
|
66896
66939
|
break;
|
|
@@ -68551,6 +68594,7 @@ var require_parser = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
68551
68594
|
return it.sep ?? it.start;
|
|
68552
68595
|
}
|
|
68553
68596
|
case "block-seq": return parent.items[parent.items.length - 1].start;
|
|
68597
|
+
/* istanbul ignore next should not happen */
|
|
68554
68598
|
default: return [];
|
|
68555
68599
|
}
|
|
68556
68600
|
}
|
|
@@ -68803,6 +68847,7 @@ var require_parser = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
68803
68847
|
});
|
|
68804
68848
|
return;
|
|
68805
68849
|
}
|
|
68850
|
+
/* istanbul ignore next should not happen */
|
|
68806
68851
|
default:
|
|
68807
68852
|
yield* this.pop();
|
|
68808
68853
|
yield* this.pop(token);
|
|
@@ -68920,6 +68965,7 @@ var require_parser = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
68920
68965
|
}
|
|
68921
68966
|
yield* this.pop();
|
|
68922
68967
|
break;
|
|
68968
|
+
/* istanbul ignore next should not happen */
|
|
68923
68969
|
default:
|
|
68924
68970
|
yield* this.pop();
|
|
68925
68971
|
yield* this.step();
|
|
@@ -79154,7 +79200,9 @@ const hasStandardBrowserEnv = hasBrowserEnv && (!_navigator || [
|
|
|
79154
79200
|
* `typeof window !== 'undefined' && typeof document !== 'undefined'`.
|
|
79155
79201
|
* This leads to a problem when axios post `FormData` in webWorker
|
|
79156
79202
|
*/
|
|
79157
|
-
const hasStandardBrowserWebWorkerEnv =
|
|
79203
|
+
const hasStandardBrowserWebWorkerEnv = (() => {
|
|
79204
|
+
return typeof WorkerGlobalScope !== "undefined" && self instanceof WorkerGlobalScope && typeof self.importScripts === "function";
|
|
79205
|
+
})();
|
|
79158
79206
|
const origin = hasBrowserEnv && window.location.href || "http://localhost";
|
|
79159
79207
|
//#endregion
|
|
79160
79208
|
//#region ../../../common/temp/sdk/node_modules/.pnpm/axios@1.13.5/node_modules/axios/lib/platform/index.js
|
|
@@ -79313,6 +79361,10 @@ const defaults$1 = {
|
|
|
79313
79361
|
}
|
|
79314
79362
|
return data;
|
|
79315
79363
|
}],
|
|
79364
|
+
/**
|
|
79365
|
+
* A timeout in milliseconds to abort a request. If set to 0 (default) a
|
|
79366
|
+
* timeout is not created.
|
|
79367
|
+
*/
|
|
79316
79368
|
timeout: 0,
|
|
79317
79369
|
xsrfCookieName: "XSRF-TOKEN",
|
|
79318
79370
|
xsrfHeaderName: "X-XSRF-TOKEN",
|
|
@@ -82301,19 +82353,21 @@ const factory = (env) => {
|
|
|
82301
82353
|
});
|
|
82302
82354
|
const supportsResponseStream = isResponseSupported && isReadableStreamSupported && test(() => utils_default.isReadableStream(new Response("").body));
|
|
82303
82355
|
const resolvers = { stream: supportsResponseStream && ((res) => res.body) };
|
|
82304
|
-
isFetchSupported &&
|
|
82305
|
-
|
|
82306
|
-
|
|
82307
|
-
|
|
82308
|
-
|
|
82309
|
-
|
|
82310
|
-
|
|
82311
|
-
|
|
82312
|
-
|
|
82313
|
-
|
|
82314
|
-
|
|
82356
|
+
isFetchSupported && (() => {
|
|
82357
|
+
[
|
|
82358
|
+
"text",
|
|
82359
|
+
"arrayBuffer",
|
|
82360
|
+
"blob",
|
|
82361
|
+
"formData",
|
|
82362
|
+
"stream"
|
|
82363
|
+
].forEach((type) => {
|
|
82364
|
+
!resolvers[type] && (resolvers[type] = (res, config) => {
|
|
82365
|
+
let method = res && res[type];
|
|
82366
|
+
if (method) return method.call(res);
|
|
82367
|
+
throw new AxiosError(`Response type '${type}' is not supported`, AxiosError.ERR_NOT_SUPPORT, config);
|
|
82368
|
+
});
|
|
82315
82369
|
});
|
|
82316
|
-
});
|
|
82370
|
+
})();
|
|
82317
82371
|
const getBodyLength = async (body) => {
|
|
82318
82372
|
if (body == null) return 0;
|
|
82319
82373
|
if (utils_default.isBlob(body)) return body.size;
|
|
@@ -82497,7 +82551,15 @@ function getAdapter(adapters, config) {
|
|
|
82497
82551
|
* Exports Axios adapters and utility to resolve an adapter
|
|
82498
82552
|
*/
|
|
82499
82553
|
var adapters_default = {
|
|
82554
|
+
/**
|
|
82555
|
+
* Resolve an adapter from a list of adapter names or functions.
|
|
82556
|
+
* @type {Function}
|
|
82557
|
+
*/
|
|
82500
82558
|
getAdapter,
|
|
82559
|
+
/**
|
|
82560
|
+
* Exposes all known adapters
|
|
82561
|
+
* @type {Object<string, Function|Object>}
|
|
82562
|
+
*/
|
|
82501
82563
|
adapters: knownAdapters
|
|
82502
82564
|
};
|
|
82503
82565
|
//#endregion
|
|
@@ -82572,7 +82634,7 @@ const deprecatedWarnings = {};
|
|
|
82572
82634
|
*/
|
|
82573
82635
|
validators$1.transitional = function transitional(validator, version, message) {
|
|
82574
82636
|
function formatMessage(opt, desc) {
|
|
82575
|
-
return "[Axios
|
|
82637
|
+
return "[Axios v1.13.5] Transitional option '" + opt + "'" + desc + (message ? ". " + message : "");
|
|
82576
82638
|
}
|
|
82577
82639
|
return (value, opt, opts) => {
|
|
82578
82640
|
if (validator === false) throw new AxiosError(formatMessage(opt, " has been removed" + (version ? " in " + version : "")), AxiosError.ERR_DEPRECATED);
|
|
@@ -83131,17 +83193,111 @@ var require_dist$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
83131
83193
|
var import_dist$2 = require_dist$3();
|
|
83132
83194
|
var import_dist$3 = require_dist$2();
|
|
83133
83195
|
var import_dist$4 = require_dist$1();
|
|
83196
|
+
/*!
|
|
83197
|
+
* Axios Cache Interceptor 1.8.3
|
|
83198
|
+
* (c) 2021-present Arthur Fiorette & Contributors
|
|
83199
|
+
* Released under the MIT License.
|
|
83200
|
+
*/
|
|
83134
83201
|
const Header = {
|
|
83202
|
+
/**
|
|
83203
|
+
* ```txt
|
|
83204
|
+
* If-Modified-Since: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
|
|
83205
|
+
* ```
|
|
83206
|
+
*
|
|
83207
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Modified-Since
|
|
83208
|
+
*/
|
|
83135
83209
|
IfModifiedSince: "if-modified-since",
|
|
83210
|
+
/**
|
|
83211
|
+
* ```txt
|
|
83212
|
+
* Last-Modified: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
|
|
83213
|
+
* ```
|
|
83214
|
+
*
|
|
83215
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Last-Modified
|
|
83216
|
+
*/
|
|
83136
83217
|
LastModified: "last-modified",
|
|
83218
|
+
/**
|
|
83219
|
+
* ```txt
|
|
83220
|
+
* If-None-Match: "<etag_value>"
|
|
83221
|
+
* If-None-Match: "<etag_value>", "<etag_value>", …
|
|
83222
|
+
* If-None-Match: *
|
|
83223
|
+
* ```
|
|
83224
|
+
*
|
|
83225
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-None-Match
|
|
83226
|
+
*/
|
|
83137
83227
|
IfNoneMatch: "if-none-match",
|
|
83228
|
+
/**
|
|
83229
|
+
* ```txt
|
|
83230
|
+
* Cache-Control: max-age=604800
|
|
83231
|
+
* ```
|
|
83232
|
+
*
|
|
83233
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
|
|
83234
|
+
*/
|
|
83138
83235
|
CacheControl: "cache-control",
|
|
83236
|
+
/**
|
|
83237
|
+
* ```txt
|
|
83238
|
+
* Pragma: no - cache;
|
|
83239
|
+
* ```
|
|
83240
|
+
*
|
|
83241
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Pragma
|
|
83242
|
+
*/
|
|
83139
83243
|
Pragma: "pragma",
|
|
83244
|
+
/**
|
|
83245
|
+
* ```txt
|
|
83246
|
+
* ETag: W / '<etag_value>';
|
|
83247
|
+
* ETag: '<etag_value>';
|
|
83248
|
+
* ```
|
|
83249
|
+
*
|
|
83250
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag
|
|
83251
|
+
*/
|
|
83140
83252
|
ETag: "etag",
|
|
83253
|
+
/**
|
|
83254
|
+
* ```txt
|
|
83255
|
+
* Expires: <http-date>
|
|
83256
|
+
* ```
|
|
83257
|
+
*
|
|
83258
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expires
|
|
83259
|
+
*/
|
|
83141
83260
|
Expires: "expires",
|
|
83261
|
+
/**
|
|
83262
|
+
* ```txt
|
|
83263
|
+
* Age: <delta-seconds>
|
|
83264
|
+
* ```
|
|
83265
|
+
*
|
|
83266
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Age
|
|
83267
|
+
*/
|
|
83142
83268
|
Age: "age",
|
|
83269
|
+
/**
|
|
83270
|
+
* Used internally as metadata to mark the cache item as revalidatable and enabling
|
|
83271
|
+
* stale cache state Contains a string of ASCII characters that can be used as ETag for
|
|
83272
|
+
* `If-Match` header Provided by user using `cache.etag` value.
|
|
83273
|
+
*
|
|
83274
|
+
* ```txt
|
|
83275
|
+
* X-Axios-Cache-Etag: "<etag_value>"
|
|
83276
|
+
* ```
|
|
83277
|
+
*/
|
|
83143
83278
|
XAxiosCacheEtag: "x-axios-cache-etag",
|
|
83279
|
+
/**
|
|
83280
|
+
* Used internally as metadata to mark the cache item as revalidatable and enabling
|
|
83281
|
+
* stale cache state may contain `'use-cache-timestamp'` if `cache.modifiedSince` is
|
|
83282
|
+
* `true`, otherwise will contain a date from `cache.modifiedSince`. If a date is
|
|
83283
|
+
* provided, it can be used for `If-Modified-Since` header, otherwise the cache
|
|
83284
|
+
* timestamp can be used for `If-Modified-Since` header.
|
|
83285
|
+
*
|
|
83286
|
+
* ```txt
|
|
83287
|
+
* X-Axios-Cache-Last-Modified: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
|
|
83288
|
+
* X-Axios-Cache-Last-Modified: use-cache-timestamp
|
|
83289
|
+
* ```
|
|
83290
|
+
*/
|
|
83144
83291
|
XAxiosCacheLastModified: "x-axios-cache-last-modified",
|
|
83292
|
+
/**
|
|
83293
|
+
* Used internally as metadata to mark the cache item able to be used if the server
|
|
83294
|
+
* returns an error. The stale-if-error response directive indicates that the cache can
|
|
83295
|
+
* reuse a stale response when any error occurs.
|
|
83296
|
+
*
|
|
83297
|
+
* ```txt
|
|
83298
|
+
* XAxiosCacheStaleIfError: <seconds>
|
|
83299
|
+
* ```
|
|
83300
|
+
*/
|
|
83145
83301
|
XAxiosCacheStaleIfError: "x-axios-cache-stale-if-error"
|
|
83146
83302
|
};
|
|
83147
83303
|
const defaultHeaderInterpreter = (headers, location) => {
|
|
@@ -85330,7 +85486,8 @@ function stackSet$1(key, value) {
|
|
|
85330
85486
|
* @param {Array} [entries] The key-value pairs to cache.
|
|
85331
85487
|
*/
|
|
85332
85488
|
function Stack$2(entries) {
|
|
85333
|
-
|
|
85489
|
+
var data = this.__data__ = new ListCache$1(entries);
|
|
85490
|
+
this.size = data.size;
|
|
85334
85491
|
}
|
|
85335
85492
|
Stack$2.prototype.clear = stackClear$1;
|
|
85336
85493
|
Stack$2.prototype["delete"] = stackDelete$1;
|
|
@@ -86160,10 +86317,6 @@ var merge = createAssigner(function(object, source, srcIndex) {
|
|
|
86160
86317
|
baseMerge(object, source, srcIndex);
|
|
86161
86318
|
});
|
|
86162
86319
|
//#endregion
|
|
86163
|
-
//#region ../../../sdk/libs/api-client-tiger/esm/__version.js
|
|
86164
|
-
const LIB_VERSION = "11.40.0-alpha.2";
|
|
86165
|
-
const LIB_NAME = "@gooddata/api-client-tiger";
|
|
86166
|
-
//#endregion
|
|
86167
86320
|
//#region ../../../sdk/libs/api-client-tiger/esm/axios.js
|
|
86168
86321
|
/**
|
|
86169
86322
|
* Default config from axios sets request headers:
|
|
@@ -86183,8 +86336,8 @@ const _CONFIG = {
|
|
|
86183
86336
|
headers: {
|
|
86184
86337
|
common: {
|
|
86185
86338
|
"X-Requested-With": "XMLHttpRequest",
|
|
86186
|
-
"X-GDC-JS-PACKAGE":
|
|
86187
|
-
"X-GDC-JS-PACKAGE-VERSION":
|
|
86339
|
+
"X-GDC-JS-PACKAGE": "@gooddata/api-client-tiger",
|
|
86340
|
+
"X-GDC-JS-PACKAGE-VERSION": "11.40.0-alpha.4"
|
|
86188
86341
|
},
|
|
86189
86342
|
post: { "Content-Type": "application/json;charset=utf8" },
|
|
86190
86343
|
put: { "Content-Type": "application/json;charset=utf8" }
|
|
@@ -86384,6 +86537,40 @@ async function ActionsApiAxiosParamCreator_AllPlatformUsage(options = {}, config
|
|
|
86384
86537
|
}
|
|
86385
86538
|
/**
|
|
86386
86539
|
*
|
|
86540
|
+
* @summary Get Attribute Permissions
|
|
86541
|
+
* @param {string} workspaceId
|
|
86542
|
+
* @param {string} attributeId
|
|
86543
|
+
* @param {*} [options] Override http request option.
|
|
86544
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
86545
|
+
* @throws {RequiredError}
|
|
86546
|
+
*/
|
|
86547
|
+
async function ActionsApiAxiosParamCreator_AttributePermissions(workspaceId, attributeId, options = {}, configuration) {
|
|
86548
|
+
assertParamExists$6("attributePermissions", "workspaceId", workspaceId);
|
|
86549
|
+
assertParamExists$6("attributePermissions", "attributeId", attributeId);
|
|
86550
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/permissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{attributeId}`, encodeURIComponent(String(attributeId)));
|
|
86551
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86552
|
+
let baseOptions;
|
|
86553
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
86554
|
+
const localVarRequestOptions = {
|
|
86555
|
+
method: "GET",
|
|
86556
|
+
...baseOptions,
|
|
86557
|
+
...options
|
|
86558
|
+
};
|
|
86559
|
+
const localVarHeaderParameter = {};
|
|
86560
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
86561
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
86562
|
+
localVarRequestOptions.headers = {
|
|
86563
|
+
...localVarHeaderParameter,
|
|
86564
|
+
...headersFromBaseOptions,
|
|
86565
|
+
...options.headers
|
|
86566
|
+
};
|
|
86567
|
+
return {
|
|
86568
|
+
url: toPathString$6(localVarUrlObj),
|
|
86569
|
+
options: localVarRequestOptions
|
|
86570
|
+
};
|
|
86571
|
+
}
|
|
86572
|
+
/**
|
|
86573
|
+
*
|
|
86387
86574
|
* @summary Get Available Assignees
|
|
86388
86575
|
* @param {string} workspaceId
|
|
86389
86576
|
* @param {string} dashboardId
|
|
@@ -86600,6 +86787,40 @@ async function ActionsApiAxiosParamCreator_DeleteWorkspaceAutomations(workspaceI
|
|
|
86600
86787
|
};
|
|
86601
86788
|
}
|
|
86602
86789
|
/**
|
|
86790
|
+
*
|
|
86791
|
+
* @summary Get Fact Permissions
|
|
86792
|
+
* @param {string} workspaceId
|
|
86793
|
+
* @param {string} factId
|
|
86794
|
+
* @param {*} [options] Override http request option.
|
|
86795
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
86796
|
+
* @throws {RequiredError}
|
|
86797
|
+
*/
|
|
86798
|
+
async function ActionsApiAxiosParamCreator_FactPermissions(workspaceId, factId, options = {}, configuration) {
|
|
86799
|
+
assertParamExists$6("factPermissions", "workspaceId", workspaceId);
|
|
86800
|
+
assertParamExists$6("factPermissions", "factId", factId);
|
|
86801
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/facts/{factId}/permissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{factId}`, encodeURIComponent(String(factId)));
|
|
86802
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86803
|
+
let baseOptions;
|
|
86804
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
86805
|
+
const localVarRequestOptions = {
|
|
86806
|
+
method: "GET",
|
|
86807
|
+
...baseOptions,
|
|
86808
|
+
...options
|
|
86809
|
+
};
|
|
86810
|
+
const localVarHeaderParameter = {};
|
|
86811
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
86812
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
86813
|
+
localVarRequestOptions.headers = {
|
|
86814
|
+
...localVarHeaderParameter,
|
|
86815
|
+
...headersFromBaseOptions,
|
|
86816
|
+
...options.headers
|
|
86817
|
+
};
|
|
86818
|
+
return {
|
|
86819
|
+
url: toPathString$6(localVarUrlObj),
|
|
86820
|
+
options: localVarRequestOptions
|
|
86821
|
+
};
|
|
86822
|
+
}
|
|
86823
|
+
/**
|
|
86603
86824
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
86604
86825
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
86605
86826
|
* @param {string} dataSourceId
|
|
@@ -86805,6 +87026,40 @@ async function ActionsApiAxiosParamCreator_InheritedEntityPrefixes(workspaceId,
|
|
|
86805
87026
|
}
|
|
86806
87027
|
/**
|
|
86807
87028
|
*
|
|
87029
|
+
* @summary Get Label Permissions
|
|
87030
|
+
* @param {string} workspaceId
|
|
87031
|
+
* @param {string} labelId
|
|
87032
|
+
* @param {*} [options] Override http request option.
|
|
87033
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87034
|
+
* @throws {RequiredError}
|
|
87035
|
+
*/
|
|
87036
|
+
async function ActionsApiAxiosParamCreator_LabelPermissions(workspaceId, labelId, options = {}, configuration) {
|
|
87037
|
+
assertParamExists$6("labelPermissions", "workspaceId", workspaceId);
|
|
87038
|
+
assertParamExists$6("labelPermissions", "labelId", labelId);
|
|
87039
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/labels/{labelId}/permissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{labelId}`, encodeURIComponent(String(labelId)));
|
|
87040
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87041
|
+
let baseOptions;
|
|
87042
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87043
|
+
const localVarRequestOptions = {
|
|
87044
|
+
method: "GET",
|
|
87045
|
+
...baseOptions,
|
|
87046
|
+
...options
|
|
87047
|
+
};
|
|
87048
|
+
const localVarHeaderParameter = {};
|
|
87049
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
87050
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87051
|
+
localVarRequestOptions.headers = {
|
|
87052
|
+
...localVarHeaderParameter,
|
|
87053
|
+
...headersFromBaseOptions,
|
|
87054
|
+
...options.headers
|
|
87055
|
+
};
|
|
87056
|
+
return {
|
|
87057
|
+
url: toPathString$6(localVarUrlObj),
|
|
87058
|
+
options: localVarRequestOptions
|
|
87059
|
+
};
|
|
87060
|
+
}
|
|
87061
|
+
/**
|
|
87062
|
+
*
|
|
86808
87063
|
* @param {string} workspaceId
|
|
86809
87064
|
* @param {number} [page] Zero-based page index (0..N)
|
|
86810
87065
|
* @param {number} [size] The size of the page to be returned.
|
|
@@ -86881,6 +87136,46 @@ async function ActionsApiAxiosParamCreator_ListWorkspaceUsers(workspaceId, page,
|
|
|
86881
87136
|
}
|
|
86882
87137
|
/**
|
|
86883
87138
|
*
|
|
87139
|
+
* @summary Manage Permissions for an Attribute
|
|
87140
|
+
* @param {string} workspaceId
|
|
87141
|
+
* @param {string} attributeId
|
|
87142
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
87143
|
+
* @param {*} [options] Override http request option.
|
|
87144
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87145
|
+
* @throws {RequiredError}
|
|
87146
|
+
*/
|
|
87147
|
+
async function ActionsApiAxiosParamCreator_ManageAttributePermissions(workspaceId, attributeId, manageLabelPermissionsRequestInner, options = {}, configuration) {
|
|
87148
|
+
assertParamExists$6("manageAttributePermissions", "workspaceId", workspaceId);
|
|
87149
|
+
assertParamExists$6("manageAttributePermissions", "attributeId", attributeId);
|
|
87150
|
+
assertParamExists$6("manageAttributePermissions", "manageLabelPermissionsRequestInner", manageLabelPermissionsRequestInner);
|
|
87151
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{attributeId}`, encodeURIComponent(String(attributeId)));
|
|
87152
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87153
|
+
let baseOptions;
|
|
87154
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87155
|
+
const localVarRequestOptions = {
|
|
87156
|
+
method: "POST",
|
|
87157
|
+
...baseOptions,
|
|
87158
|
+
...options
|
|
87159
|
+
};
|
|
87160
|
+
const localVarHeaderParameter = {};
|
|
87161
|
+
const localVarQueryParameter = {};
|
|
87162
|
+
const consumes = ["application/json"];
|
|
87163
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87164
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87165
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87166
|
+
localVarRequestOptions.headers = {
|
|
87167
|
+
...localVarHeaderParameter,
|
|
87168
|
+
...headersFromBaseOptions,
|
|
87169
|
+
...options.headers
|
|
87170
|
+
};
|
|
87171
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
87172
|
+
return {
|
|
87173
|
+
url: toPathString$6(localVarUrlObj),
|
|
87174
|
+
options: localVarRequestOptions
|
|
87175
|
+
};
|
|
87176
|
+
}
|
|
87177
|
+
/**
|
|
87178
|
+
*
|
|
86884
87179
|
* @summary Manage Permissions for a Dashboard
|
|
86885
87180
|
* @param {string} workspaceId
|
|
86886
87181
|
* @param {string} dashboardId
|
|
@@ -86958,6 +87253,86 @@ async function ActionsApiAxiosParamCreator_ManageDataSourcePermissions(dataSourc
|
|
|
86958
87253
|
};
|
|
86959
87254
|
}
|
|
86960
87255
|
/**
|
|
87256
|
+
*
|
|
87257
|
+
* @summary Manage Permissions for a Fact
|
|
87258
|
+
* @param {string} workspaceId
|
|
87259
|
+
* @param {string} factId
|
|
87260
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
87261
|
+
* @param {*} [options] Override http request option.
|
|
87262
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87263
|
+
* @throws {RequiredError}
|
|
87264
|
+
*/
|
|
87265
|
+
async function ActionsApiAxiosParamCreator_ManageFactPermissions(workspaceId, factId, manageLabelPermissionsRequestInner, options = {}, configuration) {
|
|
87266
|
+
assertParamExists$6("manageFactPermissions", "workspaceId", workspaceId);
|
|
87267
|
+
assertParamExists$6("manageFactPermissions", "factId", factId);
|
|
87268
|
+
assertParamExists$6("manageFactPermissions", "manageLabelPermissionsRequestInner", manageLabelPermissionsRequestInner);
|
|
87269
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/facts/{factId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{factId}`, encodeURIComponent(String(factId)));
|
|
87270
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87271
|
+
let baseOptions;
|
|
87272
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87273
|
+
const localVarRequestOptions = {
|
|
87274
|
+
method: "POST",
|
|
87275
|
+
...baseOptions,
|
|
87276
|
+
...options
|
|
87277
|
+
};
|
|
87278
|
+
const localVarHeaderParameter = {};
|
|
87279
|
+
const localVarQueryParameter = {};
|
|
87280
|
+
const consumes = ["application/json"];
|
|
87281
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87282
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87283
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87284
|
+
localVarRequestOptions.headers = {
|
|
87285
|
+
...localVarHeaderParameter,
|
|
87286
|
+
...headersFromBaseOptions,
|
|
87287
|
+
...options.headers
|
|
87288
|
+
};
|
|
87289
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
87290
|
+
return {
|
|
87291
|
+
url: toPathString$6(localVarUrlObj),
|
|
87292
|
+
options: localVarRequestOptions
|
|
87293
|
+
};
|
|
87294
|
+
}
|
|
87295
|
+
/**
|
|
87296
|
+
*
|
|
87297
|
+
* @summary Manage Permissions for a Label
|
|
87298
|
+
* @param {string} workspaceId
|
|
87299
|
+
* @param {string} labelId
|
|
87300
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
87301
|
+
* @param {*} [options] Override http request option.
|
|
87302
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87303
|
+
* @throws {RequiredError}
|
|
87304
|
+
*/
|
|
87305
|
+
async function ActionsApiAxiosParamCreator_ManageLabelPermissions(workspaceId, labelId, manageLabelPermissionsRequestInner, options = {}, configuration) {
|
|
87306
|
+
assertParamExists$6("manageLabelPermissions", "workspaceId", workspaceId);
|
|
87307
|
+
assertParamExists$6("manageLabelPermissions", "labelId", labelId);
|
|
87308
|
+
assertParamExists$6("manageLabelPermissions", "manageLabelPermissionsRequestInner", manageLabelPermissionsRequestInner);
|
|
87309
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/labels/{labelId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{labelId}`, encodeURIComponent(String(labelId)));
|
|
87310
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87311
|
+
let baseOptions;
|
|
87312
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87313
|
+
const localVarRequestOptions = {
|
|
87314
|
+
method: "POST",
|
|
87315
|
+
...baseOptions,
|
|
87316
|
+
...options
|
|
87317
|
+
};
|
|
87318
|
+
const localVarHeaderParameter = {};
|
|
87319
|
+
const localVarQueryParameter = {};
|
|
87320
|
+
const consumes = ["application/json"];
|
|
87321
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87322
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87323
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87324
|
+
localVarRequestOptions.headers = {
|
|
87325
|
+
...localVarHeaderParameter,
|
|
87326
|
+
...headersFromBaseOptions,
|
|
87327
|
+
...options.headers
|
|
87328
|
+
};
|
|
87329
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
87330
|
+
return {
|
|
87331
|
+
url: toPathString$6(localVarUrlObj),
|
|
87332
|
+
options: localVarRequestOptions
|
|
87333
|
+
};
|
|
87334
|
+
}
|
|
87335
|
+
/**
|
|
86961
87336
|
* Manage Permissions for a Organization
|
|
86962
87337
|
* @summary Manage Permissions for a Organization
|
|
86963
87338
|
* @param {Array<OrganizationPermissionAssignment>} organizationPermissionAssignment
|
|
@@ -87958,6 +88333,19 @@ async function ActionsApi_AllPlatformUsage(axios, basePath, options, configurati
|
|
|
87958
88333
|
}
|
|
87959
88334
|
/**
|
|
87960
88335
|
*
|
|
88336
|
+
* @summary Get Attribute Permissions
|
|
88337
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88338
|
+
* @param {string} basePath Base path.
|
|
88339
|
+
* @param {ActionsApiAttributePermissionsRequest} requestParameters Request parameters.
|
|
88340
|
+
* @param {*} [options] Override http request option.
|
|
88341
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88342
|
+
* @throws {RequiredError}
|
|
88343
|
+
*/
|
|
88344
|
+
async function ActionsApi_AttributePermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88345
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_AttributePermissions(requestParameters.workspaceId, requestParameters.attributeId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88346
|
+
}
|
|
88347
|
+
/**
|
|
88348
|
+
*
|
|
87961
88349
|
* @summary Get Available Assignees
|
|
87962
88350
|
* @param {AxiosInstance} axios Axios instance.
|
|
87963
88351
|
* @param {string} basePath Base path.
|
|
@@ -88035,6 +88423,19 @@ async function ActionsApi_DeleteWorkspaceAutomations(axios, basePath, requestPar
|
|
|
88035
88423
|
return createRequestFunction$6(await ActionsApiAxiosParamCreator_DeleteWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88036
88424
|
}
|
|
88037
88425
|
/**
|
|
88426
|
+
*
|
|
88427
|
+
* @summary Get Fact Permissions
|
|
88428
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88429
|
+
* @param {string} basePath Base path.
|
|
88430
|
+
* @param {ActionsApiFactPermissionsRequest} requestParameters Request parameters.
|
|
88431
|
+
* @param {*} [options] Override http request option.
|
|
88432
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88433
|
+
* @throws {RequiredError}
|
|
88434
|
+
*/
|
|
88435
|
+
async function ActionsApi_FactPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88436
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_FactPermissions(requestParameters.workspaceId, requestParameters.factId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88437
|
+
}
|
|
88438
|
+
/**
|
|
88038
88439
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
88039
88440
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
88040
88441
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -88114,6 +88515,19 @@ async function ActionsApi_InheritedEntityPrefixes(axios, basePath, requestParame
|
|
|
88114
88515
|
}
|
|
88115
88516
|
/**
|
|
88116
88517
|
*
|
|
88518
|
+
* @summary Get Label Permissions
|
|
88519
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88520
|
+
* @param {string} basePath Base path.
|
|
88521
|
+
* @param {ActionsApiLabelPermissionsRequest} requestParameters Request parameters.
|
|
88522
|
+
* @param {*} [options] Override http request option.
|
|
88523
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88524
|
+
* @throws {RequiredError}
|
|
88525
|
+
*/
|
|
88526
|
+
async function ActionsApi_LabelPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88527
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_LabelPermissions(requestParameters.workspaceId, requestParameters.labelId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88528
|
+
}
|
|
88529
|
+
/**
|
|
88530
|
+
*
|
|
88117
88531
|
* @param {AxiosInstance} axios Axios instance.
|
|
88118
88532
|
* @param {string} basePath Base path.
|
|
88119
88533
|
* @param {ActionsApiListWorkspaceUserGroupsRequest} requestParameters Request parameters.
|
|
@@ -88138,6 +88552,19 @@ async function ActionsApi_ListWorkspaceUsers(axios, basePath, requestParameters,
|
|
|
88138
88552
|
}
|
|
88139
88553
|
/**
|
|
88140
88554
|
*
|
|
88555
|
+
* @summary Manage Permissions for an Attribute
|
|
88556
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88557
|
+
* @param {string} basePath Base path.
|
|
88558
|
+
* @param {ActionsApiManageAttributePermissionsRequest} requestParameters Request parameters.
|
|
88559
|
+
* @param {*} [options] Override http request option.
|
|
88560
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88561
|
+
* @throws {RequiredError}
|
|
88562
|
+
*/
|
|
88563
|
+
async function ActionsApi_ManageAttributePermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88564
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageAttributePermissions(requestParameters.workspaceId, requestParameters.attributeId, requestParameters.manageLabelPermissionsRequestInner, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88565
|
+
}
|
|
88566
|
+
/**
|
|
88567
|
+
*
|
|
88141
88568
|
* @summary Manage Permissions for a Dashboard
|
|
88142
88569
|
* @param {AxiosInstance} axios Axios instance.
|
|
88143
88570
|
* @param {string} basePath Base path.
|
|
@@ -88163,6 +88590,32 @@ async function ActionsApi_ManageDataSourcePermissions(axios, basePath, requestPa
|
|
|
88163
88590
|
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageDataSourcePermissions(requestParameters.dataSourceId, requestParameters.dataSourcePermissionAssignment, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88164
88591
|
}
|
|
88165
88592
|
/**
|
|
88593
|
+
*
|
|
88594
|
+
* @summary Manage Permissions for a Fact
|
|
88595
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88596
|
+
* @param {string} basePath Base path.
|
|
88597
|
+
* @param {ActionsApiManageFactPermissionsRequest} requestParameters Request parameters.
|
|
88598
|
+
* @param {*} [options] Override http request option.
|
|
88599
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88600
|
+
* @throws {RequiredError}
|
|
88601
|
+
*/
|
|
88602
|
+
async function ActionsApi_ManageFactPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88603
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageFactPermissions(requestParameters.workspaceId, requestParameters.factId, requestParameters.manageLabelPermissionsRequestInner, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88604
|
+
}
|
|
88605
|
+
/**
|
|
88606
|
+
*
|
|
88607
|
+
* @summary Manage Permissions for a Label
|
|
88608
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88609
|
+
* @param {string} basePath Base path.
|
|
88610
|
+
* @param {ActionsApiManageLabelPermissionsRequest} requestParameters Request parameters.
|
|
88611
|
+
* @param {*} [options] Override http request option.
|
|
88612
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88613
|
+
* @throws {RequiredError}
|
|
88614
|
+
*/
|
|
88615
|
+
async function ActionsApi_ManageLabelPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88616
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageLabelPermissions(requestParameters.workspaceId, requestParameters.labelId, requestParameters.manageLabelPermissionsRequestInner, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88617
|
+
}
|
|
88618
|
+
/**
|
|
88166
88619
|
* Manage Permissions for a Organization
|
|
88167
88620
|
* @summary Manage Permissions for a Organization
|
|
88168
88621
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -88553,6 +89006,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88553
89006
|
}
|
|
88554
89007
|
/**
|
|
88555
89008
|
*
|
|
89009
|
+
* @summary Get Attribute Permissions
|
|
89010
|
+
* @param {ActionsApiAttributePermissionsRequest} requestParameters Request parameters.
|
|
89011
|
+
* @param {*} [options] Override http request option.
|
|
89012
|
+
* @throws {RequiredError}
|
|
89013
|
+
* @memberof ActionsApi
|
|
89014
|
+
*/
|
|
89015
|
+
attributePermissions(requestParameters, options) {
|
|
89016
|
+
return ActionsApi_AttributePermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89017
|
+
}
|
|
89018
|
+
/**
|
|
89019
|
+
*
|
|
88556
89020
|
* @summary Get Available Assignees
|
|
88557
89021
|
* @param {ActionsApiAvailableAssigneesRequest} requestParameters Request parameters.
|
|
88558
89022
|
* @param {*} [options] Override http request option.
|
|
@@ -88618,6 +89082,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88618
89082
|
return ActionsApi_DeleteWorkspaceAutomations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
88619
89083
|
}
|
|
88620
89084
|
/**
|
|
89085
|
+
*
|
|
89086
|
+
* @summary Get Fact Permissions
|
|
89087
|
+
* @param {ActionsApiFactPermissionsRequest} requestParameters Request parameters.
|
|
89088
|
+
* @param {*} [options] Override http request option.
|
|
89089
|
+
* @throws {RequiredError}
|
|
89090
|
+
* @memberof ActionsApi
|
|
89091
|
+
*/
|
|
89092
|
+
factPermissions(requestParameters, options) {
|
|
89093
|
+
return ActionsApi_FactPermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89094
|
+
}
|
|
89095
|
+
/**
|
|
88621
89096
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
88622
89097
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
88623
89098
|
* @param {ActionsApiGenerateLogicalModelRequest} requestParameters Request parameters.
|
|
@@ -88685,6 +89160,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88685
89160
|
}
|
|
88686
89161
|
/**
|
|
88687
89162
|
*
|
|
89163
|
+
* @summary Get Label Permissions
|
|
89164
|
+
* @param {ActionsApiLabelPermissionsRequest} requestParameters Request parameters.
|
|
89165
|
+
* @param {*} [options] Override http request option.
|
|
89166
|
+
* @throws {RequiredError}
|
|
89167
|
+
* @memberof ActionsApi
|
|
89168
|
+
*/
|
|
89169
|
+
labelPermissions(requestParameters, options) {
|
|
89170
|
+
return ActionsApi_LabelPermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89171
|
+
}
|
|
89172
|
+
/**
|
|
89173
|
+
*
|
|
88688
89174
|
* @param {ActionsApiListWorkspaceUserGroupsRequest} requestParameters Request parameters.
|
|
88689
89175
|
* @param {*} [options] Override http request option.
|
|
88690
89176
|
* @throws {RequiredError}
|
|
@@ -88705,6 +89191,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88705
89191
|
}
|
|
88706
89192
|
/**
|
|
88707
89193
|
*
|
|
89194
|
+
* @summary Manage Permissions for an Attribute
|
|
89195
|
+
* @param {ActionsApiManageAttributePermissionsRequest} requestParameters Request parameters.
|
|
89196
|
+
* @param {*} [options] Override http request option.
|
|
89197
|
+
* @throws {RequiredError}
|
|
89198
|
+
* @memberof ActionsApi
|
|
89199
|
+
*/
|
|
89200
|
+
manageAttributePermissions(requestParameters, options) {
|
|
89201
|
+
return ActionsApi_ManageAttributePermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89202
|
+
}
|
|
89203
|
+
/**
|
|
89204
|
+
*
|
|
88708
89205
|
* @summary Manage Permissions for a Dashboard
|
|
88709
89206
|
* @param {ActionsApiManageDashboardPermissionsRequest} requestParameters Request parameters.
|
|
88710
89207
|
* @param {*} [options] Override http request option.
|
|
@@ -88726,6 +89223,28 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88726
89223
|
return ActionsApi_ManageDataSourcePermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
88727
89224
|
}
|
|
88728
89225
|
/**
|
|
89226
|
+
*
|
|
89227
|
+
* @summary Manage Permissions for a Fact
|
|
89228
|
+
* @param {ActionsApiManageFactPermissionsRequest} requestParameters Request parameters.
|
|
89229
|
+
* @param {*} [options] Override http request option.
|
|
89230
|
+
* @throws {RequiredError}
|
|
89231
|
+
* @memberof ActionsApi
|
|
89232
|
+
*/
|
|
89233
|
+
manageFactPermissions(requestParameters, options) {
|
|
89234
|
+
return ActionsApi_ManageFactPermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89235
|
+
}
|
|
89236
|
+
/**
|
|
89237
|
+
*
|
|
89238
|
+
* @summary Manage Permissions for a Label
|
|
89239
|
+
* @param {ActionsApiManageLabelPermissionsRequest} requestParameters Request parameters.
|
|
89240
|
+
* @param {*} [options] Override http request option.
|
|
89241
|
+
* @throws {RequiredError}
|
|
89242
|
+
* @memberof ActionsApi
|
|
89243
|
+
*/
|
|
89244
|
+
manageLabelPermissions(requestParameters, options) {
|
|
89245
|
+
return ActionsApi_ManageLabelPermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89246
|
+
}
|
|
89247
|
+
/**
|
|
88729
89248
|
* Manage Permissions for a Organization
|
|
88730
89249
|
* @summary Manage Permissions for a Organization
|
|
88731
89250
|
* @param {ActionsApiManageOrganizationPermissionsRequest} requestParameters Request parameters.
|
|
@@ -89032,6 +89551,35 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
89032
89551
|
}
|
|
89033
89552
|
};
|
|
89034
89553
|
/**
|
|
89554
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
89555
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
89556
|
+
* @param {*} [options] Override http request option.
|
|
89557
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
89558
|
+
* @throws {RequiredError}
|
|
89559
|
+
*/
|
|
89560
|
+
async function EntitiesApiAxiosParamCreator_CreateEntity(options = {}, configuration) {
|
|
89561
|
+
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
89562
|
+
let baseOptions;
|
|
89563
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
89564
|
+
const localVarRequestOptions = {
|
|
89565
|
+
method: "POST",
|
|
89566
|
+
...baseOptions,
|
|
89567
|
+
...options
|
|
89568
|
+
};
|
|
89569
|
+
const localVarHeaderParameter = {};
|
|
89570
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
89571
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
89572
|
+
localVarRequestOptions.headers = {
|
|
89573
|
+
...localVarHeaderParameter,
|
|
89574
|
+
...headersFromBaseOptions,
|
|
89575
|
+
...options.headers
|
|
89576
|
+
};
|
|
89577
|
+
return {
|
|
89578
|
+
url: toPathString$6(localVarUrlObj),
|
|
89579
|
+
options: localVarRequestOptions
|
|
89580
|
+
};
|
|
89581
|
+
}
|
|
89582
|
+
/**
|
|
89035
89583
|
* AI Agent - behavior configuration for AI assistants
|
|
89036
89584
|
* @summary Post Agent entities
|
|
89037
89585
|
* @param {JsonApiAgentInDocument} jsonApiAgentInDocument
|
|
@@ -89803,41 +90351,6 @@ async function EntitiesApiAxiosParamCreator_CreateEntityKnowledgeRecommendations
|
|
|
89803
90351
|
};
|
|
89804
90352
|
}
|
|
89805
90353
|
/**
|
|
89806
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
89807
|
-
* @summary Post LLM endpoint entities
|
|
89808
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
89809
|
-
* @param {*} [options] Override http request option.
|
|
89810
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
89811
|
-
* @throws {RequiredError}
|
|
89812
|
-
*/
|
|
89813
|
-
async function EntitiesApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument, options = {}, configuration) {
|
|
89814
|
-
assertParamExists$6("createEntityLlmEndpoints", "jsonApiLlmEndpointInDocument", jsonApiLlmEndpointInDocument);
|
|
89815
|
-
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
89816
|
-
let baseOptions;
|
|
89817
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
89818
|
-
const localVarRequestOptions = {
|
|
89819
|
-
method: "POST",
|
|
89820
|
-
...baseOptions,
|
|
89821
|
-
...options
|
|
89822
|
-
};
|
|
89823
|
-
const localVarHeaderParameter = {};
|
|
89824
|
-
const localVarQueryParameter = {};
|
|
89825
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
89826
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
89827
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
89828
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
89829
|
-
localVarRequestOptions.headers = {
|
|
89830
|
-
...localVarHeaderParameter,
|
|
89831
|
-
...headersFromBaseOptions,
|
|
89832
|
-
...options.headers
|
|
89833
|
-
};
|
|
89834
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointInDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointInDocument !== void 0 ? jsonApiLlmEndpointInDocument : {}) : jsonApiLlmEndpointInDocument || "";
|
|
89835
|
-
return {
|
|
89836
|
-
url: toPathString$6(localVarUrlObj),
|
|
89837
|
-
options: localVarRequestOptions
|
|
89838
|
-
};
|
|
89839
|
-
}
|
|
89840
|
-
/**
|
|
89841
90354
|
* LLM Provider - connection configuration for LLM services
|
|
89842
90355
|
* @summary Post LLM Provider entities
|
|
89843
90356
|
* @param {JsonApiLlmProviderInDocument} jsonApiLlmProviderInDocument
|
|
@@ -90463,6 +90976,38 @@ async function EntitiesApiAxiosParamCreator_CreateEntityWorkspaces(jsonApiWorksp
|
|
|
90463
90976
|
};
|
|
90464
90977
|
}
|
|
90465
90978
|
/**
|
|
90979
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
90980
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
90981
|
+
* @param {string} id
|
|
90982
|
+
* @param {*} [options] Override http request option.
|
|
90983
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
90984
|
+
* @throws {RequiredError}
|
|
90985
|
+
*/
|
|
90986
|
+
async function EntitiesApiAxiosParamCreator_DeleteEntity(id, options = {}, configuration) {
|
|
90987
|
+
assertParamExists$6("deleteEntity", "id", id);
|
|
90988
|
+
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
90989
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
90990
|
+
let baseOptions;
|
|
90991
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
90992
|
+
const localVarRequestOptions = {
|
|
90993
|
+
method: "DELETE",
|
|
90994
|
+
...baseOptions,
|
|
90995
|
+
...options
|
|
90996
|
+
};
|
|
90997
|
+
const localVarHeaderParameter = {};
|
|
90998
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
90999
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
91000
|
+
localVarRequestOptions.headers = {
|
|
91001
|
+
...localVarHeaderParameter,
|
|
91002
|
+
...headersFromBaseOptions,
|
|
91003
|
+
...options.headers
|
|
91004
|
+
};
|
|
91005
|
+
return {
|
|
91006
|
+
url: toPathString$6(localVarUrlObj),
|
|
91007
|
+
options: localVarRequestOptions
|
|
91008
|
+
};
|
|
91009
|
+
}
|
|
91010
|
+
/**
|
|
90466
91011
|
*
|
|
90467
91012
|
* @summary Delete Agent entity
|
|
90468
91013
|
* @param {string} id
|
|
@@ -91027,48 +91572,16 @@ async function EntitiesApiAxiosParamCreator_DeleteEntityIdentityProviders(id, op
|
|
|
91027
91572
|
};
|
|
91028
91573
|
}
|
|
91029
91574
|
/**
|
|
91030
|
-
*
|
|
91031
|
-
* @summary Delete IpAllowlistPolicy entity
|
|
91032
|
-
* @param {string} id
|
|
91033
|
-
* @param {*} [options] Override http request option.
|
|
91034
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
91035
|
-
* @throws {RequiredError}
|
|
91036
|
-
*/
|
|
91037
|
-
async function EntitiesApiAxiosParamCreator_DeleteEntityIpAllowlistPolicies(id, options = {}, configuration) {
|
|
91038
|
-
assertParamExists$6("deleteEntityIpAllowlistPolicies", "id", id);
|
|
91039
|
-
const localVarPath = `/api/v1/entities/ipAllowlistPolicies/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
91040
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
91041
|
-
let baseOptions;
|
|
91042
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
91043
|
-
const localVarRequestOptions = {
|
|
91044
|
-
method: "DELETE",
|
|
91045
|
-
...baseOptions,
|
|
91046
|
-
...options
|
|
91047
|
-
};
|
|
91048
|
-
const localVarHeaderParameter = {};
|
|
91049
|
-
setSearchParams$6(localVarUrlObj, {});
|
|
91050
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
91051
|
-
localVarRequestOptions.headers = {
|
|
91052
|
-
...localVarHeaderParameter,
|
|
91053
|
-
...headersFromBaseOptions,
|
|
91054
|
-
...options.headers
|
|
91055
|
-
};
|
|
91056
|
-
return {
|
|
91057
|
-
url: toPathString$6(localVarUrlObj),
|
|
91058
|
-
options: localVarRequestOptions
|
|
91059
|
-
};
|
|
91060
|
-
}
|
|
91061
|
-
/**
|
|
91062
|
-
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
91063
|
-
* @summary Delete Jwk
|
|
91575
|
+
*
|
|
91576
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
91064
91577
|
* @param {string} id
|
|
91065
91578
|
* @param {*} [options] Override http request option.
|
|
91066
91579
|
* @param {Configuration} [configuration] Optional configuration.
|
|
91067
91580
|
* @throws {RequiredError}
|
|
91068
91581
|
*/
|
|
91069
|
-
async function
|
|
91070
|
-
assertParamExists$6("
|
|
91071
|
-
const localVarPath = `/api/v1/entities/
|
|
91582
|
+
async function EntitiesApiAxiosParamCreator_DeleteEntityIpAllowlistPolicies(id, options = {}, configuration) {
|
|
91583
|
+
assertParamExists$6("deleteEntityIpAllowlistPolicies", "id", id);
|
|
91584
|
+
const localVarPath = `/api/v1/entities/ipAllowlistPolicies/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
91072
91585
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
91073
91586
|
let baseOptions;
|
|
91074
91587
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -91091,18 +91604,16 @@ async function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id, options = {}, c
|
|
|
91091
91604
|
};
|
|
91092
91605
|
}
|
|
91093
91606
|
/**
|
|
91094
|
-
*
|
|
91095
|
-
* @summary Delete
|
|
91096
|
-
* @param {string}
|
|
91097
|
-
* @param {string} objectId
|
|
91607
|
+
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
91608
|
+
* @summary Delete Jwk
|
|
91609
|
+
* @param {string} id
|
|
91098
91610
|
* @param {*} [options] Override http request option.
|
|
91099
91611
|
* @param {Configuration} [configuration] Optional configuration.
|
|
91100
91612
|
* @throws {RequiredError}
|
|
91101
91613
|
*/
|
|
91102
|
-
async function
|
|
91103
|
-
assertParamExists$6("
|
|
91104
|
-
|
|
91105
|
-
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
91614
|
+
async function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id, options = {}, configuration) {
|
|
91615
|
+
assertParamExists$6("deleteEntityJwks", "id", id);
|
|
91616
|
+
const localVarPath = `/api/v1/entities/jwks/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
91106
91617
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
91107
91618
|
let baseOptions;
|
|
91108
91619
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -91125,16 +91636,18 @@ async function EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations
|
|
|
91125
91636
|
};
|
|
91126
91637
|
}
|
|
91127
91638
|
/**
|
|
91128
|
-
*
|
|
91129
|
-
* @summary Delete
|
|
91130
|
-
* @param {string}
|
|
91639
|
+
*
|
|
91640
|
+
* @summary Delete a Knowledge Recommendation
|
|
91641
|
+
* @param {string} workspaceId
|
|
91642
|
+
* @param {string} objectId
|
|
91131
91643
|
* @param {*} [options] Override http request option.
|
|
91132
91644
|
* @param {Configuration} [configuration] Optional configuration.
|
|
91133
91645
|
* @throws {RequiredError}
|
|
91134
91646
|
*/
|
|
91135
|
-
async function
|
|
91136
|
-
assertParamExists$6("
|
|
91137
|
-
|
|
91647
|
+
async function EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations(workspaceId, objectId, options = {}, configuration) {
|
|
91648
|
+
assertParamExists$6("deleteEntityKnowledgeRecommendations", "workspaceId", workspaceId);
|
|
91649
|
+
assertParamExists$6("deleteEntityKnowledgeRecommendations", "objectId", objectId);
|
|
91650
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
91138
91651
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
91139
91652
|
let baseOptions;
|
|
91140
91653
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -91729,6 +92242,35 @@ async function EntitiesApiAxiosParamCreator_GetAllAutomationsWorkspaceAutomation
|
|
|
91729
92242
|
};
|
|
91730
92243
|
}
|
|
91731
92244
|
/**
|
|
92245
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
92246
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
92247
|
+
* @param {*} [options] Override http request option.
|
|
92248
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
92249
|
+
* @throws {RequiredError}
|
|
92250
|
+
*/
|
|
92251
|
+
async function EntitiesApiAxiosParamCreator_GetAllEntities(options = {}, configuration) {
|
|
92252
|
+
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
92253
|
+
let baseOptions;
|
|
92254
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
92255
|
+
const localVarRequestOptions = {
|
|
92256
|
+
method: "GET",
|
|
92257
|
+
...baseOptions,
|
|
92258
|
+
...options
|
|
92259
|
+
};
|
|
92260
|
+
const localVarHeaderParameter = {};
|
|
92261
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
92262
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
92263
|
+
localVarRequestOptions.headers = {
|
|
92264
|
+
...localVarHeaderParameter,
|
|
92265
|
+
...headersFromBaseOptions,
|
|
92266
|
+
...options.headers
|
|
92267
|
+
};
|
|
92268
|
+
return {
|
|
92269
|
+
url: toPathString$6(localVarUrlObj),
|
|
92270
|
+
options: localVarRequestOptions
|
|
92271
|
+
};
|
|
92272
|
+
}
|
|
92273
|
+
/**
|
|
91732
92274
|
*
|
|
91733
92275
|
* @summary Get all Agent entities
|
|
91734
92276
|
* @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\').
|
|
@@ -92943,46 +93485,6 @@ async function EntitiesApiAxiosParamCreator_GetAllEntitiesLabels(workspaceId, or
|
|
|
92943
93485
|
};
|
|
92944
93486
|
}
|
|
92945
93487
|
/**
|
|
92946
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
92947
|
-
* @summary Get all LLM endpoint entities
|
|
92948
|
-
* @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\').
|
|
92949
|
-
* @param {number} [page] Zero-based page index (0..N)
|
|
92950
|
-
* @param {number} [size] The size of the page to be returned
|
|
92951
|
-
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
92952
|
-
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
92953
|
-
* @param {*} [options] Override http request option.
|
|
92954
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
92955
|
-
* @throws {RequiredError}
|
|
92956
|
-
*/
|
|
92957
|
-
async function EntitiesApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(filter, page, size, sort, metaInclude, options = {}, configuration) {
|
|
92958
|
-
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
92959
|
-
let baseOptions;
|
|
92960
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
92961
|
-
const localVarRequestOptions = {
|
|
92962
|
-
method: "GET",
|
|
92963
|
-
...baseOptions,
|
|
92964
|
-
...options
|
|
92965
|
-
};
|
|
92966
|
-
const localVarHeaderParameter = {};
|
|
92967
|
-
const localVarQueryParameter = {};
|
|
92968
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
92969
|
-
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
92970
|
-
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
92971
|
-
if (sort) localVarQueryParameter["sort"] = sort;
|
|
92972
|
-
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
92973
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
92974
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
92975
|
-
localVarRequestOptions.headers = {
|
|
92976
|
-
...localVarHeaderParameter,
|
|
92977
|
-
...headersFromBaseOptions,
|
|
92978
|
-
...options.headers
|
|
92979
|
-
};
|
|
92980
|
-
return {
|
|
92981
|
-
url: toPathString$6(localVarUrlObj),
|
|
92982
|
-
options: localVarRequestOptions
|
|
92983
|
-
};
|
|
92984
|
-
}
|
|
92985
|
-
/**
|
|
92986
93488
|
*
|
|
92987
93489
|
* @summary Get all LLM Provider entities
|
|
92988
93490
|
* @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\').
|
|
@@ -93840,6 +94342,38 @@ async function EntitiesApiAxiosParamCreator_GetDataSourceDrivers(options = {}, c
|
|
|
93840
94342
|
};
|
|
93841
94343
|
}
|
|
93842
94344
|
/**
|
|
94345
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
94346
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
94347
|
+
* @param {string} id
|
|
94348
|
+
* @param {*} [options] Override http request option.
|
|
94349
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
94350
|
+
* @throws {RequiredError}
|
|
94351
|
+
*/
|
|
94352
|
+
async function EntitiesApiAxiosParamCreator_GetEntity(id, options = {}, configuration) {
|
|
94353
|
+
assertParamExists$6("getEntity", "id", id);
|
|
94354
|
+
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
94355
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
94356
|
+
let baseOptions;
|
|
94357
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
94358
|
+
const localVarRequestOptions = {
|
|
94359
|
+
method: "GET",
|
|
94360
|
+
...baseOptions,
|
|
94361
|
+
...options
|
|
94362
|
+
};
|
|
94363
|
+
const localVarHeaderParameter = {};
|
|
94364
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
94365
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
94366
|
+
localVarRequestOptions.headers = {
|
|
94367
|
+
...localVarHeaderParameter,
|
|
94368
|
+
...headersFromBaseOptions,
|
|
94369
|
+
...options.headers
|
|
94370
|
+
};
|
|
94371
|
+
return {
|
|
94372
|
+
url: toPathString$6(localVarUrlObj),
|
|
94373
|
+
options: localVarRequestOptions
|
|
94374
|
+
};
|
|
94375
|
+
}
|
|
94376
|
+
/**
|
|
93843
94377
|
*
|
|
93844
94378
|
* @summary Get Agent entity
|
|
93845
94379
|
* @param {string} id
|
|
@@ -94940,41 +95474,6 @@ async function EntitiesApiAxiosParamCreator_GetEntityLabels(workspaceId, objectI
|
|
|
94940
95474
|
};
|
|
94941
95475
|
}
|
|
94942
95476
|
/**
|
|
94943
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
94944
|
-
* @summary Get LLM endpoint entity
|
|
94945
|
-
* @param {string} id
|
|
94946
|
-
* @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\').
|
|
94947
|
-
* @param {*} [options] Override http request option.
|
|
94948
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
94949
|
-
* @throws {RequiredError}
|
|
94950
|
-
*/
|
|
94951
|
-
async function EntitiesApiAxiosParamCreator_GetEntityLlmEndpoints(id, filter, options = {}, configuration) {
|
|
94952
|
-
assertParamExists$6("getEntityLlmEndpoints", "id", id);
|
|
94953
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
94954
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
94955
|
-
let baseOptions;
|
|
94956
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
94957
|
-
const localVarRequestOptions = {
|
|
94958
|
-
method: "GET",
|
|
94959
|
-
...baseOptions,
|
|
94960
|
-
...options
|
|
94961
|
-
};
|
|
94962
|
-
const localVarHeaderParameter = {};
|
|
94963
|
-
const localVarQueryParameter = {};
|
|
94964
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
94965
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
94966
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
94967
|
-
localVarRequestOptions.headers = {
|
|
94968
|
-
...localVarHeaderParameter,
|
|
94969
|
-
...headersFromBaseOptions,
|
|
94970
|
-
...options.headers
|
|
94971
|
-
};
|
|
94972
|
-
return {
|
|
94973
|
-
url: toPathString$6(localVarUrlObj),
|
|
94974
|
-
options: localVarRequestOptions
|
|
94975
|
-
};
|
|
94976
|
-
}
|
|
94977
|
-
/**
|
|
94978
95477
|
*
|
|
94979
95478
|
* @summary Get LLM Provider entity
|
|
94980
95479
|
* @param {string} id
|
|
@@ -95748,6 +96247,38 @@ async function EntitiesApiAxiosParamCreator_GetOrganization(metaInclude, options
|
|
|
95748
96247
|
};
|
|
95749
96248
|
}
|
|
95750
96249
|
/**
|
|
96250
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
96251
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
96252
|
+
* @param {string} id
|
|
96253
|
+
* @param {*} [options] Override http request option.
|
|
96254
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
96255
|
+
* @throws {RequiredError}
|
|
96256
|
+
*/
|
|
96257
|
+
async function EntitiesApiAxiosParamCreator_PatchEntity(id, options = {}, configuration) {
|
|
96258
|
+
assertParamExists$6("patchEntity", "id", id);
|
|
96259
|
+
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
96260
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
96261
|
+
let baseOptions;
|
|
96262
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
96263
|
+
const localVarRequestOptions = {
|
|
96264
|
+
method: "PATCH",
|
|
96265
|
+
...baseOptions,
|
|
96266
|
+
...options
|
|
96267
|
+
};
|
|
96268
|
+
const localVarHeaderParameter = {};
|
|
96269
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
96270
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
96271
|
+
localVarRequestOptions.headers = {
|
|
96272
|
+
...localVarHeaderParameter,
|
|
96273
|
+
...headersFromBaseOptions,
|
|
96274
|
+
...options.headers
|
|
96275
|
+
};
|
|
96276
|
+
return {
|
|
96277
|
+
url: toPathString$6(localVarUrlObj),
|
|
96278
|
+
options: localVarRequestOptions
|
|
96279
|
+
};
|
|
96280
|
+
}
|
|
96281
|
+
/**
|
|
95751
96282
|
*
|
|
95752
96283
|
* @summary Patch Agent entity
|
|
95753
96284
|
* @param {string} id
|
|
@@ -96680,46 +97211,6 @@ async function EntitiesApiAxiosParamCreator_PatchEntityLabels(workspaceId, objec
|
|
|
96680
97211
|
};
|
|
96681
97212
|
}
|
|
96682
97213
|
/**
|
|
96683
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
96684
|
-
* @summary Patch LLM endpoint entity
|
|
96685
|
-
* @param {string} id
|
|
96686
|
-
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
96687
|
-
* @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\').
|
|
96688
|
-
* @param {*} [options] Override http request option.
|
|
96689
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
96690
|
-
* @throws {RequiredError}
|
|
96691
|
-
*/
|
|
96692
|
-
async function EntitiesApiAxiosParamCreator_PatchEntityLlmEndpoints(id, jsonApiLlmEndpointPatchDocument, filter, options = {}, configuration) {
|
|
96693
|
-
assertParamExists$6("patchEntityLlmEndpoints", "id", id);
|
|
96694
|
-
assertParamExists$6("patchEntityLlmEndpoints", "jsonApiLlmEndpointPatchDocument", jsonApiLlmEndpointPatchDocument);
|
|
96695
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
96696
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
96697
|
-
let baseOptions;
|
|
96698
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
96699
|
-
const localVarRequestOptions = {
|
|
96700
|
-
method: "PATCH",
|
|
96701
|
-
...baseOptions,
|
|
96702
|
-
...options
|
|
96703
|
-
};
|
|
96704
|
-
const localVarHeaderParameter = {};
|
|
96705
|
-
const localVarQueryParameter = {};
|
|
96706
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
96707
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
96708
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
96709
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
96710
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
96711
|
-
localVarRequestOptions.headers = {
|
|
96712
|
-
...localVarHeaderParameter,
|
|
96713
|
-
...headersFromBaseOptions,
|
|
96714
|
-
...options.headers
|
|
96715
|
-
};
|
|
96716
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointPatchDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointPatchDocument !== void 0 ? jsonApiLlmEndpointPatchDocument : {}) : jsonApiLlmEndpointPatchDocument || "";
|
|
96717
|
-
return {
|
|
96718
|
-
url: toPathString$6(localVarUrlObj),
|
|
96719
|
-
options: localVarRequestOptions
|
|
96720
|
-
};
|
|
96721
|
-
}
|
|
96722
|
-
/**
|
|
96723
97214
|
*
|
|
96724
97215
|
* @summary Patch LLM Provider entity
|
|
96725
97216
|
* @param {string} id
|
|
@@ -98322,42 +98813,74 @@ async function EntitiesApiAxiosParamCreator_SearchEntitiesWorkspaceDataFilters(w
|
|
|
98322
98813
|
};
|
|
98323
98814
|
}
|
|
98324
98815
|
/**
|
|
98325
|
-
*
|
|
98326
|
-
* @summary The search endpoint (beta)
|
|
98327
|
-
* @param {string} workspaceId
|
|
98328
|
-
* @param {EntitySearchBody} entitySearchBody Search request body with filter, pagination, and sorting options
|
|
98329
|
-
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
98330
|
-
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
98816
|
+
*
|
|
98817
|
+
* @summary The search endpoint (beta)
|
|
98818
|
+
* @param {string} workspaceId
|
|
98819
|
+
* @param {EntitySearchBody} entitySearchBody Search request body with filter, pagination, and sorting options
|
|
98820
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
98821
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
98822
|
+
* @param {*} [options] Override http request option.
|
|
98823
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
98824
|
+
* @throws {RequiredError}
|
|
98825
|
+
*/
|
|
98826
|
+
async function EntitiesApiAxiosParamCreator_SearchEntitiesWorkspaceSettings(workspaceId, entitySearchBody, origin, xGDCVALIDATERELATIONS, options = {}, configuration) {
|
|
98827
|
+
assertParamExists$6("searchEntitiesWorkspaceSettings", "workspaceId", workspaceId);
|
|
98828
|
+
assertParamExists$6("searchEntitiesWorkspaceSettings", "entitySearchBody", entitySearchBody);
|
|
98829
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/workspaceSettings/search`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
98830
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
98831
|
+
let baseOptions;
|
|
98832
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
98833
|
+
const localVarRequestOptions = {
|
|
98834
|
+
method: "POST",
|
|
98835
|
+
...baseOptions,
|
|
98836
|
+
...options
|
|
98837
|
+
};
|
|
98838
|
+
const localVarHeaderParameter = {};
|
|
98839
|
+
const localVarQueryParameter = {};
|
|
98840
|
+
if (origin !== void 0) localVarQueryParameter["origin"] = origin;
|
|
98841
|
+
if (xGDCVALIDATERELATIONS !== void 0 && xGDCVALIDATERELATIONS !== null) localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
98842
|
+
const consumes = ["application/json"];
|
|
98843
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
98844
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
98845
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
98846
|
+
localVarRequestOptions.headers = {
|
|
98847
|
+
...localVarHeaderParameter,
|
|
98848
|
+
...headersFromBaseOptions,
|
|
98849
|
+
...options.headers
|
|
98850
|
+
};
|
|
98851
|
+
localVarRequestOptions.data = typeof entitySearchBody !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(entitySearchBody !== void 0 ? entitySearchBody : {}) : entitySearchBody || "";
|
|
98852
|
+
return {
|
|
98853
|
+
url: toPathString$6(localVarUrlObj),
|
|
98854
|
+
options: localVarRequestOptions
|
|
98855
|
+
};
|
|
98856
|
+
}
|
|
98857
|
+
/**
|
|
98858
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
98859
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
98860
|
+
* @param {string} id
|
|
98331
98861
|
* @param {*} [options] Override http request option.
|
|
98332
98862
|
* @param {Configuration} [configuration] Optional configuration.
|
|
98333
98863
|
* @throws {RequiredError}
|
|
98334
98864
|
*/
|
|
98335
|
-
async function
|
|
98336
|
-
assertParamExists$6("
|
|
98337
|
-
|
|
98338
|
-
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/workspaceSettings/search`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
98865
|
+
async function EntitiesApiAxiosParamCreator_UpdateEntity(id, options = {}, configuration) {
|
|
98866
|
+
assertParamExists$6("updateEntity", "id", id);
|
|
98867
|
+
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
98339
98868
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
98340
98869
|
let baseOptions;
|
|
98341
98870
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
98342
98871
|
const localVarRequestOptions = {
|
|
98343
|
-
method: "
|
|
98872
|
+
method: "PUT",
|
|
98344
98873
|
...baseOptions,
|
|
98345
98874
|
...options
|
|
98346
98875
|
};
|
|
98347
98876
|
const localVarHeaderParameter = {};
|
|
98348
|
-
|
|
98349
|
-
if (origin !== void 0) localVarQueryParameter["origin"] = origin;
|
|
98350
|
-
if (xGDCVALIDATERELATIONS !== void 0 && xGDCVALIDATERELATIONS !== null) localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
98351
|
-
const consumes = ["application/json"];
|
|
98352
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
98353
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
98877
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
98354
98878
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
98355
98879
|
localVarRequestOptions.headers = {
|
|
98356
98880
|
...localVarHeaderParameter,
|
|
98357
98881
|
...headersFromBaseOptions,
|
|
98358
98882
|
...options.headers
|
|
98359
98883
|
};
|
|
98360
|
-
localVarRequestOptions.data = typeof entitySearchBody !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(entitySearchBody !== void 0 ? entitySearchBody : {}) : entitySearchBody || "";
|
|
98361
98884
|
return {
|
|
98362
98885
|
url: toPathString$6(localVarUrlObj),
|
|
98363
98886
|
options: localVarRequestOptions
|
|
@@ -99204,46 +99727,6 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityKnowledgeRecommendations
|
|
|
99204
99727
|
};
|
|
99205
99728
|
}
|
|
99206
99729
|
/**
|
|
99207
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
99208
|
-
* @summary PUT LLM endpoint entity
|
|
99209
|
-
* @param {string} id
|
|
99210
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
99211
|
-
* @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\').
|
|
99212
|
-
* @param {*} [options] Override http request option.
|
|
99213
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
99214
|
-
* @throws {RequiredError}
|
|
99215
|
-
*/
|
|
99216
|
-
async function EntitiesApiAxiosParamCreator_UpdateEntityLlmEndpoints(id, jsonApiLlmEndpointInDocument, filter, options = {}, configuration) {
|
|
99217
|
-
assertParamExists$6("updateEntityLlmEndpoints", "id", id);
|
|
99218
|
-
assertParamExists$6("updateEntityLlmEndpoints", "jsonApiLlmEndpointInDocument", jsonApiLlmEndpointInDocument);
|
|
99219
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
99220
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
99221
|
-
let baseOptions;
|
|
99222
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
99223
|
-
const localVarRequestOptions = {
|
|
99224
|
-
method: "PUT",
|
|
99225
|
-
...baseOptions,
|
|
99226
|
-
...options
|
|
99227
|
-
};
|
|
99228
|
-
const localVarHeaderParameter = {};
|
|
99229
|
-
const localVarQueryParameter = {};
|
|
99230
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
99231
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
99232
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
99233
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
99234
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
99235
|
-
localVarRequestOptions.headers = {
|
|
99236
|
-
...localVarHeaderParameter,
|
|
99237
|
-
...headersFromBaseOptions,
|
|
99238
|
-
...options.headers
|
|
99239
|
-
};
|
|
99240
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointInDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointInDocument !== void 0 ? jsonApiLlmEndpointInDocument : {}) : jsonApiLlmEndpointInDocument || "";
|
|
99241
|
-
return {
|
|
99242
|
-
url: toPathString$6(localVarUrlObj),
|
|
99243
|
-
options: localVarRequestOptions
|
|
99244
|
-
};
|
|
99245
|
-
}
|
|
99246
|
-
/**
|
|
99247
99730
|
*
|
|
99248
99731
|
* @summary PUT LLM Provider entity
|
|
99249
99732
|
* @param {string} id
|
|
@@ -99964,6 +100447,18 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaces(id, jsonApiWo
|
|
|
99964
100447
|
};
|
|
99965
100448
|
}
|
|
99966
100449
|
/**
|
|
100450
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
100451
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
100452
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
100453
|
+
* @param {string} basePath Base path.
|
|
100454
|
+
* @param {*} [options] Override http request option.
|
|
100455
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
100456
|
+
* @throws {RequiredError}
|
|
100457
|
+
*/
|
|
100458
|
+
async function EntitiesApi_CreateEntity(axios, basePath, options, configuration) {
|
|
100459
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntity(options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100460
|
+
}
|
|
100461
|
+
/**
|
|
99967
100462
|
* AI Agent - behavior configuration for AI assistants
|
|
99968
100463
|
* @summary Post Agent entities
|
|
99969
100464
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100224,19 +100719,6 @@ async function EntitiesApi_CreateEntityKnowledgeRecommendations(axios, basePath,
|
|
|
100224
100719
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntityKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.jsonApiKnowledgeRecommendationPostOptionalIdDocument, requestParameters.include, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100225
100720
|
}
|
|
100226
100721
|
/**
|
|
100227
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
100228
|
-
* @summary Post LLM endpoint entities
|
|
100229
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
100230
|
-
* @param {string} basePath Base path.
|
|
100231
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
100232
|
-
* @param {*} [options] Override http request option.
|
|
100233
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
100234
|
-
* @throws {RequiredError}
|
|
100235
|
-
*/
|
|
100236
|
-
async function EntitiesApi_CreateEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
100237
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntityLlmEndpoints(requestParameters.jsonApiLlmEndpointInDocument, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100238
|
-
}
|
|
100239
|
-
/**
|
|
100240
100722
|
* LLM Provider - connection configuration for LLM services
|
|
100241
100723
|
* @summary Post LLM Provider entities
|
|
100242
100724
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100445,6 +100927,19 @@ async function EntitiesApi_CreateEntityWorkspaces(axios, basePath, requestParame
|
|
|
100445
100927
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntityWorkspaces(requestParameters.jsonApiWorkspaceInDocument, requestParameters.include, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100446
100928
|
}
|
|
100447
100929
|
/**
|
|
100930
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
100931
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
100932
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
100933
|
+
* @param {string} basePath Base path.
|
|
100934
|
+
* @param {EntitiesApiDeleteEntityRequest} requestParameters Request parameters.
|
|
100935
|
+
* @param {*} [options] Override http request option.
|
|
100936
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
100937
|
+
* @throws {RequiredError}
|
|
100938
|
+
*/
|
|
100939
|
+
async function EntitiesApi_DeleteEntity(axios, basePath, requestParameters, options, configuration) {
|
|
100940
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_DeleteEntity(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100941
|
+
}
|
|
100942
|
+
/**
|
|
100448
100943
|
*
|
|
100449
100944
|
* @summary Delete Agent entity
|
|
100450
100945
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100705,19 +101200,6 @@ async function EntitiesApi_DeleteEntityKnowledgeRecommendations(axios, basePath,
|
|
|
100705
101200
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100706
101201
|
}
|
|
100707
101202
|
/**
|
|
100708
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
100709
|
-
* @summary Delete LLM endpoint entity
|
|
100710
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
100711
|
-
* @param {string} basePath Base path.
|
|
100712
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
100713
|
-
* @param {*} [options] Override http request option.
|
|
100714
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
100715
|
-
* @throws {RequiredError}
|
|
100716
|
-
*/
|
|
100717
|
-
async function EntitiesApi_DeleteEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
100718
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_DeleteEntityLlmEndpoints(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100719
|
-
}
|
|
100720
|
-
/**
|
|
100721
101203
|
*
|
|
100722
101204
|
* @summary Delete LLM Provider entity
|
|
100723
101205
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100939,6 +101421,18 @@ async function EntitiesApi_GetAllAutomationsWorkspaceAutomations(axios, basePath
|
|
|
100939
101421
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetAllAutomationsWorkspaceAutomations(requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100940
101422
|
}
|
|
100941
101423
|
/**
|
|
101424
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
101425
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
101426
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
101427
|
+
* @param {string} basePath Base path.
|
|
101428
|
+
* @param {*} [options] Override http request option.
|
|
101429
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
101430
|
+
* @throws {RequiredError}
|
|
101431
|
+
*/
|
|
101432
|
+
async function EntitiesApi_GetAllEntities(axios, basePath, options, configuration) {
|
|
101433
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetAllEntities(options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101434
|
+
}
|
|
101435
|
+
/**
|
|
100942
101436
|
*
|
|
100943
101437
|
* @summary Get all Agent entities
|
|
100944
101438
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101290,19 +101784,6 @@ async function EntitiesApi_GetAllEntitiesLabels(axios, basePath, requestParamete
|
|
|
101290
101784
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetAllEntitiesLabels(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101291
101785
|
}
|
|
101292
101786
|
/**
|
|
101293
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
101294
|
-
* @summary Get all LLM endpoint entities
|
|
101295
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
101296
|
-
* @param {string} basePath Base path.
|
|
101297
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
101298
|
-
* @param {*} [options] Override http request option.
|
|
101299
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
101300
|
-
* @throws {RequiredError}
|
|
101301
|
-
*/
|
|
101302
|
-
async function EntitiesApi_GetAllEntitiesLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
101303
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101304
|
-
}
|
|
101305
|
-
/**
|
|
101306
101787
|
*
|
|
101307
101788
|
* @summary Get all LLM Provider entities
|
|
101308
101789
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101561,6 +102042,19 @@ async function EntitiesApi_GetDataSourceDrivers(axios, basePath, options, config
|
|
|
101561
102042
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetDataSourceDrivers(options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101562
102043
|
}
|
|
101563
102044
|
/**
|
|
102045
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
102046
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
102047
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
102048
|
+
* @param {string} basePath Base path.
|
|
102049
|
+
* @param {EntitiesApiGetEntityRequest} requestParameters Request parameters.
|
|
102050
|
+
* @param {*} [options] Override http request option.
|
|
102051
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
102052
|
+
* @throws {RequiredError}
|
|
102053
|
+
*/
|
|
102054
|
+
async function EntitiesApi_GetEntity(axios, basePath, requestParameters, options, configuration) {
|
|
102055
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetEntity(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102056
|
+
}
|
|
102057
|
+
/**
|
|
101564
102058
|
*
|
|
101565
102059
|
* @summary Get Agent entity
|
|
101566
102060
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101925,19 +102419,6 @@ async function EntitiesApi_GetEntityLabels(axios, basePath, requestParameters, o
|
|
|
101925
102419
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetEntityLabels(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101926
102420
|
}
|
|
101927
102421
|
/**
|
|
101928
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
101929
|
-
* @summary Get LLM endpoint entity
|
|
101930
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
101931
|
-
* @param {string} basePath Base path.
|
|
101932
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
101933
|
-
* @param {*} [options] Override http request option.
|
|
101934
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
101935
|
-
* @throws {RequiredError}
|
|
101936
|
-
*/
|
|
101937
|
-
async function EntitiesApi_GetEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
101938
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetEntityLlmEndpoints(requestParameters.id, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101939
|
-
}
|
|
101940
|
-
/**
|
|
101941
102422
|
*
|
|
101942
102423
|
* @summary Get LLM Provider entity
|
|
101943
102424
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -102198,6 +102679,19 @@ async function EntitiesApi_GetOrganization(axios, basePath, requestParameters, o
|
|
|
102198
102679
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetOrganization(requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102199
102680
|
}
|
|
102200
102681
|
/**
|
|
102682
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
102683
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
102684
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
102685
|
+
* @param {string} basePath Base path.
|
|
102686
|
+
* @param {EntitiesApiPatchEntityRequest} requestParameters Request parameters.
|
|
102687
|
+
* @param {*} [options] Override http request option.
|
|
102688
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
102689
|
+
* @throws {RequiredError}
|
|
102690
|
+
*/
|
|
102691
|
+
async function EntitiesApi_PatchEntity(axios, basePath, requestParameters, options, configuration) {
|
|
102692
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_PatchEntity(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102693
|
+
}
|
|
102694
|
+
/**
|
|
102201
102695
|
*
|
|
102202
102696
|
* @summary Patch Agent entity
|
|
102203
102697
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -102484,19 +102978,6 @@ async function EntitiesApi_PatchEntityLabels(axios, basePath, requestParameters,
|
|
|
102484
102978
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_PatchEntityLabels(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiLabelPatchDocument, requestParameters.filter, requestParameters.include, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102485
102979
|
}
|
|
102486
102980
|
/**
|
|
102487
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
102488
|
-
* @summary Patch LLM endpoint entity
|
|
102489
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
102490
|
-
* @param {string} basePath Base path.
|
|
102491
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
102492
|
-
* @param {*} [options] Override http request option.
|
|
102493
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
102494
|
-
* @throws {RequiredError}
|
|
102495
|
-
*/
|
|
102496
|
-
async function EntitiesApi_PatchEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
102497
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_PatchEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointPatchDocument, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102498
|
-
}
|
|
102499
|
-
/**
|
|
102500
102981
|
*
|
|
102501
102982
|
* @summary Patch LLM Provider entity
|
|
102502
102983
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -103004,6 +103485,19 @@ async function EntitiesApi_SearchEntitiesWorkspaceSettings(axios, basePath, requ
|
|
|
103004
103485
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_SearchEntitiesWorkspaceSettings(requestParameters.workspaceId, requestParameters.entitySearchBody, requestParameters.origin, requestParameters.xGDCVALIDATERELATIONS, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103005
103486
|
}
|
|
103006
103487
|
/**
|
|
103488
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
103489
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
103490
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
103491
|
+
* @param {string} basePath Base path.
|
|
103492
|
+
* @param {EntitiesApiUpdateEntityRequest} requestParameters Request parameters.
|
|
103493
|
+
* @param {*} [options] Override http request option.
|
|
103494
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
103495
|
+
* @throws {RequiredError}
|
|
103496
|
+
*/
|
|
103497
|
+
async function EntitiesApi_UpdateEntity(axios, basePath, requestParameters, options, configuration) {
|
|
103498
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_UpdateEntity(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103499
|
+
}
|
|
103500
|
+
/**
|
|
103007
103501
|
*
|
|
103008
103502
|
* @summary Put Agent entity
|
|
103009
103503
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -103264,19 +103758,6 @@ async function EntitiesApi_UpdateEntityKnowledgeRecommendations(axios, basePath,
|
|
|
103264
103758
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_UpdateEntityKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiKnowledgeRecommendationInDocument, requestParameters.filter, requestParameters.include, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103265
103759
|
}
|
|
103266
103760
|
/**
|
|
103267
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
103268
|
-
* @summary PUT LLM endpoint entity
|
|
103269
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
103270
|
-
* @param {string} basePath Base path.
|
|
103271
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
103272
|
-
* @param {*} [options] Override http request option.
|
|
103273
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
103274
|
-
* @throws {RequiredError}
|
|
103275
|
-
*/
|
|
103276
|
-
async function EntitiesApi_UpdateEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
103277
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_UpdateEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointInDocument, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103278
|
-
}
|
|
103279
|
-
/**
|
|
103280
103761
|
*
|
|
103281
103762
|
* @summary PUT LLM Provider entity
|
|
103282
103763
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -103504,6 +103985,17 @@ async function EntitiesApi_UpdateEntityWorkspaces(axios, basePath, requestParame
|
|
|
103504
103985
|
* @extends {BaseAPI}
|
|
103505
103986
|
*/
|
|
103506
103987
|
var EntitiesApi = class extends BaseAPI$6 {
|
|
103988
|
+
/**
|
|
103989
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
103990
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
103991
|
+
* @param {*} [options] Override http request option.
|
|
103992
|
+
* @deprecated
|
|
103993
|
+
* @throws {RequiredError}
|
|
103994
|
+
* @memberof EntitiesApi
|
|
103995
|
+
*/
|
|
103996
|
+
createEntity(options) {
|
|
103997
|
+
return EntitiesApi_CreateEntity(this.axios, this.basePath, options, this.configuration);
|
|
103998
|
+
}
|
|
103507
103999
|
/**
|
|
103508
104000
|
* AI Agent - behavior configuration for AI assistants
|
|
103509
104001
|
* @summary Post Agent entities
|
|
@@ -103725,18 +104217,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
103725
104217
|
return EntitiesApi_CreateEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103726
104218
|
}
|
|
103727
104219
|
/**
|
|
103728
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
103729
|
-
* @summary Post LLM endpoint entities
|
|
103730
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
103731
|
-
* @param {*} [options] Override http request option.
|
|
103732
|
-
* @deprecated
|
|
103733
|
-
* @throws {RequiredError}
|
|
103734
|
-
* @memberof EntitiesApi
|
|
103735
|
-
*/
|
|
103736
|
-
createEntityLlmEndpoints(requestParameters, options) {
|
|
103737
|
-
return EntitiesApi_CreateEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103738
|
-
}
|
|
103739
|
-
/**
|
|
103740
104220
|
* LLM Provider - connection configuration for LLM services
|
|
103741
104221
|
* @summary Post LLM Provider entities
|
|
103742
104222
|
* @param {EntitiesApiCreateEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -103913,6 +104393,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
103913
104393
|
return EntitiesApi_CreateEntityWorkspaces(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103914
104394
|
}
|
|
103915
104395
|
/**
|
|
104396
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
104397
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
104398
|
+
* @param {EntitiesApiDeleteEntityRequest} requestParameters Request parameters.
|
|
104399
|
+
* @param {*} [options] Override http request option.
|
|
104400
|
+
* @deprecated
|
|
104401
|
+
* @throws {RequiredError}
|
|
104402
|
+
* @memberof EntitiesApi
|
|
104403
|
+
*/
|
|
104404
|
+
deleteEntity(requestParameters, options) {
|
|
104405
|
+
return EntitiesApi_DeleteEntity(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104406
|
+
}
|
|
104407
|
+
/**
|
|
103916
104408
|
*
|
|
103917
104409
|
* @summary Delete Agent entity
|
|
103918
104410
|
* @param {EntitiesApiDeleteEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -104133,18 +104625,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104133
104625
|
return EntitiesApi_DeleteEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104134
104626
|
}
|
|
104135
104627
|
/**
|
|
104136
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
104137
|
-
* @summary Delete LLM endpoint entity
|
|
104138
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
104139
|
-
* @param {*} [options] Override http request option.
|
|
104140
|
-
* @deprecated
|
|
104141
|
-
* @throws {RequiredError}
|
|
104142
|
-
* @memberof EntitiesApi
|
|
104143
|
-
*/
|
|
104144
|
-
deleteEntityLlmEndpoints(requestParameters, options) {
|
|
104145
|
-
return EntitiesApi_DeleteEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104146
|
-
}
|
|
104147
|
-
/**
|
|
104148
104628
|
*
|
|
104149
104629
|
* @summary Delete LLM Provider entity
|
|
104150
104630
|
* @param {EntitiesApiDeleteEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -104332,6 +104812,17 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104332
104812
|
return EntitiesApi_GetAllAutomationsWorkspaceAutomations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104333
104813
|
}
|
|
104334
104814
|
/**
|
|
104815
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
104816
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
104817
|
+
* @param {*} [options] Override http request option.
|
|
104818
|
+
* @deprecated
|
|
104819
|
+
* @throws {RequiredError}
|
|
104820
|
+
* @memberof EntitiesApi
|
|
104821
|
+
*/
|
|
104822
|
+
getAllEntities(options) {
|
|
104823
|
+
return EntitiesApi_GetAllEntities(this.axios, this.basePath, options, this.configuration);
|
|
104824
|
+
}
|
|
104825
|
+
/**
|
|
104335
104826
|
*
|
|
104336
104827
|
* @summary Get all Agent entities
|
|
104337
104828
|
* @param {EntitiesApiGetAllEntitiesAgentsRequest} requestParameters Request parameters.
|
|
@@ -104629,18 +105120,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104629
105120
|
return EntitiesApi_GetAllEntitiesLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104630
105121
|
}
|
|
104631
105122
|
/**
|
|
104632
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
104633
|
-
* @summary Get all LLM endpoint entities
|
|
104634
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
104635
|
-
* @param {*} [options] Override http request option.
|
|
104636
|
-
* @deprecated
|
|
104637
|
-
* @throws {RequiredError}
|
|
104638
|
-
* @memberof EntitiesApi
|
|
104639
|
-
*/
|
|
104640
|
-
getAllEntitiesLlmEndpoints(requestParameters = {}, options) {
|
|
104641
|
-
return EntitiesApi_GetAllEntitiesLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104642
|
-
}
|
|
104643
|
-
/**
|
|
104644
105123
|
*
|
|
104645
105124
|
* @summary Get all LLM Provider entities
|
|
104646
105125
|
* @param {EntitiesApiGetAllEntitiesLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -104859,6 +105338,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104859
105338
|
return EntitiesApi_GetDataSourceDrivers(this.axios, this.basePath, options, this.configuration);
|
|
104860
105339
|
}
|
|
104861
105340
|
/**
|
|
105341
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
105342
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
105343
|
+
* @param {EntitiesApiGetEntityRequest} requestParameters Request parameters.
|
|
105344
|
+
* @param {*} [options] Override http request option.
|
|
105345
|
+
* @deprecated
|
|
105346
|
+
* @throws {RequiredError}
|
|
105347
|
+
* @memberof EntitiesApi
|
|
105348
|
+
*/
|
|
105349
|
+
getEntity(requestParameters, options) {
|
|
105350
|
+
return EntitiesApi_GetEntity(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105351
|
+
}
|
|
105352
|
+
/**
|
|
104862
105353
|
*
|
|
104863
105354
|
* @summary Get Agent entity
|
|
104864
105355
|
* @param {EntitiesApiGetEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -105167,18 +105658,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105167
105658
|
return EntitiesApi_GetEntityLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105168
105659
|
}
|
|
105169
105660
|
/**
|
|
105170
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
105171
|
-
* @summary Get LLM endpoint entity
|
|
105172
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
105173
|
-
* @param {*} [options] Override http request option.
|
|
105174
|
-
* @deprecated
|
|
105175
|
-
* @throws {RequiredError}
|
|
105176
|
-
* @memberof EntitiesApi
|
|
105177
|
-
*/
|
|
105178
|
-
getEntityLlmEndpoints(requestParameters, options) {
|
|
105179
|
-
return EntitiesApi_GetEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105180
|
-
}
|
|
105181
|
-
/**
|
|
105182
105661
|
*
|
|
105183
105662
|
* @summary Get LLM Provider entity
|
|
105184
105663
|
* @param {EntitiesApiGetEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -105399,6 +105878,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105399
105878
|
return EntitiesApi_GetOrganization(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105400
105879
|
}
|
|
105401
105880
|
/**
|
|
105881
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
105882
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
105883
|
+
* @param {EntitiesApiPatchEntityRequest} requestParameters Request parameters.
|
|
105884
|
+
* @param {*} [options] Override http request option.
|
|
105885
|
+
* @deprecated
|
|
105886
|
+
* @throws {RequiredError}
|
|
105887
|
+
* @memberof EntitiesApi
|
|
105888
|
+
*/
|
|
105889
|
+
patchEntity(requestParameters, options) {
|
|
105890
|
+
return EntitiesApi_PatchEntity(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105891
|
+
}
|
|
105892
|
+
/**
|
|
105402
105893
|
*
|
|
105403
105894
|
* @summary Patch Agent entity
|
|
105404
105895
|
* @param {EntitiesApiPatchEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -105641,18 +106132,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105641
106132
|
return EntitiesApi_PatchEntityLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105642
106133
|
}
|
|
105643
106134
|
/**
|
|
105644
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
105645
|
-
* @summary Patch LLM endpoint entity
|
|
105646
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
105647
|
-
* @param {*} [options] Override http request option.
|
|
105648
|
-
* @deprecated
|
|
105649
|
-
* @throws {RequiredError}
|
|
105650
|
-
* @memberof EntitiesApi
|
|
105651
|
-
*/
|
|
105652
|
-
patchEntityLlmEndpoints(requestParameters, options) {
|
|
105653
|
-
return EntitiesApi_PatchEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105654
|
-
}
|
|
105655
|
-
/**
|
|
105656
106135
|
*
|
|
105657
106136
|
* @summary Patch LLM Provider entity
|
|
105658
106137
|
* @param {EntitiesApiPatchEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -106082,6 +106561,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
106082
106561
|
return EntitiesApi_SearchEntitiesWorkspaceSettings(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106083
106562
|
}
|
|
106084
106563
|
/**
|
|
106564
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
106565
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
106566
|
+
* @param {EntitiesApiUpdateEntityRequest} requestParameters Request parameters.
|
|
106567
|
+
* @param {*} [options] Override http request option.
|
|
106568
|
+
* @deprecated
|
|
106569
|
+
* @throws {RequiredError}
|
|
106570
|
+
* @memberof EntitiesApi
|
|
106571
|
+
*/
|
|
106572
|
+
updateEntity(requestParameters, options) {
|
|
106573
|
+
return EntitiesApi_UpdateEntity(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106574
|
+
}
|
|
106575
|
+
/**
|
|
106085
106576
|
*
|
|
106086
106577
|
* @summary Put Agent entity
|
|
106087
106578
|
* @param {EntitiesApiUpdateEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -106302,18 +106793,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
106302
106793
|
return EntitiesApi_UpdateEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106303
106794
|
}
|
|
106304
106795
|
/**
|
|
106305
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
106306
|
-
* @summary PUT LLM endpoint entity
|
|
106307
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
106308
|
-
* @param {*} [options] Override http request option.
|
|
106309
|
-
* @deprecated
|
|
106310
|
-
* @throws {RequiredError}
|
|
106311
|
-
* @memberof EntitiesApi
|
|
106312
|
-
*/
|
|
106313
|
-
updateEntityLlmEndpoints(requestParameters, options) {
|
|
106314
|
-
return EntitiesApi_UpdateEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106315
|
-
}
|
|
106316
|
-
/**
|
|
106317
106796
|
*
|
|
106318
106797
|
* @summary PUT LLM Provider entity
|
|
106319
106798
|
* @param {EntitiesApiUpdateEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -111218,39 +111697,6 @@ async function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId, runId, op
|
|
|
111218
111697
|
};
|
|
111219
111698
|
}
|
|
111220
111699
|
/**
|
|
111221
|
-
*
|
|
111222
|
-
* @param {string} workspaceId Workspace identifier
|
|
111223
|
-
* @param {string} runId
|
|
111224
|
-
* @param {*} [options] Override http request option.
|
|
111225
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111226
|
-
* @throws {RequiredError}
|
|
111227
|
-
*/
|
|
111228
|
-
async function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId, runId, options = {}, configuration) {
|
|
111229
|
-
assertParamExists$3("cancelWorkflow1", "workspaceId", workspaceId);
|
|
111230
|
-
assertParamExists$3("cancelWorkflow1", "runId", runId);
|
|
111231
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/cancel`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
111232
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111233
|
-
let baseOptions;
|
|
111234
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111235
|
-
const localVarRequestOptions = {
|
|
111236
|
-
method: "POST",
|
|
111237
|
-
...baseOptions,
|
|
111238
|
-
...options
|
|
111239
|
-
};
|
|
111240
|
-
const localVarHeaderParameter = {};
|
|
111241
|
-
setSearchParams$3(localVarUrlObj, {});
|
|
111242
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111243
|
-
localVarRequestOptions.headers = {
|
|
111244
|
-
...localVarHeaderParameter,
|
|
111245
|
-
...headersFromBaseOptions,
|
|
111246
|
-
...options.headers
|
|
111247
|
-
};
|
|
111248
|
-
return {
|
|
111249
|
-
url: toPathString$3(localVarUrlObj),
|
|
111250
|
-
options: localVarRequestOptions
|
|
111251
|
-
};
|
|
111252
|
-
}
|
|
111253
|
-
/**
|
|
111254
111700
|
* Computes change analysis for the provided execution definition.
|
|
111255
111701
|
* @summary Compute change analysis
|
|
111256
111702
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111797,43 +112243,6 @@ async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId,
|
|
|
111797
112243
|
};
|
|
111798
112244
|
}
|
|
111799
112245
|
/**
|
|
111800
|
-
*
|
|
111801
|
-
* @param {string} workspaceId Workspace identifier
|
|
111802
|
-
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
111803
|
-
* @param {*} [options] Override http request option.
|
|
111804
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111805
|
-
* @throws {RequiredError}
|
|
111806
|
-
*/
|
|
111807
|
-
async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
|
|
111808
|
-
assertParamExists$3("generateDashboardSummary1", "workspaceId", workspaceId);
|
|
111809
|
-
assertParamExists$3("generateDashboardSummary1", "dashboardSummaryRequestDto", dashboardSummaryRequestDto);
|
|
111810
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
111811
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111812
|
-
let baseOptions;
|
|
111813
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111814
|
-
const localVarRequestOptions = {
|
|
111815
|
-
method: "POST",
|
|
111816
|
-
...baseOptions,
|
|
111817
|
-
...options
|
|
111818
|
-
};
|
|
111819
|
-
const localVarHeaderParameter = {};
|
|
111820
|
-
const localVarQueryParameter = {};
|
|
111821
|
-
const consumes = ["application/json"];
|
|
111822
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
111823
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
111824
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111825
|
-
localVarRequestOptions.headers = {
|
|
111826
|
-
...localVarHeaderParameter,
|
|
111827
|
-
...headersFromBaseOptions,
|
|
111828
|
-
...options.headers
|
|
111829
|
-
};
|
|
111830
|
-
localVarRequestOptions.data = typeof dashboardSummaryRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(dashboardSummaryRequestDto !== void 0 ? dashboardSummaryRequestDto : {}) : dashboardSummaryRequestDto || "";
|
|
111831
|
-
return {
|
|
111832
|
-
url: toPathString$3(localVarUrlObj),
|
|
111833
|
-
options: localVarRequestOptions
|
|
111834
|
-
};
|
|
111835
|
-
}
|
|
111836
|
-
/**
|
|
111837
112246
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
111838
112247
|
* @summary Generate Description for Analytics Object
|
|
111839
112248
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111872,43 +112281,6 @@ async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId, gene
|
|
|
111872
112281
|
};
|
|
111873
112282
|
}
|
|
111874
112283
|
/**
|
|
111875
|
-
*
|
|
111876
|
-
* @param {string} workspaceId Workspace identifier
|
|
111877
|
-
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
111878
|
-
* @param {*} [options] Override http request option.
|
|
111879
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111880
|
-
* @throws {RequiredError}
|
|
111881
|
-
*/
|
|
111882
|
-
async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
|
|
111883
|
-
assertParamExists$3("generateKnowledgeRecommendations", "workspaceId", workspaceId);
|
|
111884
|
-
assertParamExists$3("generateKnowledgeRecommendations", "knowledgeRecommendationsRequestDto", knowledgeRecommendationsRequestDto);
|
|
111885
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
111886
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111887
|
-
let baseOptions;
|
|
111888
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111889
|
-
const localVarRequestOptions = {
|
|
111890
|
-
method: "POST",
|
|
111891
|
-
...baseOptions,
|
|
111892
|
-
...options
|
|
111893
|
-
};
|
|
111894
|
-
const localVarHeaderParameter = {};
|
|
111895
|
-
const localVarQueryParameter = {};
|
|
111896
|
-
const consumes = ["application/json"];
|
|
111897
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
111898
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
111899
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111900
|
-
localVarRequestOptions.headers = {
|
|
111901
|
-
...localVarHeaderParameter,
|
|
111902
|
-
...headersFromBaseOptions,
|
|
111903
|
-
...options.headers
|
|
111904
|
-
};
|
|
111905
|
-
localVarRequestOptions.data = typeof knowledgeRecommendationsRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(knowledgeRecommendationsRequestDto !== void 0 ? knowledgeRecommendationsRequestDto : {}) : knowledgeRecommendationsRequestDto || "";
|
|
111906
|
-
return {
|
|
111907
|
-
url: toPathString$3(localVarUrlObj),
|
|
111908
|
-
options: localVarRequestOptions
|
|
111909
|
-
};
|
|
111910
|
-
}
|
|
111911
|
-
/**
|
|
111912
112284
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
111913
112285
|
* @summary Generate Title for Analytics Object
|
|
111914
112286
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -112046,39 +112418,6 @@ async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId, runId,
|
|
|
112046
112418
|
};
|
|
112047
112419
|
}
|
|
112048
112420
|
/**
|
|
112049
|
-
*
|
|
112050
|
-
* @param {string} workspaceId Workspace identifier
|
|
112051
|
-
* @param {string} runId
|
|
112052
|
-
* @param {*} [options] Override http request option.
|
|
112053
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112054
|
-
* @throws {RequiredError}
|
|
112055
|
-
*/
|
|
112056
|
-
async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
|
|
112057
|
-
assertParamExists$3("getWorkflowStatus1", "workspaceId", workspaceId);
|
|
112058
|
-
assertParamExists$3("getWorkflowStatus1", "runId", runId);
|
|
112059
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
112060
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
112061
|
-
let baseOptions;
|
|
112062
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
112063
|
-
const localVarRequestOptions = {
|
|
112064
|
-
method: "GET",
|
|
112065
|
-
...baseOptions,
|
|
112066
|
-
...options
|
|
112067
|
-
};
|
|
112068
|
-
const localVarHeaderParameter = {};
|
|
112069
|
-
setSearchParams$3(localVarUrlObj, {});
|
|
112070
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
112071
|
-
localVarRequestOptions.headers = {
|
|
112072
|
-
...localVarHeaderParameter,
|
|
112073
|
-
...headersFromBaseOptions,
|
|
112074
|
-
...options.headers
|
|
112075
|
-
};
|
|
112076
|
-
return {
|
|
112077
|
-
url: toPathString$3(localVarUrlObj),
|
|
112078
|
-
options: localVarRequestOptions
|
|
112079
|
-
};
|
|
112080
|
-
}
|
|
112081
|
-
/**
|
|
112082
112421
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
112083
112422
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
112084
112423
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -112682,45 +113021,6 @@ async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(works
|
|
|
112682
113021
|
};
|
|
112683
113022
|
}
|
|
112684
113023
|
/**
|
|
112685
|
-
*
|
|
112686
|
-
* @param {string} workspaceId Workspace identifier
|
|
112687
|
-
* @param {string} runId
|
|
112688
|
-
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
112689
|
-
* @param {*} [options] Override http request option.
|
|
112690
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112691
|
-
* @throws {RequiredError}
|
|
112692
|
-
*/
|
|
112693
|
-
async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
|
|
112694
|
-
assertParamExists$3("userFeedback", "workspaceId", workspaceId);
|
|
112695
|
-
assertParamExists$3("userFeedback", "runId", runId);
|
|
112696
|
-
assertParamExists$3("userFeedback", "feedbackRequestDto", feedbackRequestDto);
|
|
112697
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
112698
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
112699
|
-
let baseOptions;
|
|
112700
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
112701
|
-
const localVarRequestOptions = {
|
|
112702
|
-
method: "POST",
|
|
112703
|
-
...baseOptions,
|
|
112704
|
-
...options
|
|
112705
|
-
};
|
|
112706
|
-
const localVarHeaderParameter = {};
|
|
112707
|
-
const localVarQueryParameter = {};
|
|
112708
|
-
const consumes = ["application/json"];
|
|
112709
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
112710
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
112711
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
112712
|
-
localVarRequestOptions.headers = {
|
|
112713
|
-
...localVarHeaderParameter,
|
|
112714
|
-
...headersFromBaseOptions,
|
|
112715
|
-
...options.headers
|
|
112716
|
-
};
|
|
112717
|
-
localVarRequestOptions.data = typeof feedbackRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(feedbackRequestDto !== void 0 ? feedbackRequestDto : {}) : feedbackRequestDto || "";
|
|
112718
|
-
return {
|
|
112719
|
-
url: toPathString$3(localVarUrlObj),
|
|
112720
|
-
options: localVarRequestOptions
|
|
112721
|
-
};
|
|
112722
|
-
}
|
|
112723
|
-
/**
|
|
112724
113024
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
112725
113025
|
* @summary Validate LLM Endpoint (Removed)
|
|
112726
113026
|
* @param {*} [options] Override http request option.
|
|
@@ -112898,18 +113198,6 @@ async function ActionsApi_CancelWorkflow(axios, basePath, requestParameters, opt
|
|
|
112898
113198
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_CancelWorkflow(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112899
113199
|
}
|
|
112900
113200
|
/**
|
|
112901
|
-
*
|
|
112902
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
112903
|
-
* @param {string} basePath Base path.
|
|
112904
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
112905
|
-
* @param {*} [options] Override http request option.
|
|
112906
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112907
|
-
* @throws {RequiredError}
|
|
112908
|
-
*/
|
|
112909
|
-
async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
|
|
112910
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112911
|
-
}
|
|
112912
|
-
/**
|
|
112913
113201
|
* Computes change analysis for the provided execution definition.
|
|
112914
113202
|
* @summary Compute change analysis
|
|
112915
113203
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113091,18 +113379,6 @@ async function ActionsApi_GenerateDashboardSummary(axios, basePath, requestParam
|
|
|
113091
113379
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDashboardSummary(requestParameters.workspaceId, requestParameters.workflowDashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113092
113380
|
}
|
|
113093
113381
|
/**
|
|
113094
|
-
*
|
|
113095
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113096
|
-
* @param {string} basePath Base path.
|
|
113097
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
113098
|
-
* @param {*} [options] Override http request option.
|
|
113099
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113100
|
-
* @throws {RequiredError}
|
|
113101
|
-
*/
|
|
113102
|
-
async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
|
|
113103
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113104
|
-
}
|
|
113105
|
-
/**
|
|
113106
113382
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
113107
113383
|
* @summary Generate Description for Analytics Object
|
|
113108
113384
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113116,18 +113392,6 @@ async function ActionsApi_GenerateDescription(axios, basePath, requestParameters
|
|
|
113116
113392
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDescription(requestParameters.workspaceId, requestParameters.generateDescriptionRequest, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113117
113393
|
}
|
|
113118
113394
|
/**
|
|
113119
|
-
*
|
|
113120
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113121
|
-
* @param {string} basePath Base path.
|
|
113122
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
113123
|
-
* @param {*} [options] Override http request option.
|
|
113124
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113125
|
-
* @throws {RequiredError}
|
|
113126
|
-
*/
|
|
113127
|
-
async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
|
|
113128
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113129
|
-
}
|
|
113130
|
-
/**
|
|
113131
113395
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
113132
113396
|
* @summary Generate Title for Analytics Object
|
|
113133
113397
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113179,18 +113443,6 @@ async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParameters,
|
|
|
113179
113443
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GetWorkflowStatus(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113180
113444
|
}
|
|
113181
113445
|
/**
|
|
113182
|
-
*
|
|
113183
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113184
|
-
* @param {string} basePath Base path.
|
|
113185
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
113186
|
-
* @param {*} [options] Override http request option.
|
|
113187
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113188
|
-
* @throws {RequiredError}
|
|
113189
|
-
*/
|
|
113190
|
-
async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
|
|
113191
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113192
|
-
}
|
|
113193
|
-
/**
|
|
113194
113446
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
113195
113447
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
113196
113448
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113412,18 +113664,6 @@ async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath, reque
|
|
|
113412
113664
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113413
113665
|
}
|
|
113414
113666
|
/**
|
|
113415
|
-
*
|
|
113416
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113417
|
-
* @param {string} basePath Base path.
|
|
113418
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
113419
|
-
* @param {*} [options] Override http request option.
|
|
113420
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113421
|
-
* @throws {RequiredError}
|
|
113422
|
-
*/
|
|
113423
|
-
async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
|
|
113424
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113425
|
-
}
|
|
113426
|
-
/**
|
|
113427
113667
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
113428
113668
|
* @summary Validate LLM Endpoint (Removed)
|
|
113429
113669
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113556,16 +113796,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113556
113796
|
return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113557
113797
|
}
|
|
113558
113798
|
/**
|
|
113559
|
-
*
|
|
113560
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
113561
|
-
* @param {*} [options] Override http request option.
|
|
113562
|
-
* @throws {RequiredError}
|
|
113563
|
-
* @memberof ActionsApi
|
|
113564
|
-
*/
|
|
113565
|
-
cancelWorkflow1(requestParameters, options) {
|
|
113566
|
-
return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113567
|
-
}
|
|
113568
|
-
/**
|
|
113569
113799
|
* Computes change analysis for the provided execution definition.
|
|
113570
113800
|
* @summary Compute change analysis
|
|
113571
113801
|
* @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
|
|
@@ -113719,16 +113949,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113719
113949
|
return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113720
113950
|
}
|
|
113721
113951
|
/**
|
|
113722
|
-
*
|
|
113723
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
113724
|
-
* @param {*} [options] Override http request option.
|
|
113725
|
-
* @throws {RequiredError}
|
|
113726
|
-
* @memberof ActionsApi
|
|
113727
|
-
*/
|
|
113728
|
-
generateDashboardSummary1(requestParameters, options) {
|
|
113729
|
-
return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113730
|
-
}
|
|
113731
|
-
/**
|
|
113732
113952
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
113733
113953
|
* @summary Generate Description for Analytics Object
|
|
113734
113954
|
* @param {ActionsApiGenerateDescriptionRequest} requestParameters Request parameters.
|
|
@@ -113740,16 +113960,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113740
113960
|
return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113741
113961
|
}
|
|
113742
113962
|
/**
|
|
113743
|
-
*
|
|
113744
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
113745
|
-
* @param {*} [options] Override http request option.
|
|
113746
|
-
* @throws {RequiredError}
|
|
113747
|
-
* @memberof ActionsApi
|
|
113748
|
-
*/
|
|
113749
|
-
generateKnowledgeRecommendations(requestParameters, options) {
|
|
113750
|
-
return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113751
|
-
}
|
|
113752
|
-
/**
|
|
113753
113963
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
113754
113964
|
* @summary Generate Title for Analytics Object
|
|
113755
113965
|
* @param {ActionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
@@ -113793,16 +114003,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113793
114003
|
return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113794
114004
|
}
|
|
113795
114005
|
/**
|
|
113796
|
-
*
|
|
113797
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
113798
|
-
* @param {*} [options] Override http request option.
|
|
113799
|
-
* @throws {RequiredError}
|
|
113800
|
-
* @memberof ActionsApi
|
|
113801
|
-
*/
|
|
113802
|
-
getWorkflowStatus1(requestParameters, options) {
|
|
113803
|
-
return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113804
|
-
}
|
|
113805
|
-
/**
|
|
113806
114006
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
113807
114007
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
113808
114008
|
* @param {ActionsApiKeyDriverAnalysisRequest} requestParameters Request parameters.
|
|
@@ -113991,16 +114191,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113991
114191
|
return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113992
114192
|
}
|
|
113993
114193
|
/**
|
|
113994
|
-
*
|
|
113995
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
113996
|
-
* @param {*} [options] Override http request option.
|
|
113997
|
-
* @throws {RequiredError}
|
|
113998
|
-
* @memberof ActionsApi
|
|
113999
|
-
*/
|
|
114000
|
-
userFeedback(requestParameters, options) {
|
|
114001
|
-
return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
114002
|
-
}
|
|
114003
|
-
/**
|
|
114004
114194
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
114005
114195
|
* @summary Validate LLM Endpoint (Removed)
|
|
114006
114196
|
* @param {*} [options] Override http request option.
|
|
@@ -131990,7 +132180,7 @@ var require_connection$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
131990
132180
|
const toCancel = messageQueue.get(key);
|
|
131991
132181
|
if (messages_1.Message.isRequest(toCancel)) {
|
|
131992
132182
|
const strategy = options?.connectionStrategy;
|
|
131993
|
-
const response = strategy && strategy.cancelUndispatched ? strategy.cancelUndispatched(toCancel, cancelUndispatched) :
|
|
132183
|
+
const response = strategy && strategy.cancelUndispatched ? strategy.cancelUndispatched(toCancel, cancelUndispatched) : void 0;
|
|
131994
132184
|
if (response && (response.error !== void 0 || response.result !== void 0)) {
|
|
131995
132185
|
messageQueue.delete(key);
|
|
131996
132186
|
requestTokens.delete(cancelId);
|
|
@@ -134036,6 +134226,10 @@ var require_main$2 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
134036
134226
|
} else this._workspaceEdit = {};
|
|
134037
134227
|
}
|
|
134038
134228
|
Object.defineProperty(WorkspaceChange.prototype, "edit", {
|
|
134229
|
+
/**
|
|
134230
|
+
* Returns the underlying {@link WorkspaceEdit} literal
|
|
134231
|
+
* use to be returned from a workspace edit operation like rename.
|
|
134232
|
+
*/
|
|
134039
134233
|
get: function() {
|
|
134040
134234
|
this.initDocumentChanges();
|
|
134041
134235
|
if (this._changeAnnotations !== void 0) if (this._changeAnnotations.size === 0) this._workspaceEdit.changeAnnotations = void 0;
|
|
@@ -138898,13 +139092,6 @@ var require_main = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
138898
139092
|
Files.resolve = fm.resolve;
|
|
138899
139093
|
Files.resolveModulePath = fm.resolveModulePath;
|
|
138900
139094
|
})(exports.Files || (exports.Files = {}));
|
|
138901
|
-
let _protocolConnection;
|
|
138902
|
-
function endProtocolConnection() {
|
|
138903
|
-
if (_protocolConnection === void 0) return;
|
|
138904
|
-
try {
|
|
138905
|
-
_protocolConnection.end();
|
|
138906
|
-
} catch (_err) {}
|
|
138907
|
-
}
|
|
138908
139095
|
let _shutdownReceived = false;
|
|
138909
139096
|
let exitTimer = void 0;
|
|
138910
139097
|
function setupExitTimer() {
|
|
@@ -138916,7 +139103,6 @@ var require_main = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
138916
139103
|
try {
|
|
138917
139104
|
process.kill(processId, 0);
|
|
138918
139105
|
} catch (ex) {
|
|
138919
|
-
endProtocolConnection();
|
|
138920
139106
|
process.exit(_shutdownReceived ? 0 : 1);
|
|
138921
139107
|
}
|
|
138922
139108
|
}, 3e3);
|
|
@@ -138952,7 +139138,6 @@ var require_main = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
138952
139138
|
_shutdownReceived = value;
|
|
138953
139139
|
},
|
|
138954
139140
|
exit: (code) => {
|
|
138955
|
-
endProtocolConnection();
|
|
138956
139141
|
process.exit(code);
|
|
138957
139142
|
}
|
|
138958
139143
|
};
|
|
@@ -139024,11 +139209,9 @@ var require_main = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
139024
139209
|
if (Is.func(input.read) && Is.func(input.on)) {
|
|
139025
139210
|
let inputStream = input;
|
|
139026
139211
|
inputStream.on("end", () => {
|
|
139027
|
-
endProtocolConnection();
|
|
139028
139212
|
process.exit(_shutdownReceived ? 0 : 1);
|
|
139029
139213
|
});
|
|
139030
139214
|
inputStream.on("close", () => {
|
|
139031
|
-
endProtocolConnection();
|
|
139032
139215
|
process.exit(_shutdownReceived ? 0 : 1);
|
|
139033
139216
|
});
|
|
139034
139217
|
}
|
|
@@ -139906,7 +140089,8 @@ var require_Array2DHashSet = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
139906
140089
|
expand() {
|
|
139907
140090
|
let old = this.buckets;
|
|
139908
140091
|
let newCapacity = this.buckets.length * 2;
|
|
139909
|
-
|
|
140092
|
+
let newTable = this.createBuckets(newCapacity);
|
|
140093
|
+
this.buckets = newTable;
|
|
139910
140094
|
this.threshold = Math.floor(newCapacity * LOAD_FACTOR);
|
|
139911
140095
|
let oldSize = this.size;
|
|
139912
140096
|
for (let bucket of old) {
|
|
@@ -141038,7 +141222,7 @@ var require_Interval = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
141038
141222
|
}
|
|
141039
141223
|
};
|
|
141040
141224
|
Interval._INVALID = new Interval(-1, -2);
|
|
141041
|
-
Interval.cache = new Array(
|
|
141225
|
+
Interval.cache = new Array(1001);
|
|
141042
141226
|
__decorate([Decorators_1.Override], Interval.prototype, "equals", null);
|
|
141043
141227
|
__decorate([Decorators_1.Override], Interval.prototype, "hashCode", null);
|
|
141044
141228
|
__decorate([Decorators_1.Override], Interval.prototype, "toString", null);
|
|
@@ -142323,7 +142507,7 @@ var require_ATNConfig = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
142323
142507
|
}
|
|
142324
142508
|
set isPrecedenceFilterSuppressed(value) {
|
|
142325
142509
|
if (value) this.altAndOuterContextDepth |= SUPPRESS_PRECEDENCE_FILTER;
|
|
142326
|
-
else this.altAndOuterContextDepth &=
|
|
142510
|
+
else this.altAndOuterContextDepth &= 2147483647;
|
|
142327
142511
|
}
|
|
142328
142512
|
/** An ATN configuration is equal to another if both have
|
|
142329
142513
|
* the same state, they predict the same alternative, and
|
|
@@ -143533,7 +143717,7 @@ var require_ATNSimulator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
143533
143717
|
__decorate([Decorators_1.NotNull], ATNSimulator, "ERROR", null);
|
|
143534
143718
|
ATNSimulator = __decorate([__param(0, Decorators_1.NotNull)], ATNSimulator);
|
|
143535
143719
|
exports.ATNSimulator = ATNSimulator;
|
|
143536
|
-
|
|
143720
|
+
ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {});
|
|
143537
143721
|
exports.ATNSimulator = ATNSimulator;
|
|
143538
143722
|
}));
|
|
143539
143723
|
//#endregion
|
|
@@ -152601,7 +152785,8 @@ var require_ParserInterpreter = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
152601
152785
|
this.unrollRecursionContexts(parentContext[0]);
|
|
152602
152786
|
this.state = parentContext[1];
|
|
152603
152787
|
} else this.exitRule();
|
|
152604
|
-
|
|
152788
|
+
let ruleTransition = this._atn.states[this.state].transition(0);
|
|
152789
|
+
this.state = ruleTransition.followState.stateNumber;
|
|
152605
152790
|
}
|
|
152606
152791
|
/** Override this parser interpreters normal decision-making process
|
|
152607
152792
|
* at a particular decision and input token index. Instead of
|
|
@@ -168999,7 +169184,8 @@ function stackSet(key, value) {
|
|
|
168999
169184
|
* @param {Array} [entries] The key-value pairs to cache.
|
|
169000
169185
|
*/
|
|
169001
169186
|
function Stack$1(entries) {
|
|
169002
|
-
|
|
169187
|
+
var data = this.__data__ = new ListCache(entries);
|
|
169188
|
+
this.size = data.size;
|
|
169003
169189
|
}
|
|
169004
169190
|
Stack$1.prototype.clear = stackClear;
|
|
169005
169191
|
Stack$1.prototype["delete"] = stackDelete;
|
|
@@ -172232,7 +172418,10 @@ var MaqlQuery = class {
|
|
|
172232
172418
|
return this._tree;
|
|
172233
172419
|
}
|
|
172234
172420
|
get ast() {
|
|
172235
|
-
if (!this._ast)
|
|
172421
|
+
if (!this._ast) {
|
|
172422
|
+
const maqlAstVisitor = new MaqlAstVisitor("", this.tokenStream);
|
|
172423
|
+
this._ast = maqlAstVisitor.visit(this.tree);
|
|
172424
|
+
}
|
|
172236
172425
|
return this._ast;
|
|
172237
172426
|
}
|
|
172238
172427
|
_lexer;
|
|
@@ -172242,7 +172431,8 @@ var MaqlQuery = class {
|
|
|
172242
172431
|
_ast;
|
|
172243
172432
|
constructor(raw) {
|
|
172244
172433
|
this.raw = raw;
|
|
172245
|
-
|
|
172434
|
+
const charStream = new CaseInsensitiveCharStream(raw);
|
|
172435
|
+
this._lexer = new MaqlLexer$3(charStream);
|
|
172246
172436
|
this._tokenStream = new import_antlr4ts.CommonTokenStream(this._lexer);
|
|
172247
172437
|
this._parser = new MaqlParser$5(this._tokenStream);
|
|
172248
172438
|
}
|
|
@@ -178533,9 +178723,28 @@ var require_web_outgoing = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
178533
178723
|
* flexible.
|
|
178534
178724
|
*/
|
|
178535
178725
|
module.exports = {
|
|
178726
|
+
/**
|
|
178727
|
+
* If is a HTTP 1.0 request, remove chunk headers
|
|
178728
|
+
*
|
|
178729
|
+
* @param {ClientRequest} Req Request object
|
|
178730
|
+
* @param {IncomingMessage} Res Response object
|
|
178731
|
+
* @param {proxyResponse} Res Response object from the proxy request
|
|
178732
|
+
*
|
|
178733
|
+
* @api private
|
|
178734
|
+
*/
|
|
178536
178735
|
removeChunked: function removeChunked(req, res, proxyRes) {
|
|
178537
178736
|
if (req.httpVersion === "1.0") delete proxyRes.headers["transfer-encoding"];
|
|
178538
178737
|
},
|
|
178738
|
+
/**
|
|
178739
|
+
* If is a HTTP 1.0 request, set the correct connection header
|
|
178740
|
+
* or if connection header not present, then use `keep-alive`
|
|
178741
|
+
*
|
|
178742
|
+
* @param {ClientRequest} Req Request object
|
|
178743
|
+
* @param {IncomingMessage} Res Response object
|
|
178744
|
+
* @param {proxyResponse} Res Response object from the proxy request
|
|
178745
|
+
*
|
|
178746
|
+
* @api private
|
|
178747
|
+
*/
|
|
178539
178748
|
setConnection: function setConnection(req, res, proxyRes) {
|
|
178540
178749
|
if (req.httpVersion === "1.0") proxyRes.headers.connection = req.headers.connection || "close";
|
|
178541
178750
|
else if (req.httpVersion !== "2.0" && !proxyRes.headers.connection) proxyRes.headers.connection = req.headers.connection || "keep-alive";
|
|
@@ -178551,6 +178760,17 @@ var require_web_outgoing = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
178551
178760
|
proxyRes.headers["location"] = u.format();
|
|
178552
178761
|
}
|
|
178553
178762
|
},
|
|
178763
|
+
/**
|
|
178764
|
+
* Copy headers from proxyResponse to response
|
|
178765
|
+
* set each header in response object.
|
|
178766
|
+
*
|
|
178767
|
+
* @param {ClientRequest} Req Request object
|
|
178768
|
+
* @param {IncomingMessage} Res Response object
|
|
178769
|
+
* @param {proxyResponse} Res Response object from the proxy request
|
|
178770
|
+
* @param {Object} Options options.cookieDomainRewrite: Config to rewrite cookie domain
|
|
178771
|
+
*
|
|
178772
|
+
* @api private
|
|
178773
|
+
*/
|
|
178554
178774
|
writeHeaders: function writeHeaders(req, res, proxyRes, options) {
|
|
178555
178775
|
var rewriteCookieDomainConfig = options.cookieDomainRewrite, rewriteCookiePathConfig = options.cookiePathRewrite, preserveHeaderKeyCase = options.preserveHeaderKeyCase, rawHeaderKeyMap, setHeader = function(key, header) {
|
|
178556
178776
|
if (header == void 0) return;
|
|
@@ -178573,6 +178793,15 @@ var require_web_outgoing = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
178573
178793
|
setHeader(key, header);
|
|
178574
178794
|
});
|
|
178575
178795
|
},
|
|
178796
|
+
/**
|
|
178797
|
+
* Set the statusCode from the proxyResponse
|
|
178798
|
+
*
|
|
178799
|
+
* @param {ClientRequest} Req Request object
|
|
178800
|
+
* @param {IncomingMessage} Res Response object
|
|
178801
|
+
* @param {proxyResponse} Res Response object from the proxy request
|
|
178802
|
+
*
|
|
178803
|
+
* @api private
|
|
178804
|
+
*/
|
|
178576
178805
|
writeStatusCode: function writeStatusCode(req, res, proxyRes) {
|
|
178577
178806
|
if (proxyRes.statusMessage) {
|
|
178578
178807
|
res.statusCode = proxyRes.statusCode;
|
|
@@ -179853,15 +180082,42 @@ var require_web_incoming = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
179853
180082
|
* flexible.
|
|
179854
180083
|
*/
|
|
179855
180084
|
module.exports = {
|
|
180085
|
+
/**
|
|
180086
|
+
* Sets `content-length` to '0' if request is of DELETE type.
|
|
180087
|
+
*
|
|
180088
|
+
* @param {ClientRequest} Req Request object
|
|
180089
|
+
* @param {IncomingMessage} Res Response object
|
|
180090
|
+
* @param {Object} Options Config object passed to the proxy
|
|
180091
|
+
*
|
|
180092
|
+
* @api private
|
|
180093
|
+
*/
|
|
179856
180094
|
deleteLength: function deleteLength(req, res, options) {
|
|
179857
180095
|
if ((req.method === "DELETE" || req.method === "OPTIONS") && !req.headers["content-length"]) {
|
|
179858
180096
|
req.headers["content-length"] = "0";
|
|
179859
180097
|
delete req.headers["transfer-encoding"];
|
|
179860
180098
|
}
|
|
179861
180099
|
},
|
|
180100
|
+
/**
|
|
180101
|
+
* Sets timeout in request socket if it was specified in options.
|
|
180102
|
+
*
|
|
180103
|
+
* @param {ClientRequest} Req Request object
|
|
180104
|
+
* @param {IncomingMessage} Res Response object
|
|
180105
|
+
* @param {Object} Options Config object passed to the proxy
|
|
180106
|
+
*
|
|
180107
|
+
* @api private
|
|
180108
|
+
*/
|
|
179862
180109
|
timeout: function timeout(req, res, options) {
|
|
179863
180110
|
if (options.timeout) req.socket.setTimeout(options.timeout);
|
|
179864
180111
|
},
|
|
180112
|
+
/**
|
|
180113
|
+
* Sets `x-forwarded-*` headers if specified in config.
|
|
180114
|
+
*
|
|
180115
|
+
* @param {ClientRequest} Req Request object
|
|
180116
|
+
* @param {IncomingMessage} Res Response object
|
|
180117
|
+
* @param {Object} Options Config object passed to the proxy
|
|
180118
|
+
*
|
|
180119
|
+
* @api private
|
|
180120
|
+
*/
|
|
179865
180121
|
XHeaders: function XHeaders(req, res, options) {
|
|
179866
180122
|
if (!options.xfwd) return;
|
|
179867
180123
|
var encrypted = req.isSpdy || common$1.hasEncryptedConnection(req);
|
|
@@ -179879,6 +180135,17 @@ var require_web_incoming = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
179879
180135
|
});
|
|
179880
180136
|
req.headers["x-forwarded-host"] = req.headers["x-forwarded-host"] || req.headers["host"] || "";
|
|
179881
180137
|
},
|
|
180138
|
+
/**
|
|
180139
|
+
* Does the actual proxying. If `forward` is enabled fires up
|
|
180140
|
+
* a ForwardStream, same happens for ProxyStream. The request
|
|
180141
|
+
* just dies otherwise.
|
|
180142
|
+
*
|
|
180143
|
+
* @param {ClientRequest} Req Request object
|
|
180144
|
+
* @param {IncomingMessage} Res Response object
|
|
180145
|
+
* @param {Object} Options Config object passed to the proxy
|
|
180146
|
+
*
|
|
180147
|
+
* @api private
|
|
180148
|
+
*/
|
|
179882
180149
|
stream: function stream(req, res, options, _, server, clb) {
|
|
179883
180150
|
server.emit("start", req, res, options.target || options.forward);
|
|
179884
180151
|
var agents = options.followRedirects ? followRedirects : nativeAgents;
|
|
@@ -179943,6 +180210,15 @@ var require_ws_incoming = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
179943
180210
|
* flexible.
|
|
179944
180211
|
*/
|
|
179945
180212
|
module.exports = {
|
|
180213
|
+
/**
|
|
180214
|
+
* WebSocket requests must have the `GET` method and
|
|
180215
|
+
* the `upgrade:websocket` header
|
|
180216
|
+
*
|
|
180217
|
+
* @param {ClientRequest} Req Request object
|
|
180218
|
+
* @param {Socket} Websocket
|
|
180219
|
+
*
|
|
180220
|
+
* @api private
|
|
180221
|
+
*/
|
|
179946
180222
|
checkMethodAndHeader: function checkMethodAndHeader(req, socket) {
|
|
179947
180223
|
if (req.method !== "GET" || !req.headers.upgrade) {
|
|
179948
180224
|
socket.destroy();
|
|
@@ -179953,6 +180229,15 @@ var require_ws_incoming = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
179953
180229
|
return true;
|
|
179954
180230
|
}
|
|
179955
180231
|
},
|
|
180232
|
+
/**
|
|
180233
|
+
* Sets `x-forwarded-*` headers if specified in config.
|
|
180234
|
+
*
|
|
180235
|
+
* @param {ClientRequest} Req Request object
|
|
180236
|
+
* @param {Socket} Websocket
|
|
180237
|
+
* @param {Object} Options Config object passed to the proxy
|
|
180238
|
+
*
|
|
180239
|
+
* @api private
|
|
180240
|
+
*/
|
|
179956
180241
|
XHeaders: function XHeaders(req, socket, options) {
|
|
179957
180242
|
if (!options.xfwd) return;
|
|
179958
180243
|
var values = {
|
|
@@ -179968,6 +180253,16 @@ var require_ws_incoming = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
179968
180253
|
req.headers["x-forwarded-" + header] = (req.headers["x-forwarded-" + header] || "") + (req.headers["x-forwarded-" + header] ? "," : "") + values[header];
|
|
179969
180254
|
});
|
|
179970
180255
|
},
|
|
180256
|
+
/**
|
|
180257
|
+
* Does the actual proxying. Make the request and upgrade it
|
|
180258
|
+
* send the Switching Protocols request and pipe the sockets.
|
|
180259
|
+
*
|
|
180260
|
+
* @param {ClientRequest} Req Request object
|
|
180261
|
+
* @param {Socket} Websocket
|
|
180262
|
+
* @param {Object} Options Config object passed to the proxy
|
|
180263
|
+
*
|
|
180264
|
+
* @api private
|
|
180265
|
+
*/
|
|
179971
180266
|
stream: function stream(req, socket, options, head, server, clb) {
|
|
179972
180267
|
var createHttpHeader = function(line, headers) {
|
|
179973
180268
|
return Object.keys(headers).reduce(function(head, key) {
|
|
@@ -180711,7 +181006,10 @@ var ClientColors = class {
|
|
|
180711
181006
|
*/
|
|
180712
181007
|
constructor(resultColors) {
|
|
180713
181008
|
if (resultColors.customColor) this.color = resultColors.customColor.startsWith("#") ? resultColors.customColor : "#" + resultColors.customColor;
|
|
180714
|
-
if (resultColors.color)
|
|
181009
|
+
if (resultColors.color) {
|
|
181010
|
+
const usedColor = colorNameMap[resultColors.color] ? colorNameMap[resultColors.color] : void 0;
|
|
181011
|
+
this.color = usedColor;
|
|
181012
|
+
}
|
|
180715
181013
|
if (resultColors.customBgColor) this.backgroundColor = resultColors.customBgColor.startsWith("#") ? resultColors.customBgColor : "#" + resultColors.customBgColor;
|
|
180716
181014
|
}
|
|
180717
181015
|
};
|
|
@@ -185549,8 +185847,8 @@ const justDots = new Set(["..", "."]);
|
|
|
185549
185847
|
const reSpecials = /* @__PURE__ */ new Set("().*{}+?[]^$\\!");
|
|
185550
185848
|
const regExpEscape$1 = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
|
|
185551
185849
|
const qmark = "[^/]";
|
|
185552
|
-
const star$1 =
|
|
185553
|
-
const starNoEmpty =
|
|
185850
|
+
const star$1 = "[^/]*?";
|
|
185851
|
+
const starNoEmpty = "[^/]+?";
|
|
185554
185852
|
var AST = class AST {
|
|
185555
185853
|
type;
|
|
185556
185854
|
#root;
|
|
@@ -185825,7 +186123,7 @@ var AST = class AST {
|
|
|
185825
186123
|
let final = "";
|
|
185826
186124
|
if (this.type === "!" && this.#emptyExt) final = (this.isStart() && !this.#options.dot ? startNoDot : "") + starNoEmpty;
|
|
185827
186125
|
else {
|
|
185828
|
-
const close = this.type === "!" ? "))" + (this.isStart() && !this.#options.dot ? startNoDot : "") +
|
|
186126
|
+
const close = this.type === "!" ? "))" + (this.isStart() && !this.#options.dot ? startNoDot : "") + "[^/]*?)" : this.type === "@" ? ")" : `)${this.type}`;
|
|
185829
186127
|
final = start + body + close;
|
|
185830
186128
|
}
|
|
185831
186129
|
return [
|
|
@@ -193656,7 +193954,7 @@ async function get(state, opts) {
|
|
|
193656
193954
|
//#endregion
|
|
193657
193955
|
//#region ../code/package.json
|
|
193658
193956
|
var name = "@gooddata/code";
|
|
193659
|
-
var version = "0.36.0-alpha.
|
|
193957
|
+
var version = "0.36.0-alpha.4";
|
|
193660
193958
|
//#endregion
|
|
193661
193959
|
//#region ../code/esm/actions/initialize.js
|
|
193662
193960
|
async function initialize(state, emitter, options) {
|
|
@@ -194679,8 +194977,7 @@ let LOG_LEVEL = /* @__PURE__ */ function(LOG_LEVEL) {
|
|
|
194679
194977
|
LOG_LEVEL[LOG_LEVEL["debug"] = 5] = "debug";
|
|
194680
194978
|
return LOG_LEVEL;
|
|
194681
194979
|
}({});
|
|
194682
|
-
|
|
194683
|
-
let applicationLogLevel = DEFAULT_LOG_LEVEL;
|
|
194980
|
+
let applicationLogLevel = 2;
|
|
194684
194981
|
const setLogLevel = (logLevel) => {
|
|
194685
194982
|
applicationLogLevel = logLevel;
|
|
194686
194983
|
};
|
|
@@ -194702,16 +194999,15 @@ const logger = (logLevel) => (...messages) => {
|
|
|
194702
194999
|
case void 0:
|
|
194703
195000
|
written = write(process.stderr, messages);
|
|
194704
195001
|
break;
|
|
194705
|
-
case
|
|
195002
|
+
case 0:
|
|
194706
195003
|
written = write(process.stderr, messages, "[e] ", chalk.red);
|
|
194707
195004
|
break;
|
|
194708
|
-
case
|
|
195005
|
+
case 1:
|
|
194709
195006
|
written = write(process.stdout, messages, "[w] ", chalk.yellow);
|
|
194710
195007
|
break;
|
|
194711
|
-
case
|
|
195008
|
+
case 5:
|
|
194712
195009
|
written = write(process.stdout, messages, "[d] ", chalk.grey);
|
|
194713
195010
|
break;
|
|
194714
|
-
case LOG_LEVEL.info:
|
|
194715
195011
|
default:
|
|
194716
195012
|
written = write(process.stdout, messages);
|
|
194717
195013
|
break;
|
|
@@ -194719,10 +195015,10 @@ const logger = (logLevel) => (...messages) => {
|
|
|
194719
195015
|
continueLoader();
|
|
194720
195016
|
return written;
|
|
194721
195017
|
};
|
|
194722
|
-
const error = logger(
|
|
194723
|
-
const warn = logger(
|
|
194724
|
-
const info = logger(
|
|
194725
|
-
const debug = logger(
|
|
195018
|
+
const error = logger(0);
|
|
195019
|
+
const warn = logger(1);
|
|
195020
|
+
const info = logger(2);
|
|
195021
|
+
const debug = logger(5);
|
|
194726
195022
|
const empty = logger();
|
|
194727
195023
|
let interval;
|
|
194728
195024
|
let frame = 0;
|
|
@@ -194742,7 +195038,7 @@ const spins = [
|
|
|
194742
195038
|
const timing = 80;
|
|
194743
195039
|
const drawLoaderFrame = (sameFrame = false) => {
|
|
194744
195040
|
if (!sameFrame) frame = frame >= spins.length - 1 ? 0 : frame + 1;
|
|
194745
|
-
if (applicationLogLevel ===
|
|
195041
|
+
if (applicationLogLevel === 0) return;
|
|
194746
195042
|
process.stdout.clearLine(0);
|
|
194747
195043
|
process.stdout.cursorTo(0);
|
|
194748
195044
|
process.stdout.write(`${chalk.blue(spins[frame])} ${message}`);
|
|
@@ -194753,7 +195049,7 @@ const drawLoaderFrame = (sameFrame = false) => {
|
|
|
194753
195049
|
* only the message will get update and animation will not get reset.
|
|
194754
195050
|
*/
|
|
194755
195051
|
const loader = (msg) => {
|
|
194756
|
-
if (applicationLogLevel ===
|
|
195052
|
+
if (applicationLogLevel === 0) return;
|
|
194757
195053
|
if (!process.stdout.isTTY) {
|
|
194758
195054
|
info(msg);
|
|
194759
195055
|
return;
|
|
@@ -194770,7 +195066,7 @@ const stopLoader = (text) => {
|
|
|
194770
195066
|
if (interval) {
|
|
194771
195067
|
clearInterval(interval);
|
|
194772
195068
|
interval = null;
|
|
194773
|
-
if (applicationLogLevel ===
|
|
195069
|
+
if (applicationLogLevel === 0) return;
|
|
194774
195070
|
process.stdout.clearLine(0);
|
|
194775
195071
|
process.stdout.cursorTo(0);
|
|
194776
195072
|
if (text !== void 0) process.stdout.write(text);
|
|
@@ -194787,7 +195083,7 @@ const cancelLoader = (text) => {
|
|
|
194787
195083
|
if (interval) {
|
|
194788
195084
|
clearInterval(interval);
|
|
194789
195085
|
interval = null;
|
|
194790
|
-
if (applicationLogLevel ===
|
|
195086
|
+
if (applicationLogLevel === 0) return;
|
|
194791
195087
|
process.stdout.clearLine(0);
|
|
194792
195088
|
process.stdout.cursorTo(0);
|
|
194793
195089
|
if (text !== void 0) process.stdout.write(text);
|
|
@@ -194805,7 +195101,7 @@ const pauseLoader = () => {
|
|
|
194805
195101
|
if (running && interval) {
|
|
194806
195102
|
clearInterval(interval);
|
|
194807
195103
|
interval = null;
|
|
194808
|
-
if (applicationLogLevel !==
|
|
195104
|
+
if (applicationLogLevel !== 0) {
|
|
194809
195105
|
process.stdout.clearLine(0);
|
|
194810
195106
|
process.stdout.cursorTo(0);
|
|
194811
195107
|
}
|
|
@@ -195010,7 +195306,7 @@ function isEmptyDiagnostics(diagnostics, relativeSourceDir) {
|
|
|
195010
195306
|
}
|
|
195011
195307
|
function resolveDiagnostics(diagnosticsResult, logLevel) {
|
|
195012
195308
|
const counters = analyzeDiagnostics(diagnosticsResult);
|
|
195013
|
-
if (logLevel ===
|
|
195309
|
+
if (logLevel === 5 || logLevel === 2) return {
|
|
195014
195310
|
valid: counters[DiagnosticSeverity$1.Error] === 0 && counters[DiagnosticSeverity$1.Warning] === 0 && counters[DiagnosticSeverity$1.Info] === 0,
|
|
195015
195311
|
counts: {
|
|
195016
195312
|
error: counters[DiagnosticSeverity$1.Error],
|
|
@@ -195018,7 +195314,7 @@ function resolveDiagnostics(diagnosticsResult, logLevel) {
|
|
|
195018
195314
|
info: counters[DiagnosticSeverity$1.Info]
|
|
195019
195315
|
}
|
|
195020
195316
|
};
|
|
195021
|
-
if (logLevel ===
|
|
195317
|
+
if (logLevel === 1) return {
|
|
195022
195318
|
valid: counters[DiagnosticSeverity$1.Error] === 0 && counters[DiagnosticSeverity$1.Warning] === 0,
|
|
195023
195319
|
counts: {
|
|
195024
195320
|
error: counters[DiagnosticSeverity$1.Error],
|
|
@@ -195203,7 +195499,7 @@ function createRemotesUrls(usedProfile) {
|
|
|
195203
195499
|
//#endregion
|
|
195204
195500
|
//#region src/commands/decorators/withLogger.ts
|
|
195205
195501
|
const withLoggerVerbosity = (cmd) => {
|
|
195206
|
-
cmd.addOption(new import_commander.Option("-l, --log-level <level>", "Log verbosity").choices(Object.values(LOG_LEVEL).filter((ll) => typeof ll === "string")).default(LOG_LEVEL[
|
|
195502
|
+
cmd.addOption(new import_commander.Option("-l, --log-level <level>", "Log verbosity").choices(Object.values(LOG_LEVEL).filter((ll) => typeof ll === "string")).default(LOG_LEVEL[2])).on("option:log-level", function() {
|
|
195207
195503
|
setLogLevel(LOG_LEVEL[this.opts().logLevel]);
|
|
195208
195504
|
});
|
|
195209
195505
|
return cmd;
|
|
@@ -196099,7 +196395,7 @@ const streamCommand = new import_commander.Command("stream").description("Stream
|
|
|
196099
196395
|
withProfile(streamCommand);
|
|
196100
196396
|
streamCommand.option("--no-validate", "Skip validation");
|
|
196101
196397
|
streamCommand.action(async ({ profile, validate }) => {
|
|
196102
|
-
setLogLevel(
|
|
196398
|
+
setLogLevel(0);
|
|
196103
196399
|
const { core, projectRoot, sourceRoot, manifestPath } = await getCoreForPath(process.cwd(), profile);
|
|
196104
196400
|
if (!await validateCall$1(core, getLogLevel(), sourceRoot, projectRoot, manifestPath, validate)) return;
|
|
196105
196401
|
const data = (await core.streamLocalWorkspace({
|