@uipath/agenthub-tool 1.202.1 → 1.203.0-preview.180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -2509,8 +2509,9 @@ class TextApiResponse {
|
|
|
2509
2509
|
// ../orchestrator-sdk/package.json
|
|
2510
2510
|
var package_default = {
|
|
2511
2511
|
name: "@uipath/orchestrator-sdk",
|
|
2512
|
+
author: "UiPath",
|
|
2512
2513
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
2513
|
-
version: "1.
|
|
2514
|
+
version: "1.203.0",
|
|
2514
2515
|
repository: {
|
|
2515
2516
|
type: "git",
|
|
2516
2517
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -36042,16 +36043,7 @@ var resolveEnvFilePathAsync = async (envFilePath = DEFAULT_ENV_FILENAME, opts) =
|
|
|
36042
36043
|
errorMessage: location.source === "absolute" ? `Environment file not found: ${envFilePath}` : `Unable to locate environment file: ${envFilePath}. Run 'uip login' to authenticate.`
|
|
36043
36044
|
};
|
|
36044
36045
|
};
|
|
36045
|
-
var
|
|
36046
|
-
const fs = getFileSystem();
|
|
36047
|
-
const absolutePath = fs.path.isAbsolute(envPath) ? envPath : fs.path.join(fs.env.cwd(), envPath);
|
|
36048
|
-
if (!await fs.exists(absolutePath)) {
|
|
36049
|
-
throw new Error(`Environment file not found: ${envPath}`);
|
|
36050
|
-
}
|
|
36051
|
-
const content = await fs.readFile(absolutePath, "utf-8");
|
|
36052
|
-
if (content === null) {
|
|
36053
|
-
throw new Error(`Environment file not found: ${envPath}`);
|
|
36054
|
-
}
|
|
36046
|
+
var parseEnvContent = (content) => {
|
|
36055
36047
|
const env = {};
|
|
36056
36048
|
for (const line of content.split(`
|
|
36057
36049
|
`)) {
|
|
@@ -36072,6 +36064,18 @@ var loadEnvFileAsync = async ({ envPath }) => {
|
|
|
36072
36064
|
}
|
|
36073
36065
|
return env;
|
|
36074
36066
|
};
|
|
36067
|
+
var loadEnvFileAsync = async ({ envPath }) => {
|
|
36068
|
+
const fs = getFileSystem();
|
|
36069
|
+
const absolutePath = fs.path.isAbsolute(envPath) ? envPath : fs.path.join(fs.env.cwd(), envPath);
|
|
36070
|
+
if (!await fs.exists(absolutePath)) {
|
|
36071
|
+
throw new Error(`Environment file not found: ${envPath}`);
|
|
36072
|
+
}
|
|
36073
|
+
const content = await fs.readFile(absolutePath, "utf-8");
|
|
36074
|
+
if (content === null) {
|
|
36075
|
+
throw new Error(`Environment file not found: ${envPath}`);
|
|
36076
|
+
}
|
|
36077
|
+
return parseEnvContent(content);
|
|
36078
|
+
};
|
|
36075
36079
|
var saveEnvFileAsync = async ({
|
|
36076
36080
|
envPath,
|
|
36077
36081
|
data,
|
|
@@ -36993,7 +36997,7 @@ var UUID_PATTERN = /\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{1
|
|
|
36993
36997
|
var EMAIL_PATTERN = /\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}\b/g;
|
|
36994
36998
|
var JWT_PATTERN = /\beyJ[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+/g;
|
|
36995
36999
|
var LONG_TOKEN_PATTERN = /\b[A-Za-z0-9_-]{40,}\b/g;
|
|
36996
|
-
var PADDED_BASE64_PATTERN = /[A-Za-z0-9+/]{16,}={1,2}(?![A-Za-z0-9+/=])/g;
|
|
37000
|
+
var PADDED_BASE64_PATTERN = /(?<![A-Za-z0-9+/])[A-Za-z0-9+/]{16,}={1,2}(?![A-Za-z0-9+/=])/g;
|
|
36997
37001
|
var BASE64_WITH_PLUS_PATTERN = /[A-Za-z0-9+/]{40,}/g;
|
|
36998
37002
|
var USER_HOME_PATTERN = /(?<![A-Za-z0-9._-])([/\\])(Users|home|Profiles)([/\\])([^/\\]+)/gi;
|
|
36999
37003
|
var UNC_PATH_PATTERN = /(^|[\s"'<>|=,;([{])(\\\\[^\s"'<>|]+)/g;
|
|
@@ -37040,7 +37044,7 @@ var QUOTED_LITERAL_PATTERN = new RegExp([
|
|
|
37040
37044
|
`(?<![A-Za-z0-9])"(?:[^\\
|
|
37041
37045
|
]|\\.){2,${QUOTED_LITERAL_MAX_SPAN}}?"(?![A-Za-z0-9])`
|
|
37042
37046
|
].join("|"), "g");
|
|
37043
|
-
var JSON_BODY_PATTERN = /[{[][^{}[\]]*[:,][^{}[\]]*[\]}]/g;
|
|
37047
|
+
var JSON_BODY_PATTERN = /[{[][^{}[\]:,]*[:,][^{}[\]]*[\]}]/g;
|
|
37044
37048
|
var COLLAPSED_BODY = "{…}";
|
|
37045
37049
|
var COLLAPSED_BODY_MARKER = "\x01body\x01";
|
|
37046
37050
|
var MAX_BODY_NESTING = 8;
|
|
@@ -37055,10 +37059,13 @@ function collapseJsonBodies(text) {
|
|
|
37055
37059
|
}
|
|
37056
37060
|
return out.split(COLLAPSED_BODY_MARKER).join(COLLAPSED_BODY);
|
|
37057
37061
|
}
|
|
37058
|
-
var TRAILING_PROSE_PUNCT =
|
|
37062
|
+
var TRAILING_PROSE_PUNCT = `.,;:!?)]}>'"`;
|
|
37059
37063
|
function peelTrailingPunctuation(match) {
|
|
37060
|
-
|
|
37061
|
-
|
|
37064
|
+
let end = match.length;
|
|
37065
|
+
while (end > 0 && TRAILING_PROSE_PUNCT.includes(match[end - 1])) {
|
|
37066
|
+
end -= 1;
|
|
37067
|
+
}
|
|
37068
|
+
return [match.slice(0, end), match.slice(end)];
|
|
37062
37069
|
}
|
|
37063
37070
|
function redactUrl(raw) {
|
|
37064
37071
|
try {
|
|
@@ -37361,6 +37368,22 @@ function parseHttpStatusFromMessage(message) {
|
|
|
37361
37368
|
const status = Number(match[1]);
|
|
37362
37369
|
return Number.isInteger(status) && status >= 100 && status <= 599 ? status : undefined;
|
|
37363
37370
|
}
|
|
37371
|
+
function findHttpStatusInGraph(error) {
|
|
37372
|
+
for (const node of walkErrorGraph(error)) {
|
|
37373
|
+
const response = node.response;
|
|
37374
|
+
const explicit = typeof node.status === "number" ? node.status : response?.status;
|
|
37375
|
+
if (typeof explicit === "number" && explicit >= 400 && explicit <= 599) {
|
|
37376
|
+
return explicit;
|
|
37377
|
+
}
|
|
37378
|
+
if (typeof node.message === "string") {
|
|
37379
|
+
const parsed = parseHttpStatusFromMessage(node.message);
|
|
37380
|
+
if (parsed !== undefined && parsed >= 400) {
|
|
37381
|
+
return parsed;
|
|
37382
|
+
}
|
|
37383
|
+
}
|
|
37384
|
+
}
|
|
37385
|
+
return;
|
|
37386
|
+
}
|
|
37364
37387
|
function isHtmlDocument(body) {
|
|
37365
37388
|
return /^\s*(<!doctype html|<html\b)/i.test(body);
|
|
37366
37389
|
}
|
|
@@ -37474,7 +37497,8 @@ async function extractErrorDetails(error, options) {
|
|
|
37474
37497
|
}
|
|
37475
37498
|
let message;
|
|
37476
37499
|
let result = "Failure";
|
|
37477
|
-
const
|
|
37500
|
+
const classificationStatus = status ?? findHttpStatusInGraph(error);
|
|
37501
|
+
const classification = classifyError(classificationStatus, error);
|
|
37478
37502
|
let retry = classification.retry;
|
|
37479
37503
|
if (status === 401) {
|
|
37480
37504
|
message = DEFAULT_401;
|
|
@@ -37550,8 +37574,8 @@ async function extractErrorDetails(error, options) {
|
|
|
37550
37574
|
details = describeThrownValue(error);
|
|
37551
37575
|
}
|
|
37552
37576
|
const context = {};
|
|
37553
|
-
if (
|
|
37554
|
-
context.httpStatus =
|
|
37577
|
+
if (classificationStatus) {
|
|
37578
|
+
context.httpStatus = classificationStatus;
|
|
37555
37579
|
}
|
|
37556
37580
|
if (parsedBody?.errorCode && typeof parsedBody.errorCode === "string") {
|
|
37557
37581
|
context.errorCode = parsedBody.errorCode;
|
|
@@ -38113,7 +38137,8 @@ function readRegistryValue(keyPath, valueName) {
|
|
|
38113
38137
|
}
|
|
38114
38138
|
const [error, output] = catchError2(() => execFileSync("reg", ["query", keyPath, "/v", valueName], {
|
|
38115
38139
|
encoding: "utf-8",
|
|
38116
|
-
stdio: ["pipe", "pipe", "pipe"]
|
|
38140
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
38141
|
+
windowsHide: true
|
|
38117
38142
|
}));
|
|
38118
38143
|
if (error) {
|
|
38119
38144
|
return "";
|
|
@@ -38789,28 +38814,32 @@ function isPlainRecord(value) {
|
|
|
38789
38814
|
const prototype = Object.getPrototypeOf(value);
|
|
38790
38815
|
return prototype === Object.prototype || prototype === null;
|
|
38791
38816
|
}
|
|
38792
|
-
function
|
|
38817
|
+
function splitPagedEnvelope(value) {
|
|
38793
38818
|
if (Array.isArray(value) || !isPlainRecord(value))
|
|
38794
38819
|
return null;
|
|
38795
|
-
const entries = Object.
|
|
38820
|
+
const entries = Object.entries(value);
|
|
38796
38821
|
if (entries.length === 0)
|
|
38797
38822
|
return null;
|
|
38798
|
-
let
|
|
38799
|
-
|
|
38800
|
-
for (const entry of entries) {
|
|
38823
|
+
let found = null;
|
|
38824
|
+
const meta = Object.create(null);
|
|
38825
|
+
for (const [key, entry] of entries) {
|
|
38801
38826
|
if (Array.isArray(entry)) {
|
|
38802
|
-
if (
|
|
38827
|
+
if (found !== null)
|
|
38803
38828
|
return null;
|
|
38804
|
-
|
|
38829
|
+
found = { key, rows: entry };
|
|
38805
38830
|
} else if (entry !== null && typeof entry === "object") {
|
|
38806
38831
|
return null;
|
|
38807
38832
|
} else {
|
|
38808
|
-
|
|
38833
|
+
meta[key] = entry;
|
|
38809
38834
|
}
|
|
38810
38835
|
}
|
|
38811
|
-
if (
|
|
38836
|
+
if (found === null || Object.keys(meta).length === 0)
|
|
38812
38837
|
return null;
|
|
38813
|
-
return
|
|
38838
|
+
return { ...found, meta };
|
|
38839
|
+
}
|
|
38840
|
+
function extractPagedRows(value) {
|
|
38841
|
+
const paged = splitPagedEnvelope(value);
|
|
38842
|
+
return paged === null ? null : paged.rows;
|
|
38814
38843
|
}
|
|
38815
38844
|
function toLowerCamelCaseKey(key) {
|
|
38816
38845
|
if (!key)
|
|
@@ -38914,6 +38943,9 @@ function printOutput(data, format = "json", logFn, asciiSafe = false, tableRowSt
|
|
|
38914
38943
|
}
|
|
38915
38944
|
break;
|
|
38916
38945
|
}
|
|
38946
|
+
case "markdown":
|
|
38947
|
+
logFn(renderMarkdown(data));
|
|
38948
|
+
break;
|
|
38917
38949
|
default: {
|
|
38918
38950
|
const hasData = "Data" in data && data.Data != null;
|
|
38919
38951
|
const pagedRows = hasData ? extractPagedRows(data.Data) : null;
|
|
@@ -38938,6 +38970,10 @@ function logOutput(data, format = "json", tableRowStyle) {
|
|
|
38938
38970
|
printOutput(data, format, (msg) => sink.writeOut(`${msg}
|
|
38939
38971
|
`), needsAsciiSafeJson(sink), styleFn);
|
|
38940
38972
|
}
|
|
38973
|
+
var PLUMBING_KEYS = new Set(["code", "log"]);
|
|
38974
|
+
function isPlumbingKey(key) {
|
|
38975
|
+
return PLUMBING_KEYS.has(key.toLowerCase());
|
|
38976
|
+
}
|
|
38941
38977
|
function cellToString(val) {
|
|
38942
38978
|
return val != null && typeof val === "object" ? JSON.stringify(val) : String(val ?? "");
|
|
38943
38979
|
}
|
|
@@ -38953,7 +38989,7 @@ function wrapText(text, width) {
|
|
|
38953
38989
|
function printTable(data, logFn, externalLogValue, tableRowStyle) {
|
|
38954
38990
|
if (data.length === 0)
|
|
38955
38991
|
return;
|
|
38956
|
-
const keys = Object.keys(data[0]).filter((key) => !
|
|
38992
|
+
const keys = Object.keys(data[0]).filter((key) => !isPlumbingKey(key));
|
|
38957
38993
|
const maxWidths = keys.map((key) => Math.max(key.length, ...data.map((item) => cellToString(item[key]).length)));
|
|
38958
38994
|
const header = keys.map((key, i) => key.padEnd(maxWidths[i])).join(" | ");
|
|
38959
38995
|
logFn(header);
|
|
@@ -38975,7 +39011,7 @@ function isNonEmptyPlainObject(value) {
|
|
|
38975
39011
|
}
|
|
38976
39012
|
var NESTED_INDENT = " ";
|
|
38977
39013
|
function printVerticalTable(data, logFn = console.log, externalLogValue) {
|
|
38978
|
-
const keys = Object.keys(data).filter((key) => !
|
|
39014
|
+
const keys = Object.keys(data).filter((key) => !isPlumbingKey(key));
|
|
38979
39015
|
if (keys.length === 0)
|
|
38980
39016
|
return;
|
|
38981
39017
|
const isBlockValue = (value) => isPlainObjectArray(value) || isNonEmptyPlainObject(value);
|
|
@@ -39006,7 +39042,7 @@ function printVerticalTable(data, logFn = console.log, externalLogValue) {
|
|
|
39006
39042
|
function printResizableTable(data, logFn = console.log, externalLogValue, availableWidth, tableRowStyle) {
|
|
39007
39043
|
if (data.length === 0)
|
|
39008
39044
|
return;
|
|
39009
|
-
const keys = Object.keys(data[0]).filter((key) => !
|
|
39045
|
+
const keys = Object.keys(data[0]).filter((key) => !isPlumbingKey(key));
|
|
39010
39046
|
if (keys.length === 0)
|
|
39011
39047
|
return;
|
|
39012
39048
|
if (!process.stdout.isTTY) {
|
|
@@ -39080,6 +39116,220 @@ function printResizableTable(data, logFn = console.log, externalLogValue, availa
|
|
|
39080
39116
|
logFn(`Log: ${externalLogValue}`);
|
|
39081
39117
|
}
|
|
39082
39118
|
}
|
|
39119
|
+
var MARKDOWN_MAX_CELL = 200;
|
|
39120
|
+
var MARKDOWN_MAX_DEPTH = 3;
|
|
39121
|
+
function markdownHeading(depth) {
|
|
39122
|
+
return "#".repeat(Math.min(3 + depth, 6));
|
|
39123
|
+
}
|
|
39124
|
+
var BACKTICK_RUN = /`+/g;
|
|
39125
|
+
function fencedBlock(text) {
|
|
39126
|
+
const first = text.trimStart()[0];
|
|
39127
|
+
const language = first === "<" ? "xml" : first === "{" || first === "[" ? "json" : "";
|
|
39128
|
+
const longestRun = Math.max(0, ...Array.from(text.matchAll(BACKTICK_RUN), (match) => match[0].length));
|
|
39129
|
+
const fence = "`".repeat(Math.max(3, longestRun + 1));
|
|
39130
|
+
return `${fence}${language}
|
|
39131
|
+
${text}
|
|
39132
|
+
${fence}`;
|
|
39133
|
+
}
|
|
39134
|
+
function collapseNewlineRuns(text) {
|
|
39135
|
+
return text.split(/(\s+)/).map((part, index) => index % 2 === 1 && part.includes(`
|
|
39136
|
+
`) ? " " : part).join("");
|
|
39137
|
+
}
|
|
39138
|
+
function markdownCell(value) {
|
|
39139
|
+
const text = value instanceof Date ? value.toISOString() : cellToString(value);
|
|
39140
|
+
return collapseNewlineRuns(text).replace(/\|/g, "\\|");
|
|
39141
|
+
}
|
|
39142
|
+
function markdownLabel(key) {
|
|
39143
|
+
return collapseNewlineRuns(key).replace(/[\\`*|]/g, "\\$&");
|
|
39144
|
+
}
|
|
39145
|
+
function withoutPlumbing(record) {
|
|
39146
|
+
const kept = Object.create(null);
|
|
39147
|
+
for (const [key, value] of Object.entries(record)) {
|
|
39148
|
+
if (!isPlumbingKey(key))
|
|
39149
|
+
kept[key] = value;
|
|
39150
|
+
}
|
|
39151
|
+
return kept;
|
|
39152
|
+
}
|
|
39153
|
+
function rowsWithoutPlumbing(rows) {
|
|
39154
|
+
return rows.map((row) => isPlainRecord(row) ? withoutPlumbing(row) : row);
|
|
39155
|
+
}
|
|
39156
|
+
function markdownTable(rows) {
|
|
39157
|
+
const columns = [];
|
|
39158
|
+
const seen = new Set;
|
|
39159
|
+
for (const row of rows) {
|
|
39160
|
+
for (const key of Object.keys(row)) {
|
|
39161
|
+
if (!seen.has(key)) {
|
|
39162
|
+
seen.add(key);
|
|
39163
|
+
columns.push(key);
|
|
39164
|
+
}
|
|
39165
|
+
}
|
|
39166
|
+
}
|
|
39167
|
+
if (columns.length === 0)
|
|
39168
|
+
return null;
|
|
39169
|
+
const cells = rows.map((row) => columns.map((key) => markdownCell(row[key])));
|
|
39170
|
+
if (cells.some((row) => row.some((c) => c.length > MARKDOWN_MAX_CELL))) {
|
|
39171
|
+
return null;
|
|
39172
|
+
}
|
|
39173
|
+
return [
|
|
39174
|
+
`| ${columns.map(markdownLabel).join(" | ")} |`,
|
|
39175
|
+
`| ${columns.map(() => "---").join(" | ")} |`,
|
|
39176
|
+
...cells.map((row) => `| ${row.join(" | ")} |`)
|
|
39177
|
+
].join(`
|
|
39178
|
+
`);
|
|
39179
|
+
}
|
|
39180
|
+
function extractMessageSequence(rows) {
|
|
39181
|
+
const messages = [];
|
|
39182
|
+
for (const row of rows) {
|
|
39183
|
+
const message = extractSingleMessage(row);
|
|
39184
|
+
if (message === null)
|
|
39185
|
+
return null;
|
|
39186
|
+
messages.push(message);
|
|
39187
|
+
}
|
|
39188
|
+
return messages.join(`
|
|
39189
|
+
|
|
39190
|
+
`);
|
|
39191
|
+
}
|
|
39192
|
+
function markdownRows(rows, depth) {
|
|
39193
|
+
if (rows.length === 0)
|
|
39194
|
+
return "(none)";
|
|
39195
|
+
if (!isPlainObjectArray(rows)) {
|
|
39196
|
+
return rows.map((item) => `- ${markdownCell(item)}`).join(`
|
|
39197
|
+
`);
|
|
39198
|
+
}
|
|
39199
|
+
const prose = extractMessageSequence(rows);
|
|
39200
|
+
if (prose !== null)
|
|
39201
|
+
return prose;
|
|
39202
|
+
const table = markdownTable(rows);
|
|
39203
|
+
if (table !== null)
|
|
39204
|
+
return table;
|
|
39205
|
+
if (depth >= MARKDOWN_MAX_DEPTH) {
|
|
39206
|
+
return fencedBlock(JSON.stringify(rows, null, 2));
|
|
39207
|
+
}
|
|
39208
|
+
return rows.map((row, index) => [
|
|
39209
|
+
`${markdownHeading(depth)} ${index + 1}`,
|
|
39210
|
+
markdownObject(row, depth + 1)
|
|
39211
|
+
].join(`
|
|
39212
|
+
|
|
39213
|
+
`)).join(`
|
|
39214
|
+
|
|
39215
|
+
`);
|
|
39216
|
+
}
|
|
39217
|
+
function markdownObject(obj, depth) {
|
|
39218
|
+
const scalars = [];
|
|
39219
|
+
const blocks = [];
|
|
39220
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
39221
|
+
if (value === undefined)
|
|
39222
|
+
continue;
|
|
39223
|
+
const label = markdownLabel(key);
|
|
39224
|
+
if (Array.isArray(value)) {
|
|
39225
|
+
blocks.push(`${markdownHeading(depth)} ${label}
|
|
39226
|
+
|
|
39227
|
+
${markdownRows(value, depth + 1)}`);
|
|
39228
|
+
} else if (isNonEmptyPlainObject(value)) {
|
|
39229
|
+
const nested = depth < MARKDOWN_MAX_DEPTH ? markdownObject(value, depth + 1) : fencedBlock(JSON.stringify(value, null, 2));
|
|
39230
|
+
if (nested !== "") {
|
|
39231
|
+
blocks.push(`${markdownHeading(depth)} ${label}
|
|
39232
|
+
|
|
39233
|
+
${nested}`);
|
|
39234
|
+
}
|
|
39235
|
+
} else if (typeof value === "string" && value.includes(`
|
|
39236
|
+
`)) {
|
|
39237
|
+
blocks.push(`**${label}:**
|
|
39238
|
+
|
|
39239
|
+
${fencedBlock(value)}`);
|
|
39240
|
+
} else {
|
|
39241
|
+
scalars.push(`**${label}:** ${markdownCell(value)}`);
|
|
39242
|
+
}
|
|
39243
|
+
}
|
|
39244
|
+
const sections = scalars.length > 0 ? [scalars.join(`
|
|
39245
|
+
`)] : [];
|
|
39246
|
+
sections.push(...blocks);
|
|
39247
|
+
return sections.join(`
|
|
39248
|
+
|
|
39249
|
+
`);
|
|
39250
|
+
}
|
|
39251
|
+
function extractSingleMessage(payload) {
|
|
39252
|
+
if (!isPlainRecord(payload))
|
|
39253
|
+
return null;
|
|
39254
|
+
const keys = Object.keys(payload);
|
|
39255
|
+
if (keys.length !== 1 || keys[0].toLowerCase() !== "message")
|
|
39256
|
+
return null;
|
|
39257
|
+
const value = payload[keys[0]];
|
|
39258
|
+
return typeof value === "string" ? value : null;
|
|
39259
|
+
}
|
|
39260
|
+
function markdownPayload(payload) {
|
|
39261
|
+
const message = extractSingleMessage(payload);
|
|
39262
|
+
if (message !== null)
|
|
39263
|
+
return message;
|
|
39264
|
+
if (Array.isArray(payload)) {
|
|
39265
|
+
return markdownRows(rowsWithoutPlumbing(payload), 0);
|
|
39266
|
+
}
|
|
39267
|
+
const visible = withoutPlumbing(payload);
|
|
39268
|
+
const paged = splitPagedEnvelope(visible);
|
|
39269
|
+
if (paged !== null) {
|
|
39270
|
+
const meta = markdownObject(paged.meta, 0);
|
|
39271
|
+
const rows = `${markdownHeading(0)} ${markdownLabel(paged.key)}
|
|
39272
|
+
|
|
39273
|
+
${markdownRows(rowsWithoutPlumbing(paged.rows), 1)}`;
|
|
39274
|
+
return meta === "" ? rows : `${meta}
|
|
39275
|
+
|
|
39276
|
+
${rows}`;
|
|
39277
|
+
}
|
|
39278
|
+
return markdownObject(visible, 0);
|
|
39279
|
+
}
|
|
39280
|
+
function isPaginationWorthShowing(value) {
|
|
39281
|
+
if (typeof value !== "object" || value === null)
|
|
39282
|
+
return false;
|
|
39283
|
+
const page = value;
|
|
39284
|
+
return page.HasMore === true || typeof page.Offset === "number" && page.Offset > 0;
|
|
39285
|
+
}
|
|
39286
|
+
function markdownEnvelopeNotes(data) {
|
|
39287
|
+
const envelope = data;
|
|
39288
|
+
const notes = [];
|
|
39289
|
+
const warning = envelope.Warning;
|
|
39290
|
+
if (typeof warning === "string" && warning !== "") {
|
|
39291
|
+
notes.push(`> **Warning:** ${warning}`);
|
|
39292
|
+
}
|
|
39293
|
+
const instructions = envelope.Instructions;
|
|
39294
|
+
if (typeof instructions === "string" && instructions !== "") {
|
|
39295
|
+
notes.push(`> ${instructions}`);
|
|
39296
|
+
}
|
|
39297
|
+
const pagination = envelope.Pagination;
|
|
39298
|
+
if (isPaginationWorthShowing(pagination)) {
|
|
39299
|
+
const body = markdownObject(pagination, 1);
|
|
39300
|
+
if (body !== "") {
|
|
39301
|
+
notes.push(`${markdownHeading(0)} Pagination
|
|
39302
|
+
|
|
39303
|
+
${body}`);
|
|
39304
|
+
}
|
|
39305
|
+
}
|
|
39306
|
+
const log = envelope.Log;
|
|
39307
|
+
if (typeof log === "string" && log !== "") {
|
|
39308
|
+
notes.push(`**Log:** ${log}`);
|
|
39309
|
+
}
|
|
39310
|
+
return notes;
|
|
39311
|
+
}
|
|
39312
|
+
function renderMarkdown(data) {
|
|
39313
|
+
if (data.Result !== RESULTS.Success) {
|
|
39314
|
+
const failure = data;
|
|
39315
|
+
const sections = [`**Failed:** ${failure.Message}`];
|
|
39316
|
+
if (failure.Data != null) {
|
|
39317
|
+
sections.push(markdownPayload(failure.Data));
|
|
39318
|
+
}
|
|
39319
|
+
if (failure.Instructions) {
|
|
39320
|
+
sections.push(`> ${failure.Instructions}`);
|
|
39321
|
+
}
|
|
39322
|
+
return sections.filter((section) => section !== "").join(`
|
|
39323
|
+
|
|
39324
|
+
`);
|
|
39325
|
+
}
|
|
39326
|
+
if (!("Data" in data) || data.Data == null) {
|
|
39327
|
+
return markdownObject(withoutPlumbing(data), 0);
|
|
39328
|
+
}
|
|
39329
|
+
return [markdownPayload(data.Data), ...markdownEnvelopeNotes(data)].filter((section) => section !== "").join(`
|
|
39330
|
+
|
|
39331
|
+
`);
|
|
39332
|
+
}
|
|
39083
39333
|
function toYaml(data) {
|
|
39084
39334
|
const codec = getYamlCodec();
|
|
39085
39335
|
if (!codec) {
|
|
@@ -40173,4 +40423,4 @@ async function resolveRelease(releaseKey, options) {
|
|
|
40173
40423
|
}
|
|
40174
40424
|
export { InvalidArgumentError, Command2 as Command, Argument, Option, catchError2 as catchError, extractErrorDetails, getOutputSink, RESULTS, OutputFormatter, processContext, requireConfirmation, DEFAULT_PAGE_SIZE, resolveDeprecatedOptionAlias, warnDeprecatedOptionAlias, createHiddenDeprecatedTenantOption, getSdkUserAgentToken, addSdkUserAgentHeader, installSdkUserAgentHeader, BASE_PATH, Configuration, DefaultConfig, BaseAPI, ResponseError, FetchError, RequiredError, COLLECTION_FORMATS, querystring, exists, mapValues, canConsumeForm, JSONApiResponse, VoidApiResponse, BlobApiResponse, TextApiResponse, SDK_USER_AGENT, PrivilegeOfAccessTypeValueEnum, instanceOfPrivilegeOfAccessType, PrivilegeOfAccessTypeFromJSON, PrivilegeOfAccessTypeFromJSONTyped, PrivilegeOfAccessTypeToJSON, PrivilegeOfAccessTypeToJSONTyped, instanceOfPrivilegeGroupDto, PrivilegeGroupDtoFromJSON, PrivilegeGroupDtoFromJSONTyped, PrivilegeGroupDtoToJSON, PrivilegeGroupDtoToJSONTyped, InheritedPrivilegeOfAccessTypeValueEnum, instanceOfInheritedPrivilegeOfAccessType, InheritedPrivilegeOfAccessTypeFromJSON, InheritedPrivilegeOfAccessTypeFromJSONTyped, InheritedPrivilegeOfAccessTypeToJSON, InheritedPrivilegeOfAccessTypeToJSONTyped, ExplicitPrivilegeOfAccessTypeValueEnum, instanceOfExplicitPrivilegeOfAccessType, ExplicitPrivilegeOfAccessTypeFromJSON, ExplicitPrivilegeOfAccessTypeFromJSONTyped, ExplicitPrivilegeOfAccessTypeToJSON, ExplicitPrivilegeOfAccessTypeToJSONTyped, instanceOfAccessPrivilege, AccessPrivilegeFromJSON, AccessPrivilegeFromJSONTyped, AccessPrivilegeToJSON, AccessPrivilegeToJSONTyped, instanceOfSimpleFolderDto, SimpleFolderDtoFromJSON, SimpleFolderDtoFromJSONTyped, SimpleFolderDtoToJSON, SimpleFolderDtoToJSONTyped, instanceOfAccessibleFoldersDto, AccessibleFoldersDtoFromJSON, AccessibleFoldersDtoFromJSONTyped, AccessibleFoldersDtoToJSON, AccessibleFoldersDtoToJSONTyped, instanceOfSignalRActivitySettingsDto, SignalRActivitySettingsDtoFromJSON, SignalRActivitySettingsDtoFromJSONTyped, SignalRActivitySettingsDtoToJSON, SignalRActivitySettingsDtoToJSONTyped, instanceOfActivitySettingsDto, ActivitySettingsDtoFromJSON, ActivitySettingsDtoFromJSONTyped, ActivitySettingsDtoToJSON, ActivitySettingsDtoToJSONTyped, QueueItemDataDtoPriorityEnum, instanceOfQueueItemDataDto, QueueItemDataDtoFromJSON, QueueItemDataDtoFromJSONTyped, QueueItemDataDtoToJSON, QueueItemDataDtoToJSONTyped, instanceOfAddQueueItemRequest, AddQueueItemRequestFromJSON, AddQueueItemRequestFromJSONTyped, AddQueueItemRequestToJSON, AddQueueItemRequestToJSONTyped, instanceOfAgentPackageSettingsDto, AgentPackageSettingsDtoFromJSON, AgentPackageSettingsDtoFromJSONTyped, AgentPackageSettingsDtoToJSON, AgentPackageSettingsDtoToJSONTyped, instanceOfAgentSettings, AgentSettingsFromJSON, AgentSettingsFromJSONTyped, AgentSettingsToJSON, AgentSettingsToJSONTyped, instanceOfValidationErrorInfo, ValidationErrorInfoFromJSON, ValidationErrorInfoFromJSONTyped, ValidationErrorInfoToJSON, ValidationErrorInfoToJSONTyped, instanceOfErrorInfo, ErrorInfoFromJSON, ErrorInfoFromJSONTyped, ErrorInfoToJSON, ErrorInfoToJSONTyped, instanceOfAjaxResponse, AjaxResponseFromJSON, AjaxResponseFromJSONTyped, AjaxResponseToJSON, AjaxResponseToJSONTyped, AllFeedsModelPurposeEnum, AllFeedsModelAuthenticationTypeEnum, instanceOfAllFeedsModel, AllFeedsModelFromJSON, AllFeedsModelFromJSONTyped, AllFeedsModelToJSON, AllFeedsModelToJSONTyped, instanceOfMachineRobotSessionDto, MachineRobotSessionDtoFromJSON, MachineRobotSessionDtoFromJSONTyped, MachineRobotSessionDtoToJSON, MachineRobotSessionDtoToJSONTyped, instanceOfTriggerReleaseDto, TriggerReleaseDtoFromJSON, TriggerReleaseDtoFromJSONTyped, TriggerReleaseDtoToJSON, TriggerReleaseDtoToJSONTyped, instanceOfTagDto, TagDtoFromJSON, TagDtoFromJSONTyped, TagDtoToJSON, TagDtoToJSONTyped, ApiTriggerDtoApiTriggerTypeEnum, ApiTriggerDtoTypeEnum, ApiTriggerDtoRuntimeTypeEnum, ApiTriggerDtoTargetFrameworkEnum, ApiTriggerDtoStopStrategyEnum, ApiTriggerDtoRemoteControlAccessEnum, instanceOfApiTriggerDto, ApiTriggerDtoFromJSON, ApiTriggerDtoFromJSONTyped, ApiTriggerDtoToJSON, ApiTriggerDtoToJSONTyped, instanceOfArgumentMetadata, ArgumentMetadataFromJSON, ArgumentMetadataFromJSONTyped, ArgumentMetadataToJSON, ArgumentMetadataToJSONTyped, instanceOfCustomKeyValuePair, CustomKeyValuePairFromJSON, CustomKeyValuePairFromJSONTyped, CustomKeyValuePairToJSON, CustomKeyValuePairToJSONTyped, AssetUserValueDtoValueTypeEnum, instanceOfAssetUserValueDto, AssetUserValueDtoFromJSON, AssetUserValueDtoFromJSONTyped, AssetUserValueDtoToJSON, AssetUserValueDtoToJSONTyped, AssetRobotValueDtoValueTypeEnum, instanceOfAssetRobotValueDto, AssetRobotValueDtoFromJSON, AssetRobotValueDtoFromJSONTyped, AssetRobotValueDtoToJSON, AssetRobotValueDtoToJSONTyped, AssetDtoValueScopeEnum, AssetDtoValueTypeEnum, instanceOfAssetDto, AssetDtoFromJSON, AssetDtoFromJSONTyped, AssetDtoToJSON, AssetDtoToJSONTyped, instanceOfAssetFoldersShareDto, AssetFoldersShareDtoFromJSON, AssetFoldersShareDtoFromJSONTyped, AssetFoldersShareDtoToJSON, AssetFoldersShareDtoToJSONTyped, instanceOfAssetsGetRobotByNameAndKeyRequest, AssetsGetRobotByNameAndKeyRequestFromJSON, AssetsGetRobotByNameAndKeyRequestFromJSONTyped, AssetsGetRobotByNameAndKeyRequestToJSON, AssetsGetRobotByNameAndKeyRequestToJSONTyped, instanceOfCredentialsConnectionData, CredentialsConnectionDataFromJSON, CredentialsConnectionDataFromJSONTyped, CredentialsConnectionDataToJSON, CredentialsConnectionDataToJSONTyped, UserAssetDtoValueTypeEnum, instanceOfUserAssetDto, UserAssetDtoFromJSON, UserAssetDtoFromJSONTyped, UserAssetDtoToJSON, UserAssetDtoToJSONTyped, instanceOfAssetsSetRobotAssetsByKeyRequest, AssetsSetRobotAssetsByKeyRequestFromJSON, AssetsSetRobotAssetsByKeyRequestFromJSONTyped, AssetsSetRobotAssetsByKeyRequestToJSON, AssetsSetRobotAssetsByKeyRequestToJSONTyped, instanceOfAssistantSettingsDto, AssistantSettingsDtoFromJSON, AssistantSettingsDtoFromJSONTyped, AssistantSettingsDtoToJSON, AssistantSettingsDtoToJSONTyped, instanceOfAttachmentDto, AttachmentDtoFromJSON, AttachmentDtoFromJSONTyped, AttachmentDtoToJSON, AttachmentDtoToJSONTyped, AttendedRobotDtoRobotTypeEnum, instanceOfAttendedRobotDto, AttendedRobotDtoFromJSON, AttendedRobotDtoFromJSONTyped, AttendedRobotDtoToJSON, AttendedRobotDtoToJSONTyped, AuditLogEntityDtoActionEnum, instanceOfAuditLogEntityDto, AuditLogEntityDtoFromJSON, AuditLogEntityDtoFromJSONTyped, AuditLogEntityDtoToJSON, AuditLogEntityDtoToJSONTyped, AuditLogDtoActionEnum, AuditLogDtoComponentEnum, AuditLogDtoUserTypeEnum, instanceOfAuditLogDto, AuditLogDtoFromJSON, AuditLogDtoFromJSONTyped, AuditLogDtoToJSON, AuditLogDtoToJSONTyped, instanceOfAutopilotForRobotsSettingsDto, AutopilotForRobotsSettingsDtoFromJSON, AutopilotForRobotsSettingsDtoFromJSONTyped, AutopilotForRobotsSettingsDtoToJSON, AutopilotForRobotsSettingsDtoToJSONTyped, instanceOfBaseRoleDto, BaseRoleDtoFromJSON, BaseRoleDtoFromJSONTyped, BaseRoleDtoToJSON, BaseRoleDtoToJSONTyped, instanceOfResponseDictionaryDto, ResponseDictionaryDtoFromJSON, ResponseDictionaryDtoFromJSONTyped, ResponseDictionaryDtoToJSON, ResponseDictionaryDtoToJSONTyped, instanceOfBlobFileAccessDto, BlobFileAccessDtoFromJSON, BlobFileAccessDtoFromJSONTyped, BlobFileAccessDtoToJSON, BlobFileAccessDtoToJSONTyped, instanceOfBlobFileDto, BlobFileDtoFromJSON, BlobFileDtoFromJSONTyped, BlobFileDtoToJSON, BlobFileDtoToJSONTyped, instanceOfBlobItemDto, BlobItemDtoFromJSON, BlobItemDtoFromJSONTyped, BlobItemDtoToJSON, BlobItemDtoToJSONTyped, instanceOfExplicitPrivilegeOfBoolean, ExplicitPrivilegeOfBooleanFromJSON, ExplicitPrivilegeOfBooleanFromJSONTyped, ExplicitPrivilegeOfBooleanToJSON, ExplicitPrivilegeOfBooleanToJSONTyped, instanceOfInheritedPrivilegeOfBoolean, InheritedPrivilegeOfBooleanFromJSON, InheritedPrivilegeOfBooleanFromJSONTyped, InheritedPrivilegeOfBooleanToJSON, InheritedPrivilegeOfBooleanToJSONTyped, instanceOfPrivilegeOfBoolean, PrivilegeOfBooleanFromJSON, PrivilegeOfBooleanFromJSONTyped, PrivilegeOfBooleanToJSON, PrivilegeOfBooleanToJSONTyped, instanceOfBooleanPrivilege, BooleanPrivilegeFromJSON, BooleanPrivilegeFromJSONTyped, BooleanPrivilegeToJSON, BooleanPrivilegeToJSONTyped, BucketDtoOptionsEnum, instanceOfBucketDto, BucketDtoFromJSON, BucketDtoFromJSONTyped, BucketDtoToJSON, BucketDtoToJSONTyped, instanceOfBucketFoldersShareDto, BucketFoldersShareDtoFromJSON, BucketFoldersShareDtoFromJSONTyped, BucketFoldersShareDtoToJSON, BucketFoldersShareDtoToJSONTyped, BulkAddQueueItemsRequestCommitTypeEnum, instanceOfBulkAddQueueItemsRequest, BulkAddQueueItemsRequestFromJSON, BulkAddQueueItemsRequestFromJSONTyped, BulkAddQueueItemsRequestToJSON, BulkAddQueueItemsRequestToJSONTyped, BulkEnablePersonalWorkspacesDtoLicenseTypesEnum, instanceOfBulkEnablePersonalWorkspacesDto, BulkEnablePersonalWorkspacesDtoFromJSON, BulkEnablePersonalWorkspacesDtoFromJSONTyped, BulkEnablePersonalWorkspacesDtoToJSON, BulkEnablePersonalWorkspacesDtoToJSONTyped, BulkItemDtoOfStringStatusEnum, instanceOfBulkItemDtoOfString, BulkItemDtoOfStringFromJSON, BulkItemDtoOfStringFromJSONTyped, BulkItemDtoOfStringToJSON, BulkItemDtoOfStringToJSONTyped, FailedQueueItemDtoErrorCodeEnum, instanceOfFailedQueueItemDto, FailedQueueItemDtoFromJSON, FailedQueueItemDtoFromJSONTyped, FailedQueueItemDtoToJSON, FailedQueueItemDtoToJSONTyped, instanceOfBulkOperationResponseDtoOfFailedQueueItemDto, BulkOperationResponseDtoOfFailedQueueItemDtoFromJSON, BulkOperationResponseDtoOfFailedQueueItemDtoFromJSONTyped, BulkOperationResponseDtoOfFailedQueueItemDtoToJSON, BulkOperationResponseDtoOfFailedQueueItemDtoToJSONTyped, instanceOfBulkOperationResponseDtoOfGuid, BulkOperationResponseDtoOfGuidFromJSON, BulkOperationResponseDtoOfGuidFromJSONTyped, BulkOperationResponseDtoOfGuidToJSON, BulkOperationResponseDtoOfGuidToJSONTyped, instanceOfBulkOperationResponseDtoOfInt64, BulkOperationResponseDtoOfInt64FromJSON, BulkOperationResponseDtoOfInt64FromJSONTyped, BulkOperationResponseDtoOfInt64ToJSON, BulkOperationResponseDtoOfInt64ToJSONTyped, instanceOfCalendarDto, CalendarDtoFromJSON, CalendarDtoFromJSONTyped, CalendarDtoToJSON, CalendarDtoToJSONTyped, instanceOfCalendarExistsRequest, CalendarExistsRequestFromJSON, CalendarExistsRequestFromJSONTyped, CalendarExistsRequestToJSON, CalendarExistsRequestToJSONTyped, instanceOfClientUserTokenDto, ClientUserTokenDtoFromJSON, ClientUserTokenDtoFromJSONTyped, ClientUserTokenDtoToJSON, ClientUserTokenDtoToJSONTyped, instanceOfCommand, CommandFromJSON, CommandFromJSONTyped, CommandToJSON, CommandToJSONTyped, ConfigurationEntryValueTypeEnum, instanceOfConfigurationEntry, ConfigurationEntryFromJSON, ConfigurationEntryFromJSONTyped, ConfigurationEntryToJSON, ConfigurationEntryToJSONTyped, instanceOfConnectionData, ConnectionDataFromJSON, ConnectionDataFromJSONTyped, ConnectionDataToJSON, ConnectionDataToJSONTyped, instanceOfNameValueDto, NameValueDtoFromJSON, NameValueDtoFromJSONTyped, NameValueDtoToJSON, NameValueDtoToJSONTyped, ResourceOverwriteDtoResourceTypeEnum, instanceOfResourceOverwriteDto, ResourceOverwriteDtoFromJSON, ResourceOverwriteDtoFromJSONTyped, ResourceOverwriteDtoToJSON, ResourceOverwriteDtoToJSONTyped, instanceOfEventTriggerPropertiesDto, EventTriggerPropertiesDtoFromJSON, EventTriggerPropertiesDtoFromJSONTyped, EventTriggerPropertiesDtoToJSON, EventTriggerPropertiesDtoToJSONTyped, instanceOfCreateEventTriggerRequest, CreateEventTriggerRequestFromJSON, CreateEventTriggerRequestFromJSONTyped, CreateEventTriggerRequestToJSON, CreateEventTriggerRequestToJSONTyped, VideoRecordingSettingsDtoVideoRecordingTypeEnum, VideoRecordingSettingsDtoQueueItemVideoRecordingTypeEnum, instanceOfVideoRecordingSettingsDto, VideoRecordingSettingsDtoFromJSON, VideoRecordingSettingsDtoFromJSONTyped, VideoRecordingSettingsDtoToJSON, VideoRecordingSettingsDtoToJSONTyped, TestAutomationJobDtoRuntimeTypeEnum, TestAutomationJobDtoRemoteControlAccessEnum, instanceOfTestAutomationJobDto, TestAutomationJobDtoFromJSON, TestAutomationJobDtoFromJSONTyped, TestAutomationJobDtoToJSON, TestAutomationJobDtoToJSONTyped, instanceOfCreateTestAutomationJobsRequest, CreateTestAutomationJobsRequestFromJSON, CreateTestAutomationJobsRequestFromJSONTyped, CreateTestAutomationJobsRequestToJSON, CreateTestAutomationJobsRequestToJSONTyped, CredentialSetDefaultStoreForResourceTypeRequestResourceTypeEnum, instanceOfCredentialSetDefaultStoreForResourceTypeRequest, CredentialSetDefaultStoreForResourceTypeRequestFromJSON, CredentialSetDefaultStoreForResourceTypeRequestFromJSONTyped, CredentialSetDefaultStoreForResourceTypeRequestToJSON, CredentialSetDefaultStoreForResourceTypeRequestToJSONTyped, instanceOfCredentialStoreDetailsDto, CredentialStoreDetailsDtoFromJSON, CredentialStoreDetailsDtoFromJSONTyped, CredentialStoreDetailsDtoToJSON, CredentialStoreDetailsDtoToJSONTyped, DefaultCredentialStoreDtoResourceTypeEnum, instanceOfDefaultCredentialStoreDto, DefaultCredentialStoreDtoFromJSON, DefaultCredentialStoreDtoFromJSONTyped, DefaultCredentialStoreDtoToJSON, DefaultCredentialStoreDtoToJSONTyped, CredentialStoreDtoProxyTypeEnum, instanceOfCredentialStoreDto, CredentialStoreDtoFromJSON, CredentialStoreDtoFromJSONTyped, CredentialStoreDtoToJSON, CredentialStoreDtoToJSONTyped, CredentialStoreResourceDtoTypeEnum, instanceOfCredentialStoreResourceDto, CredentialStoreResourceDtoFromJSON, CredentialStoreResourceDtoFromJSONTyped, CredentialStoreResourceDtoToJSON, CredentialStoreResourceDtoToJSONTyped, CredentialStoreTestRequestDtoEntityTypeEnum, instanceOfCredentialStoreTestRequestDto, CredentialStoreTestRequestDtoFromJSON, CredentialStoreTestRequestDtoFromJSONTyped, CredentialStoreTestRequestDtoToJSON, CredentialStoreTestRequestDtoToJSONTyped, CredentialsProxyResourceDtoTypeEnum, instanceOfCredentialsProxyResourceDto, CredentialsProxyResourceDtoFromJSON, CredentialsProxyResourceDtoFromJSONTyped, CredentialsProxyResourceDtoToJSON, CredentialsProxyResourceDtoToJSONTyped, CurrentUserFolderDtoFolderTypeEnum, instanceOfCurrentUserFolderDto, CurrentUserFolderDtoFromJSON, CurrentUserFolderDtoFromJSONTyped, CurrentUserFolderDtoToJSON, CurrentUserFolderDtoToJSONTyped, UserJobDtoStateEnum, UserJobDtoSourceEnum, instanceOfUserJobDto, UserJobDtoFromJSON, UserJobDtoFromJSONTyped, UserJobDtoToJSON, UserJobDtoToJSONTyped, instanceOfCursorPaginationResultOfUserJobDto, CursorPaginationResultOfUserJobDtoFromJSON, CursorPaginationResultOfUserJobDtoFromJSONTyped, CursorPaginationResultOfUserJobDtoToJSON, CursorPaginationResultOfUserJobDtoToJSONTyped, CustomEventDtoOrganizationUnitTypeEnum, instanceOfCustomEventDto, CustomEventDtoFromJSON, CustomEventDtoFromJSONTyped, CustomEventDtoToJSON, CustomEventDtoToJSONTyped, instanceOfDeleteInactiveSessionsParameters, DeleteInactiveSessionsParametersFromJSON, DeleteInactiveSessionsParametersFromJSONTyped, DeleteInactiveSessionsParametersToJSON, DeleteInactiveSessionsParametersToJSONTyped, DiagnosticQueueItemInfoStatusEnum, DiagnosticQueueItemInfoPriorityEnum, instanceOfDiagnosticQueueItemInfo, DiagnosticQueueItemInfoFromJSON, DiagnosticQueueItemInfoFromJSONTyped, DiagnosticQueueItemInfoToJSON, DiagnosticQueueItemInfoToJSONTyped, instanceOfFolderRolesDto, FolderRolesDtoFromJSON, FolderRolesDtoFromJSONTyped, FolderRolesDtoToJSON, FolderRolesDtoToJSONTyped, DomainUserAssignmentDtoUserTypeEnum, instanceOfDomainUserAssignmentDto, DomainUserAssignmentDtoFromJSON, DomainUserAssignmentDtoFromJSONTyped, DomainUserAssignmentDtoToJSON, DomainUserAssignmentDtoToJSONTyped, instanceOfEnableHealingAgentRequest, EnableHealingAgentRequestFromJSON, EnableHealingAgentRequestFromJSONTyped, EnableHealingAgentRequestToJSON, EnableHealingAgentRequestToJSONTyped, instanceOfEnableHealingAgentResponse, EnableHealingAgentResponseFromJSON, EnableHealingAgentResponseFromJSONTyped, EnableHealingAgentResponseToJSON, EnableHealingAgentResponseToJSONTyped, EntityCountDtoTypeEnum, instanceOfEntityCountDto, EntityCountDtoFromJSON, EntityCountDtoFromJSONTyped, EntityCountDtoToJSON, EntityCountDtoToJSONTyped, instanceOfEntityHasExecutionMedia, EntityHasExecutionMediaFromJSON, EntityHasExecutionMediaFromJSONTyped, EntityHasExecutionMediaToJSON, EntityHasExecutionMediaToJSONTyped, instanceOfEntitySummaryDto, EntitySummaryDtoFromJSON, EntitySummaryDtoFromJSONTyped, EntitySummaryDtoToJSON, EntitySummaryDtoToJSONTyped, EntryPointDataVariationDtoContentTypeEnum, instanceOfEntryPointDataVariationDto, EntryPointDataVariationDtoFromJSON, EntryPointDataVariationDtoFromJSONTyped, EntryPointDataVariationDtoToJSON, EntryPointDataVariationDtoToJSONTyped, instanceOfEntryPointDto, EntryPointDtoFromJSON, EntryPointDtoFromJSONTyped, EntryPointDtoToJSON, EntryPointDtoToJSONTyped, EntryPointV2DtoTypeEnum, instanceOfEntryPointV2Dto, EntryPointV2DtoFromJSON, EntryPointV2DtoFromJSONTyped, EntryPointV2DtoToJSON, EntryPointV2DtoToJSONTyped, SimpleRobotDtoTypeEnum, SimpleRobotDtoHostingTypeEnum, SimpleRobotDtoProvisionTypeEnum, SimpleRobotDtoCredentialTypeEnum, instanceOfSimpleRobotDto, SimpleRobotDtoFromJSON, SimpleRobotDtoFromJSONTyped, SimpleRobotDtoToJSON, SimpleRobotDtoToJSONTyped, EnvironmentDtoTypeEnum, instanceOfEnvironmentDto, EnvironmentDtoFromJSON, EnvironmentDtoFromJSONTyped2 as EnvironmentDtoFromJSONTyped, EnvironmentDtoToJSON, EnvironmentDtoToJSONTyped2 as EnvironmentDtoToJSONTyped, instanceOfErrorResult, ErrorResultFromJSON, ErrorResultFromJSONTyped, ErrorResultToJSON, ErrorResultToJSONTyped, instanceOfExecutionSettingDefinition, ExecutionSettingDefinitionFromJSON, ExecutionSettingDefinitionFromJSONTyped, ExecutionSettingDefinitionToJSON, ExecutionSettingDefinitionToJSONTyped, ExecutionSettingsConfigurationScopeEnum, instanceOfExecutionSettingsConfiguration, ExecutionSettingsConfigurationFromJSON, ExecutionSettingsConfigurationFromJSONTyped, ExecutionSettingsConfigurationToJSON, ExecutionSettingsConfigurationToJSONTyped, instanceOfRolePrivilegeDto, RolePrivilegeDtoFromJSON, RolePrivilegeDtoFromJSONTyped, RolePrivilegeDtoToJSON, RolePrivilegeDtoToJSONTyped, instanceOfExplicitPrivilegeOfRolePrivilegeDto, ExplicitPrivilegeOfRolePrivilegeDtoFromJSON, ExplicitPrivilegeOfRolePrivilegeDtoFromJSONTyped, ExplicitPrivilegeOfRolePrivilegeDtoToJSON, ExplicitPrivilegeOfRolePrivilegeDtoToJSONTyped, UpdatePolicyDtoTypeEnum, instanceOfUpdatePolicyDto, UpdatePolicyDtoFromJSON, UpdatePolicyDtoFromJSONTyped, UpdatePolicyDtoToJSON, UpdatePolicyDtoToJSONTyped, instanceOfExplicitPrivilegeOfUpdatePolicyDto, ExplicitPrivilegeOfUpdatePolicyDtoFromJSON, ExplicitPrivilegeOfUpdatePolicyDtoFromJSONTyped, ExplicitPrivilegeOfUpdatePolicyDtoToJSON, ExplicitPrivilegeOfUpdatePolicyDtoToJSONTyped, ExportModelTypeEnum, ExportModelStatusEnum, instanceOfExportModel, ExportModelFromJSON, ExportModelFromJSONTyped, ExportModelToJSON, ExportModelToJSONTyped, instanceOfExtendedCalendarDto, ExtendedCalendarDtoFromJSON, ExtendedCalendarDtoFromJSONTyped, ExtendedCalendarDtoToJSON, ExtendedCalendarDtoToJSONTyped, ExtendedFolderDtoFolderTypeEnum, ExtendedFolderDtoProvisionTypeEnum, ExtendedFolderDtoPermissionModelEnum, ExtendedFolderDtoFeedTypeEnum, instanceOfExtendedFolderDto, ExtendedFolderDtoFromJSON, ExtendedFolderDtoFromJSONTyped, ExtendedFolderDtoToJSON, ExtendedFolderDtoToJSONTyped, instanceOfMachineVpnSettingsDto, MachineVpnSettingsDtoFromJSON, MachineVpnSettingsDtoFromJSONTyped, MachineVpnSettingsDtoToJSON, MachineVpnSettingsDtoToJSONTyped, MaintenanceWindowDtoJobStopStrategyEnum, instanceOfMaintenanceWindowDto, MaintenanceWindowDtoFromJSON, MaintenanceWindowDtoFromJSONTyped, MaintenanceWindowDtoToJSON, MaintenanceWindowDtoToJSONTyped, UpdateInfoDtoUpdateStatusEnum, UpdateInfoDtoReasonEnum, instanceOfUpdateInfoDto, UpdateInfoDtoFromJSON, UpdateInfoDtoFromJSONTyped, UpdateInfoDtoToJSON, UpdateInfoDtoToJSONTyped, instanceOfMachinesRobotVersionDto, MachinesRobotVersionDtoFromJSON, MachinesRobotVersionDtoFromJSONTyped, MachinesRobotVersionDtoToJSON, MachinesRobotVersionDtoToJSONTyped, instanceOfRobotUserDto, RobotUserDtoFromJSON, RobotUserDtoFromJSONTyped, RobotUserDtoToJSON, RobotUserDtoToJSONTyped, ExtendedMachineDtoTypeEnum, ExtendedMachineDtoScopeEnum, ExtendedMachineDtoEndpointDetectionStatusEnum, ExtendedMachineDtoAutomationTypeEnum, ExtendedMachineDtoTargetFrameworkEnum, ExtendedMachineDtoServerlessLicensingModelEnum, instanceOfExtendedMachineDto, ExtendedMachineDtoFromJSON, ExtendedMachineDtoFromJSONTyped, ExtendedMachineDtoToJSON, ExtendedMachineDtoToJSONTyped, instanceOfTrackedApplicationViewModel, TrackedApplicationViewModelFromJSON, TrackedApplicationViewModelFromJSONTyped, TrackedApplicationViewModelToJSON, TrackedApplicationViewModelToJSONTyped, instanceOfTagViewModel, TagViewModelFromJSON, TagViewModelFromJSONTyped, TagViewModelToJSON, TagViewModelToJSONTyped, instanceOfExtendedMetadata, ExtendedMetadataFromJSON, ExtendedMetadataFromJSONTyped, ExtendedMetadataToJSON, ExtendedMetadataToJSONTyped, ExtendedPersonalWorkspaceDtoFolderTypeEnum, instanceOfExtendedPersonalWorkspaceDto, ExtendedPersonalWorkspaceDtoFromJSON, ExtendedPersonalWorkspaceDtoFromJSONTyped, ExtendedPersonalWorkspaceDtoToJSON, ExtendedPersonalWorkspaceDtoToJSONTyped, ExtendedResourceOverwriteDtoResourceTypeEnum, instanceOfExtendedResourceOverwriteDto, ExtendedResourceOverwriteDtoFromJSON, ExtendedResourceOverwriteDtoFromJSONTyped, ExtendedResourceOverwriteDtoToJSON, ExtendedResourceOverwriteDtoToJSONTyped, instanceOfOrganizationUnitDto, OrganizationUnitDtoFromJSON, OrganizationUnitDtoFromJSONTyped, OrganizationUnitDtoToJSON, OrganizationUnitDtoToJSONTyped, UserRoleDtoRoleTypeEnum, instanceOfUserRoleDto, UserRoleDtoFromJSON, UserRoleDtoFromJSONTyped, UserRoleDtoToJSON, UserRoleDtoToJSONTyped, instanceOfUserNotificationSubscription, UserNotificationSubscriptionFromJSON, UserNotificationSubscriptionFromJSONTyped, UserNotificationSubscriptionToJSON, UserNotificationSubscriptionToJSONTyped, UnattendedRobotDtoCredentialTypeEnum, instanceOfUnattendedRobotDto, UnattendedRobotDtoFromJSON, UnattendedRobotDtoFromJSONTyped, UnattendedRobotDtoToJSON, UnattendedRobotDtoToJSONTyped, UserDtoTypeEnum, UserDtoProvisionTypeEnum, UserDtoLicenseTypeEnum, instanceOfUserDto, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, ExtendedRobotDtoTypeEnum, ExtendedRobotDtoHostingTypeEnum, ExtendedRobotDtoProvisionTypeEnum, ExtendedRobotDtoCredentialTypeEnum, instanceOfExtendedRobotDto, ExtendedRobotDtoFromJSON, ExtendedRobotDtoFromJSONTyped, ExtendedRobotDtoToJSON, ExtendedRobotDtoToJSONTyped, FolderDtoFolderTypeEnum, FolderDtoProvisionTypeEnum, FolderDtoPermissionModelEnum, FolderDtoFeedTypeEnum, instanceOfFolderDto, FolderDtoFromJSON, FolderDtoFromJSONTyped, FolderDtoToJSON, FolderDtoToJSONTyped, UserPreferencesDtoRedesignPreferenceEnum, UserPreferencesDtoRemoteControlPreferenceEnum, instanceOfUserPreferencesDto, UserPreferencesDtoFromJSON, UserPreferencesDtoFromJSONTyped, UserPreferencesDtoToJSON, UserPreferencesDtoToJSONTyped, ExtendedUserDtoTypeEnum, ExtendedUserDtoProvisionTypeEnum, ExtendedUserDtoLicenseTypeEnum, instanceOfExtendedUserDto, ExtendedUserDtoFromJSON, ExtendedUserDtoFromJSONTyped, ExtendedUserDtoToJSON, ExtendedUserDtoToJSONTyped, instanceOfFeedEntryDto, FeedEntryDtoFromJSON, FeedEntryDtoFromJSONTyped, FeedEntryDtoToJSON, FeedEntryDtoToJSONTyped, instanceOfFeedEntryVersionDto, FeedEntryVersionDtoFromJSON, FeedEntryVersionDtoFromJSONTyped, FeedEntryVersionDtoToJSON, FeedEntryVersionDtoToJSONTyped, instanceOfFireTriggersForTasksRequest, FireTriggersForTasksRequestFromJSON, FireTriggersForTasksRequestFromJSONTyped, FireTriggersForTasksRequestToJSON, FireTriggersForTasksRequestToJSONTyped, FolderTypeEnum, instanceOfFolder, FolderFromJSON, FolderFromJSONTyped, FolderToJSON, FolderToJSONTyped, instanceOfFolderAssignDomainUserRequest, FolderAssignDomainUserRequestFromJSON, FolderAssignDomainUserRequestFromJSONTyped, FolderAssignDomainUserRequestToJSON, FolderAssignDomainUserRequestToJSONTyped, instanceOfMachineAssignmentsDto, MachineAssignmentsDtoFromJSON, MachineAssignmentsDtoFromJSONTyped, MachineAssignmentsDtoToJSON, MachineAssignmentsDtoToJSONTyped, instanceOfFolderAssignMachinesRequest, FolderAssignMachinesRequestFromJSON, FolderAssignMachinesRequestFromJSONTyped, FolderAssignMachinesRequestToJSON, FolderAssignMachinesRequestToJSONTyped, instanceOfUserAssignmentsDto, UserAssignmentsDtoFromJSON, UserAssignmentsDtoFromJSONTyped, UserAssignmentsDtoToJSON, UserAssignmentsDtoToJSONTyped, instanceOfFolderAssignUsersRequest, FolderAssignUsersRequestFromJSON, FolderAssignUsersRequestFromJSONTyped, FolderAssignUsersRequestToJSON, FolderAssignUsersRequestToJSONTyped, SimpleUserEntityDtoTypeEnum, SimpleUserEntityDtoSourceEnum, instanceOfSimpleUserEntityDto, SimpleUserEntityDtoFromJSON, SimpleUserEntityDtoFromJSONTyped, SimpleUserEntityDtoToJSON, SimpleUserEntityDtoToJSONTyped, instanceOfRoleUsersDto, RoleUsersDtoFromJSON, RoleUsersDtoFromJSONTyped, RoleUsersDtoToJSON, RoleUsersDtoToJSONTyped, instanceOfFolderAssignmentsDto, FolderAssignmentsDtoFromJSON, FolderAssignmentsDtoFromJSONTyped, FolderAssignmentsDtoToJSON, FolderAssignmentsDtoToJSONTyped, instanceOfSelectableFolderDto, SelectableFolderDtoFromJSON, SelectableFolderDtoFromJSONTyped, SelectableFolderDtoToJSON, SelectableFolderDtoToJSONTyped, PathAwareExtendedFolderDtoFolderTypeEnum, PathAwareExtendedFolderDtoProvisionTypeEnum, PathAwareExtendedFolderDtoPermissionModelEnum, PathAwareExtendedFolderDtoFeedTypeEnum, instanceOfPathAwareExtendedFolderDto, PathAwareExtendedFolderDtoFromJSON, PathAwareExtendedFolderDtoFromJSONTyped, PathAwareExtendedFolderDtoToJSON, PathAwareExtendedFolderDtoToJSONTyped, instanceOfFolderContextDto, FolderContextDtoFromJSON, FolderContextDtoFromJSONTyped, FolderContextDtoToJSON, FolderContextDtoToJSONTyped, instanceOfFolderIdentifier, FolderIdentifierFromJSON, FolderIdentifierFromJSONTyped, FolderIdentifierToJSON, FolderIdentifierToJSONTyped, instanceOfFolderMachineInheritDto, FolderMachineInheritDtoFromJSON, FolderMachineInheritDtoFromJSONTyped, FolderMachineInheritDtoToJSON, FolderMachineInheritDtoToJSONTyped, instanceOfFolderMachineRobotsDto, FolderMachineRobotsDtoFromJSON, FolderMachineRobotsDtoFromJSONTyped, FolderMachineRobotsDtoToJSON, FolderMachineRobotsDtoToJSONTyped, FolderNavigationContextDtoProvisionTypeEnum, instanceOfFolderNavigationContextDto, FolderNavigationContextDtoFromJSON, FolderNavigationContextDtoFromJSONTyped, FolderNavigationContextDtoToJSON, FolderNavigationContextDtoToJSONTyped, FolderPermissionsDtoFolderTypeEnum, instanceOfFolderPermissionsDto, FolderPermissionsDtoFromJSON, FolderPermissionsDtoFromJSONTyped, FolderPermissionsDtoToJSON, FolderPermissionsDtoToJSONTyped, instanceOfFolderUpdateNameDescriptionRequest, FolderUpdateNameDescriptionRequestFromJSON, FolderUpdateNameDescriptionRequestFromJSONTyped, FolderUpdateNameDescriptionRequestToJSON, FolderUpdateNameDescriptionRequestToJSONTyped, instanceOfJobErrorDto, JobErrorDtoFromJSON, JobErrorDtoFromJSONTyped, JobErrorDtoToJSON, JobErrorDtoToJSONTyped, instanceOfForceStopJobsRequest, ForceStopJobsRequestFromJSON, ForceStopJobsRequestFromJSONTyped, ForceStopJobsRequestToJSON, ForceStopJobsRequestToJSONTyped, instanceOfGetItemHasVideoRecordedResponseDto, GetItemHasVideoRecordedResponseDtoFromJSON, GetItemHasVideoRecordedResponseDtoFromJSONTyped, GetItemHasVideoRecordedResponseDtoToJSON, GetItemHasVideoRecordedResponseDtoToJSONTyped, instanceOfGetReleasesBindingsRequest, GetReleasesBindingsRequestFromJSON, GetReleasesBindingsRequestFromJSONTyped, GetReleasesBindingsRequestToJSON, GetReleasesBindingsRequestToJSONTyped, instanceOfGetUsersModel, GetUsersModelFromJSON, GetUsersModelFromJSONTyped, GetUsersModelToJSON, GetUsersModelToJSONTyped, HeartbeatDtoRobotStateEnum, HeartbeatDtoJobStateEnum, HeartbeatDtoJobSubStateEnum, HeartbeatDtoRobotJobSourceEnum, instanceOfHeartbeatDto, HeartbeatDtoFromJSON, HeartbeatDtoFromJSONTyped, HeartbeatDtoToJSON, HeartbeatDtoToJSONTyped, HeartbeatPayloadCommandStateEnum, instanceOfHeartbeatPayload, HeartbeatPayloadFromJSON, HeartbeatPayloadFromJSONTyped, HeartbeatPayloadToJSON, HeartbeatPayloadToJSONTyped, instanceOfUserDetails, UserDetailsFromJSON, UserDetailsFromJSONTyped, UserDetailsToJSON, UserDetailsToJSONTyped, RobotCommandRobotTypeEnum, instanceOfRobotCommand, RobotCommandFromJSON, RobotCommandFromJSONTyped, RobotCommandToJSON, RobotCommandToJSONTyped, instanceOfHeartbeatResponse, HeartbeatResponseFromJSON, HeartbeatResponseFromJSONTyped, HeartbeatResponseToJSON, HeartbeatResponseToJSONTyped, HierarchyJobDtoProcessTypeEnum, HierarchyJobDtoStateEnum, HierarchyJobDtoPriorityEnum, HierarchyJobDtoRuntimeTypeEnum, HierarchyJobDtoTypeEnum, HierarchyJobDtoServerlessJobTypeEnum, HierarchyJobDtoSourceEnum, HierarchyJobDtoSourceTypeEnum, instanceOfHierarchyJobDto, HierarchyJobDtoFromJSON, HierarchyJobDtoFromJSONTyped, HierarchyJobDtoToJSON, HierarchyJobDtoToJSONTyped, HttpTriggerDtoCallingModeEnum, HttpTriggerDtoMethodEnum, HttpTriggerDtoCallbackModeEnum, HttpTriggerDtoTypeEnum, HttpTriggerDtoRuntimeTypeEnum, HttpTriggerDtoTargetFrameworkEnum, HttpTriggerDtoStopStrategyEnum, HttpTriggerDtoRemoteControlAccessEnum, instanceOfHttpTriggerDto, HttpTriggerDtoFromJSON, HttpTriggerDtoFromJSONTyped, HttpTriggerDtoToJSON, HttpTriggerDtoToJSONTyped, instanceOfHttpTriggersSetEnabledRequest, HttpTriggersSetEnabledRequestFromJSON, HttpTriggersSetEnabledRequestFromJSONTyped, HttpTriggersSetEnabledRequestToJSON, HttpTriggersSetEnabledRequestToJSONTyped, instanceOfInheritedPrivilegeOfRolePrivilegeDto, InheritedPrivilegeOfRolePrivilegeDtoFromJSON, InheritedPrivilegeOfRolePrivilegeDtoFromJSONTyped, InheritedPrivilegeOfRolePrivilegeDtoToJSON, InheritedPrivilegeOfRolePrivilegeDtoToJSONTyped, instanceOfInheritedPrivilegeOfUpdatePolicyDto, InheritedPrivilegeOfUpdatePolicyDtoFromJSON, InheritedPrivilegeOfUpdatePolicyDtoFromJSONTyped, InheritedPrivilegeOfUpdatePolicyDtoToJSON, InheritedPrivilegeOfUpdatePolicyDtoToJSONTyped, instanceOfJobArgumentsSchemaDto, JobArgumentsSchemaDtoFromJSON, JobArgumentsSchemaDtoFromJSONTyped, JobArgumentsSchemaDtoToJSON, JobArgumentsSchemaDtoToJSONTyped, instanceOfJobAttachmentDto, JobAttachmentDtoFromJSON, JobAttachmentDtoFromJSONTyped, JobAttachmentDtoToJSON, JobAttachmentDtoToJSONTyped, instanceOfReleaseVersionDto, ReleaseVersionDtoFromJSON, ReleaseVersionDtoFromJSONTyped, ReleaseVersionDtoToJSON, ReleaseVersionDtoToJSONTyped, ProcessSettingsDtoRunModeEnum, instanceOfProcessSettingsDto, ProcessSettingsDtoFromJSON, ProcessSettingsDtoFromJSONTyped, ProcessSettingsDtoToJSON, ProcessSettingsDtoToJSONTyped, SimpleReleaseDtoProcessTypeEnum, SimpleReleaseDtoJobPriorityEnum, SimpleReleaseDtoTargetFrameworkEnum, SimpleReleaseDtoRobotSizeEnum, SimpleReleaseDtoRemoteControlAccessEnum, SimpleReleaseDtoPublisherLicenseEnum, instanceOfSimpleReleaseDto, SimpleReleaseDtoFromJSON, SimpleReleaseDtoFromJSONTyped, SimpleReleaseDtoToJSON, SimpleReleaseDtoToJSONTyped, MachineDtoTypeEnum, MachineDtoScopeEnum, MachineDtoEndpointDetectionStatusEnum, MachineDtoAutomationTypeEnum, MachineDtoTargetFrameworkEnum, MachineDtoServerlessLicensingModelEnum, instanceOfMachineDto, MachineDtoFromJSON, MachineDtoFromJSONTyped, MachineDtoToJSON, MachineDtoToJSONTyped, JobDtoStateEnum, JobDtoJobPriorityEnum, JobDtoSourceTypeEnum, JobDtoTypeEnum, JobDtoStopStrategyEnum, JobDtoRuntimeTypeEnum, JobDtoProcessTypeEnum, JobDtoRemoteControlAccessEnum, JobDtoServerlessJobTypeEnum, JobDtoAutoHealStatusEnum, instanceOfJobDto, JobDtoFromJSON, JobDtoFromJSONTyped, JobDtoToJSON, JobDtoToJSONTyped, instanceOfJobMachineInfraTargetDto, JobMachineInfraTargetDtoFromJSON, JobMachineInfraTargetDtoFromJSONTyped, JobMachineInfraTargetDtoToJSON, JobMachineInfraTargetDtoToJSONTyped, JobStateChangeDtoStateEnum, JobStateChangeDtoPreviousStateEnum, JobStateChangeDtoResumeItemTypeEnum, instanceOfJobStateChangeDto, JobStateChangeDtoFromJSON, JobStateChangeDtoFromJSONTyped, JobStateChangeDtoToJSON, JobStateChangeDtoToJSONTyped, instanceOfJobStatistics, JobStatisticsFromJSON, JobStatisticsFromJSONTyped, JobStatisticsToJSON, JobStatisticsToJSONTyped, JobStatusOutputInfoStateEnum, JobStatusOutputInfoTargetFrameworkEnum, instanceOfJobStatusOutputInfo, JobStatusOutputInfoFromJSON, JobStatusOutputInfoFromJSONTyped, JobStatusOutputInfoToJSON, JobStatusOutputInfoToJSONTyped, JobsHaveExecutionMediaRequestFormatEnum, instanceOfJobsHaveExecutionMediaRequest, JobsHaveExecutionMediaRequestFromJSON, JobsHaveExecutionMediaRequestFromJSONTyped, JobsHaveExecutionMediaRequestToJSON, JobsHaveExecutionMediaRequestToJSONTyped, instanceOfKeyValuePairOfStringString, KeyValuePairOfStringStringFromJSON, KeyValuePairOfStringStringFromJSONTyped, KeyValuePairOfStringStringToJSON, KeyValuePairOfStringStringToJSONTyped, instanceOfLanguageInfo, LanguageInfoFromJSON, LanguageInfoFromJSONTyped, LanguageInfoToJSON, LanguageInfoToJSONTyped, LibraryDtoProjectTypeEnum, instanceOfLibraryDto, LibraryDtoFromJSON, LibraryDtoFromJSONTyped, LibraryDtoToJSON, LibraryDtoToJSONTyped, instanceOfLicenseDto, LicenseDtoFromJSON, LicenseDtoFromJSONTyped, LicenseDtoToJSON, LicenseDtoToJSONTyped, instanceOfLicenseNamedUserDto, LicenseNamedUserDtoFromJSON, LicenseNamedUserDtoFromJSONTyped, LicenseNamedUserDtoToJSON, LicenseNamedUserDtoToJSONTyped, instanceOfLicenseRequest, LicenseRequestFromJSON, LicenseRequestFromJSONTyped, LicenseRequestToJSON, LicenseRequestToJSONTyped, LicenseRuntimeDtoMachineTypeEnum, LicenseRuntimeDtoMachineScopeEnum, instanceOfLicenseRuntimeDto, LicenseRuntimeDtoFromJSON, LicenseRuntimeDtoFromJSONTyped, LicenseRuntimeDtoToJSON, LicenseRuntimeDtoToJSONTyped, LicensesToggleEnabledRequestRobotTypeEnum, instanceOfLicensesToggleEnabledRequest, LicensesToggleEnabledRequestFromJSON, LicensesToggleEnabledRequestFromJSONTyped, LicensesToggleEnabledRequestToJSON, LicensesToggleEnabledRequestToJSONTyped, instanceOfListBlobItemsResponseDto, ListBlobItemsResponseDtoFromJSON, ListBlobItemsResponseDtoFromJSONTyped, ListBlobItemsResponseDtoToJSON, ListBlobItemsResponseDtoToJSONTyped, instanceOfListResultDtoOfLanguageInfo, ListResultDtoOfLanguageInfoFromJSON, ListResultDtoOfLanguageInfoFromJSONTyped, ListResultDtoOfLanguageInfoToJSON, ListResultDtoOfLanguageInfoToJSONTyped, instanceOfListResultDtoOfNameValueDto, ListResultDtoOfNameValueDtoFromJSON, ListResultDtoOfNameValueDtoFromJSONTyped, ListResultDtoOfNameValueDtoToJSON, ListResultDtoOfNameValueDtoToJSONTyped, LogDtoLevelEnum, LogDtoRuntimeTypeEnum, instanceOfLogDto, LogDtoFromJSON, LogDtoFromJSONTyped, LogDtoToJSON, LogDtoToJSONTyped, instanceOfLongVersionedEntity, LongVersionedEntityFromJSON, LongVersionedEntityFromJSONTyped, LongVersionedEntityToJSON, LongVersionedEntityToJSONTyped, instanceOfMachineAssignedEntitiesDto, MachineAssignedEntitiesDtoFromJSON, MachineAssignedEntitiesDtoFromJSONTyped, MachineAssignedEntitiesDtoToJSON, MachineAssignedEntitiesDtoToJSONTyped, instanceOfMachineDeleteBulkRequest, MachineDeleteBulkRequestFromJSON, MachineDeleteBulkRequestFromJSONTyped, MachineDeleteBulkRequestToJSON, MachineDeleteBulkRequestToJSONTyped, MachineFolderDtoTypeEnum, MachineFolderDtoScopeEnum, MachineFolderDtoEndpointDetectionStatusEnum, MachineFolderDtoAutomationTypeEnum, MachineFolderDtoTargetFrameworkEnum, MachineFolderDtoServerlessLicensingModelEnum, instanceOfMachineFolderDto, MachineFolderDtoFromJSON, MachineFolderDtoFromJSONTyped, MachineFolderDtoToJSON, MachineFolderDtoToJSONTyped, instanceOfMachineRobotDto, MachineRobotDtoFromJSON, MachineRobotDtoFromJSONTyped, MachineRobotDtoToJSON, MachineRobotDtoToJSONTyped, MachineRuntimeDtoTypeEnum, instanceOfMachineRuntimeDto, MachineRuntimeDtoFromJSON, MachineRuntimeDtoFromJSONTyped, MachineRuntimeDtoToJSON, MachineRuntimeDtoToJSONTyped, instanceOfRobotLicenseDto, RobotLicenseDtoFromJSON, RobotLicenseDtoFromJSONTyped, RobotLicenseDtoToJSON, RobotLicenseDtoToJSONTyped, RobotWithLicenseDtoTypeEnum, RobotWithLicenseDtoHostingTypeEnum, RobotWithLicenseDtoProvisionTypeEnum, RobotWithLicenseDtoCredentialTypeEnum, instanceOfRobotWithLicenseDto, RobotWithLicenseDtoFromJSON, RobotWithLicenseDtoFromJSONTyped, RobotWithLicenseDtoToJSON, RobotWithLicenseDtoToJSONTyped, MachineSessionDtoStateEnum, MachineSessionDtoLicenseErrorCodeEnum, MachineSessionDtoRobotSessionTypeEnum, MachineSessionDtoSourceEnum, MachineSessionDtoPlatformEnum, instanceOfMachineSessionDto, MachineSessionDtoFromJSON, MachineSessionDtoFromJSONTyped, MachineSessionDtoToJSON, MachineSessionDtoToJSONTyped, MachineSessionRuntimeDtoMaintenanceModeEnum, MachineSessionRuntimeDtoRuntimeTypeEnum, MachineSessionRuntimeDtoMachineTypeEnum, MachineSessionRuntimeDtoMachineScopeEnum, MachineSessionRuntimeDtoStatusEnum, MachineSessionRuntimeDtoPlatformEnum, instanceOfMachineSessionRuntimeDto, MachineSessionRuntimeDtoFromJSON, MachineSessionRuntimeDtoFromJSONTyped, MachineSessionRuntimeDtoToJSON, MachineSessionRuntimeDtoToJSONTyped, instanceOfMachinesFolderAssociationsDto, MachinesFolderAssociationsDtoFromJSON, MachinesFolderAssociationsDtoFromJSONTyped, MachinesFolderAssociationsDtoToJSON, MachinesFolderAssociationsDtoToJSONTyped, MoveFolderMachineChangeOldMachineFolderStateEnum, MoveFolderMachineChangeNewMachineFolderStateEnum, instanceOfMoveFolderMachineChange, MoveFolderMachineChangeFromJSON, MoveFolderMachineChangeFromJSONTyped, MoveFolderMachineChangeToJSON, MoveFolderMachineChangeToJSONTyped, instanceOfODataValueOfBoolean, ODataValueOfBooleanFromJSON, ODataValueOfBooleanFromJSONTyped, ODataValueOfBooleanToJSON, ODataValueOfBooleanToJSONTyped, instanceOfODataValueOfGuid, ODataValueOfGuidFromJSON, ODataValueOfGuidFromJSONTyped, ODataValueOfGuidToJSON, ODataValueOfGuidToJSONTyped, instanceOfODataValueOfIDictionaryOfInt64Boolean, ODataValueOfIDictionaryOfInt64BooleanFromJSON, ODataValueOfIDictionaryOfInt64BooleanFromJSONTyped, ODataValueOfIDictionaryOfInt64BooleanToJSON, ODataValueOfIDictionaryOfInt64BooleanToJSONTyped, instanceOfODataValueOfIEnumerableOfApiTriggerDto, ODataValueOfIEnumerableOfApiTriggerDtoFromJSON, ODataValueOfIEnumerableOfApiTriggerDtoFromJSONTyped, ODataValueOfIEnumerableOfApiTriggerDtoToJSON, ODataValueOfIEnumerableOfApiTriggerDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfAssetDto, ODataValueOfIEnumerableOfAssetDtoFromJSON, ODataValueOfIEnumerableOfAssetDtoFromJSONTyped, ODataValueOfIEnumerableOfAssetDtoToJSON, ODataValueOfIEnumerableOfAssetDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfAuditLogDto, ODataValueOfIEnumerableOfAuditLogDtoFromJSON, ODataValueOfIEnumerableOfAuditLogDtoFromJSONTyped, ODataValueOfIEnumerableOfAuditLogDtoToJSON, ODataValueOfIEnumerableOfAuditLogDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfAuditLogEntityDto, ODataValueOfIEnumerableOfAuditLogEntityDtoFromJSON, ODataValueOfIEnumerableOfAuditLogEntityDtoFromJSONTyped, ODataValueOfIEnumerableOfAuditLogEntityDtoToJSON, ODataValueOfIEnumerableOfAuditLogEntityDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfBlobFileDto, ODataValueOfIEnumerableOfBlobFileDtoFromJSON, ODataValueOfIEnumerableOfBlobFileDtoFromJSONTyped, ODataValueOfIEnumerableOfBlobFileDtoToJSON, ODataValueOfIEnumerableOfBlobFileDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfBucketDto, ODataValueOfIEnumerableOfBucketDtoFromJSON, ODataValueOfIEnumerableOfBucketDtoFromJSONTyped, ODataValueOfIEnumerableOfBucketDtoToJSON, ODataValueOfIEnumerableOfBucketDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfBulkItemDtoOfString, ODataValueOfIEnumerableOfBulkItemDtoOfStringFromJSON, ODataValueOfIEnumerableOfBulkItemDtoOfStringFromJSONTyped, ODataValueOfIEnumerableOfBulkItemDtoOfStringToJSON, ODataValueOfIEnumerableOfBulkItemDtoOfStringToJSONTyped, instanceOfODataValueOfIEnumerableOfConfigurationEntry, ODataValueOfIEnumerableOfConfigurationEntryFromJSON, ODataValueOfIEnumerableOfConfigurationEntryFromJSONTyped, ODataValueOfIEnumerableOfConfigurationEntryToJSON, ODataValueOfIEnumerableOfConfigurationEntryToJSONTyped, instanceOfODataValueOfIEnumerableOfCredentialStoreDto, ODataValueOfIEnumerableOfCredentialStoreDtoFromJSON, ODataValueOfIEnumerableOfCredentialStoreDtoFromJSONTyped, ODataValueOfIEnumerableOfCredentialStoreDtoToJSON, ODataValueOfIEnumerableOfCredentialStoreDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfCredentialStoreResourceDto, ODataValueOfIEnumerableOfCredentialStoreResourceDtoFromJSON, ODataValueOfIEnumerableOfCredentialStoreResourceDtoFromJSONTyped, ODataValueOfIEnumerableOfCredentialStoreResourceDtoToJSON, ODataValueOfIEnumerableOfCredentialStoreResourceDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfCredentialsProxyResourceDto, ODataValueOfIEnumerableOfCredentialsProxyResourceDtoFromJSON, ODataValueOfIEnumerableOfCredentialsProxyResourceDtoFromJSONTyped, ODataValueOfIEnumerableOfCredentialsProxyResourceDtoToJSON, ODataValueOfIEnumerableOfCredentialsProxyResourceDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfEntryPointDto, ODataValueOfIEnumerableOfEntryPointDtoFromJSON, ODataValueOfIEnumerableOfEntryPointDtoFromJSONTyped, ODataValueOfIEnumerableOfEntryPointDtoToJSON, ODataValueOfIEnumerableOfEntryPointDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfEntryPointV2Dto, ODataValueOfIEnumerableOfEntryPointV2DtoFromJSON, ODataValueOfIEnumerableOfEntryPointV2DtoFromJSONTyped, ODataValueOfIEnumerableOfEntryPointV2DtoToJSON, ODataValueOfIEnumerableOfEntryPointV2DtoToJSONTyped, instanceOfODataValueOfIEnumerableOfExportModel, ODataValueOfIEnumerableOfExportModelFromJSON, ODataValueOfIEnumerableOfExportModelFromJSONTyped, ODataValueOfIEnumerableOfExportModelToJSON, ODataValueOfIEnumerableOfExportModelToJSONTyped, instanceOfODataValueOfIEnumerableOfExtendedCalendarDto, ODataValueOfIEnumerableOfExtendedCalendarDtoFromJSON, ODataValueOfIEnumerableOfExtendedCalendarDtoFromJSONTyped, ODataValueOfIEnumerableOfExtendedCalendarDtoToJSON, ODataValueOfIEnumerableOfExtendedCalendarDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfExtendedFolderDto, ODataValueOfIEnumerableOfExtendedFolderDtoFromJSON, ODataValueOfIEnumerableOfExtendedFolderDtoFromJSONTyped, ODataValueOfIEnumerableOfExtendedFolderDtoToJSON, ODataValueOfIEnumerableOfExtendedFolderDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfExtendedMachineDto, ODataValueOfIEnumerableOfExtendedMachineDtoFromJSON, ODataValueOfIEnumerableOfExtendedMachineDtoFromJSONTyped, ODataValueOfIEnumerableOfExtendedMachineDtoToJSON, ODataValueOfIEnumerableOfExtendedMachineDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfExtendedRobotDto, ODataValueOfIEnumerableOfExtendedRobotDtoFromJSON, ODataValueOfIEnumerableOfExtendedRobotDtoFromJSONTyped, ODataValueOfIEnumerableOfExtendedRobotDtoToJSON, ODataValueOfIEnumerableOfExtendedRobotDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfFeedEntryDto, ODataValueOfIEnumerableOfFeedEntryDtoFromJSON, ODataValueOfIEnumerableOfFeedEntryDtoFromJSONTyped, ODataValueOfIEnumerableOfFeedEntryDtoToJSON, ODataValueOfIEnumerableOfFeedEntryDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfFeedEntryVersionDto, ODataValueOfIEnumerableOfFeedEntryVersionDtoFromJSON, ODataValueOfIEnumerableOfFeedEntryVersionDtoFromJSONTyped, ODataValueOfIEnumerableOfFeedEntryVersionDtoToJSON, ODataValueOfIEnumerableOfFeedEntryVersionDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfFolderDto, ODataValueOfIEnumerableOfFolderDtoFromJSON, ODataValueOfIEnumerableOfFolderDtoFromJSONTyped, ODataValueOfIEnumerableOfFolderDtoToJSON, ODataValueOfIEnumerableOfFolderDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfHttpTriggerDto, ODataValueOfIEnumerableOfHttpTriggerDtoFromJSON, ODataValueOfIEnumerableOfHttpTriggerDtoFromJSONTyped, ODataValueOfIEnumerableOfHttpTriggerDtoToJSON, ODataValueOfIEnumerableOfHttpTriggerDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfInt64, ODataValueOfIEnumerableOfInt64FromJSON, ODataValueOfIEnumerableOfInt64FromJSONTyped, ODataValueOfIEnumerableOfInt64ToJSON, ODataValueOfIEnumerableOfInt64ToJSONTyped, instanceOfODataValueOfIEnumerableOfJobDto, ODataValueOfIEnumerableOfJobDtoFromJSON, ODataValueOfIEnumerableOfJobDtoFromJSONTyped, ODataValueOfIEnumerableOfJobDtoToJSON, ODataValueOfIEnumerableOfJobDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfKeyValuePairOfStringString, ODataValueOfIEnumerableOfKeyValuePairOfStringStringFromJSON, ODataValueOfIEnumerableOfKeyValuePairOfStringStringFromJSONTyped, ODataValueOfIEnumerableOfKeyValuePairOfStringStringToJSON, ODataValueOfIEnumerableOfKeyValuePairOfStringStringToJSONTyped, instanceOfODataValueOfIEnumerableOfLibraryDto, ODataValueOfIEnumerableOfLibraryDtoFromJSON, ODataValueOfIEnumerableOfLibraryDtoFromJSONTyped, ODataValueOfIEnumerableOfLibraryDtoToJSON, ODataValueOfIEnumerableOfLibraryDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfLicenseNamedUserDto, ODataValueOfIEnumerableOfLicenseNamedUserDtoFromJSON, ODataValueOfIEnumerableOfLicenseNamedUserDtoFromJSONTyped, ODataValueOfIEnumerableOfLicenseNamedUserDtoToJSON, ODataValueOfIEnumerableOfLicenseNamedUserDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfLicenseRuntimeDto, ODataValueOfIEnumerableOfLicenseRuntimeDtoFromJSON, ODataValueOfIEnumerableOfLicenseRuntimeDtoFromJSONTyped, ODataValueOfIEnumerableOfLicenseRuntimeDtoToJSON, ODataValueOfIEnumerableOfLicenseRuntimeDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfLogDto, ODataValueOfIEnumerableOfLogDtoFromJSON, ODataValueOfIEnumerableOfLogDtoFromJSONTyped, ODataValueOfIEnumerableOfLogDtoToJSON, ODataValueOfIEnumerableOfLogDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfMachineAssignedEntitiesDto, ODataValueOfIEnumerableOfMachineAssignedEntitiesDtoFromJSON, ODataValueOfIEnumerableOfMachineAssignedEntitiesDtoFromJSONTyped, ODataValueOfIEnumerableOfMachineAssignedEntitiesDtoToJSON, ODataValueOfIEnumerableOfMachineAssignedEntitiesDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfMachineDto, ODataValueOfIEnumerableOfMachineDtoFromJSON, ODataValueOfIEnumerableOfMachineDtoFromJSONTyped, ODataValueOfIEnumerableOfMachineDtoToJSON, ODataValueOfIEnumerableOfMachineDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfMachineFolderDto, ODataValueOfIEnumerableOfMachineFolderDtoFromJSON, ODataValueOfIEnumerableOfMachineFolderDtoFromJSONTyped, ODataValueOfIEnumerableOfMachineFolderDtoToJSON, ODataValueOfIEnumerableOfMachineFolderDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfMachineRuntimeDto, ODataValueOfIEnumerableOfMachineRuntimeDtoFromJSON, ODataValueOfIEnumerableOfMachineRuntimeDtoFromJSONTyped, ODataValueOfIEnumerableOfMachineRuntimeDtoToJSON, ODataValueOfIEnumerableOfMachineRuntimeDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfMachineSessionDto, ODataValueOfIEnumerableOfMachineSessionDtoFromJSON, ODataValueOfIEnumerableOfMachineSessionDtoFromJSONTyped, ODataValueOfIEnumerableOfMachineSessionDtoToJSON, ODataValueOfIEnumerableOfMachineSessionDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfMachineSessionRuntimeDto, ODataValueOfIEnumerableOfMachineSessionRuntimeDtoFromJSON, ODataValueOfIEnumerableOfMachineSessionRuntimeDtoFromJSONTyped, ODataValueOfIEnumerableOfMachineSessionRuntimeDtoToJSON, ODataValueOfIEnumerableOfMachineSessionRuntimeDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfMoveFolderMachineChange, ODataValueOfIEnumerableOfMoveFolderMachineChangeFromJSON, ODataValueOfIEnumerableOfMoveFolderMachineChangeFromJSONTyped, ODataValueOfIEnumerableOfMoveFolderMachineChangeToJSON, ODataValueOfIEnumerableOfMoveFolderMachineChangeToJSONTyped, instanceOfPackageResourcePropertyDto, PackageResourcePropertyDtoFromJSON, PackageResourcePropertyDtoFromJSONTyped, PackageResourcePropertyDtoToJSON, PackageResourcePropertyDtoToJSONTyped, PackageResourceDtoResourceTypeEnum, PackageResourceDtoFolderTypeEnum, PackageResourceDtoFolderProvisionTypeEnum, PackageResourceDtoValidationResultEnum, instanceOfPackageResourceDto, PackageResourceDtoFromJSON, PackageResourceDtoFromJSONTyped, PackageResourceDtoToJSON, PackageResourceDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfPackageResourceDto, ODataValueOfIEnumerableOfPackageResourceDtoFromJSON, ODataValueOfIEnumerableOfPackageResourceDtoFromJSONTyped, ODataValueOfIEnumerableOfPackageResourceDtoToJSON, ODataValueOfIEnumerableOfPackageResourceDtoToJSONTyped, PermissionDtoScopeEnum, instanceOfPermissionDto, PermissionDtoFromJSON, PermissionDtoFromJSONTyped, PermissionDtoToJSON, PermissionDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfPermissionDto, ODataValueOfIEnumerableOfPermissionDtoFromJSON, ODataValueOfIEnumerableOfPermissionDtoFromJSONTyped, ODataValueOfIEnumerableOfPermissionDtoToJSON, ODataValueOfIEnumerableOfPermissionDtoToJSONTyped, instanceOfPersonalWorkspaceDto, PersonalWorkspaceDtoFromJSON, PersonalWorkspaceDtoFromJSONTyped, PersonalWorkspaceDtoToJSON, PersonalWorkspaceDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfPersonalWorkspaceDto, ODataValueOfIEnumerableOfPersonalWorkspaceDtoFromJSON, ODataValueOfIEnumerableOfPersonalWorkspaceDtoFromJSONTyped, ODataValueOfIEnumerableOfPersonalWorkspaceDtoToJSON, ODataValueOfIEnumerableOfPersonalWorkspaceDtoToJSONTyped, ProcessDtoTargetFrameworkEnum, ProcessDtoPackageTypeEnum, ProcessDtoProjectTypeEnum, instanceOfProcessDto, ProcessDtoFromJSON, ProcessDtoFromJSONTyped, ProcessDtoToJSON, ProcessDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfProcessDto, ODataValueOfIEnumerableOfProcessDtoFromJSON, ODataValueOfIEnumerableOfProcessDtoFromJSONTyped, ODataValueOfIEnumerableOfProcessDtoToJSON, ODataValueOfIEnumerableOfProcessDtoToJSONTyped, instanceOfRobotExecutorDto, RobotExecutorDtoFromJSON, RobotExecutorDtoFromJSONTyped, RobotExecutorDtoToJSON, RobotExecutorDtoToJSONTyped, ProcessScheduleDtoJobPriorityEnum, ProcessScheduleDtoRuntimeTypeEnum, ProcessScheduleDtoStopStrategyEnum, instanceOfProcessScheduleDto, ProcessScheduleDtoFromJSON, ProcessScheduleDtoFromJSONTyped, ProcessScheduleDtoToJSON, ProcessScheduleDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfProcessScheduleDto, ODataValueOfIEnumerableOfProcessScheduleDtoFromJSON, ODataValueOfIEnumerableOfProcessScheduleDtoFromJSONTyped, ODataValueOfIEnumerableOfProcessScheduleDtoToJSON, ODataValueOfIEnumerableOfProcessScheduleDtoToJSONTyped, instanceOfQueueDefinitionDto, QueueDefinitionDtoFromJSON, QueueDefinitionDtoFromJSONTyped, QueueDefinitionDtoToJSON, QueueDefinitionDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfQueueDefinitionDto, ODataValueOfIEnumerableOfQueueDefinitionDtoFromJSON, ODataValueOfIEnumerableOfQueueDefinitionDtoFromJSONTyped, ODataValueOfIEnumerableOfQueueDefinitionDtoToJSON, ODataValueOfIEnumerableOfQueueDefinitionDtoToJSONTyped, SimpleUserDtoTypeEnum, SimpleUserDtoProvisionTypeEnum, SimpleUserDtoLicenseTypeEnum, instanceOfSimpleUserDto, SimpleUserDtoFromJSON, SimpleUserDtoFromJSONTyped, SimpleUserDtoToJSON, SimpleUserDtoToJSONTyped, instanceOfQueueItemErrorDto, QueueItemErrorDtoFromJSON, QueueItemErrorDtoFromJSONTyped, QueueItemErrorDtoToJSON, QueueItemErrorDtoToJSONTyped, ProcessingExceptionDtoTypeEnum, instanceOfProcessingExceptionDto, ProcessingExceptionDtoFromJSON, ProcessingExceptionDtoFromJSONTyped, ProcessingExceptionDtoToJSON, ProcessingExceptionDtoToJSONTyped, QueueItemDtoStatusEnum, QueueItemDtoReviewStatusEnum, QueueItemDtoProcessingExceptionTypeEnum, QueueItemDtoPriorityEnum, instanceOfQueueItemDto, QueueItemDtoFromJSON, QueueItemDtoFromJSONTyped, QueueItemDtoToJSON, QueueItemDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfQueueItemDto, ODataValueOfIEnumerableOfQueueItemDtoFromJSON, ODataValueOfIEnumerableOfQueueItemDtoFromJSONTyped, ODataValueOfIEnumerableOfQueueItemDtoToJSON, ODataValueOfIEnumerableOfQueueItemDtoToJSONTyped, QueueListModelRetentionActionEnum, QueueListModelStaleRetentionActionEnum, instanceOfQueueListModel, QueueListModelFromJSON, QueueListModelFromJSONTyped, QueueListModelToJSON, QueueListModelToJSONTyped, instanceOfODataValueOfIEnumerableOfQueueListModel, ODataValueOfIEnumerableOfQueueListModelFromJSON, ODataValueOfIEnumerableOfQueueListModelFromJSONTyped, ODataValueOfIEnumerableOfQueueListModelToJSON, ODataValueOfIEnumerableOfQueueListModelToJSONTyped, QueueProcessingRecordDtoReportTypeEnum, instanceOfQueueProcessingRecordDto, QueueProcessingRecordDtoFromJSON, QueueProcessingRecordDtoFromJSONTyped, QueueProcessingRecordDtoToJSON, QueueProcessingRecordDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfQueueProcessingRecordDto, ODataValueOfIEnumerableOfQueueProcessingRecordDtoFromJSON, ODataValueOfIEnumerableOfQueueProcessingRecordDtoFromJSONTyped, ODataValueOfIEnumerableOfQueueProcessingRecordDtoToJSON, ODataValueOfIEnumerableOfQueueProcessingRecordDtoToJSONTyped, instanceOfQueueProcessingStatusDto, QueueProcessingStatusDtoFromJSON, QueueProcessingStatusDtoFromJSONTyped, QueueProcessingStatusDtoToJSON, QueueProcessingStatusDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfQueueProcessingStatusDto, ODataValueOfIEnumerableOfQueueProcessingStatusDtoFromJSON, ODataValueOfIEnumerableOfQueueProcessingStatusDtoFromJSONTyped, ODataValueOfIEnumerableOfQueueProcessingStatusDtoToJSON, ODataValueOfIEnumerableOfQueueProcessingStatusDtoToJSONTyped, ReleaseDtoProcessTypeEnum, ReleaseDtoJobPriorityEnum, ReleaseDtoTargetFrameworkEnum, ReleaseDtoRobotSizeEnum, ReleaseDtoRemoteControlAccessEnum, ReleaseDtoPublisherLicenseEnum, instanceOfReleaseDto, ReleaseDtoFromJSON, ReleaseDtoFromJSONTyped, ReleaseDtoToJSON, ReleaseDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfReleaseDto, ODataValueOfIEnumerableOfReleaseDtoFromJSON, ODataValueOfIEnumerableOfReleaseDtoFromJSONTyped, ODataValueOfIEnumerableOfReleaseDtoToJSON, ODataValueOfIEnumerableOfReleaseDtoToJSONTyped, ReleaseListModelRetentionActionEnum, ReleaseListModelStaleRetentionActionEnum, ReleaseListModelOrganizationUnitTypeEnum, ReleaseListModelProcessTypeEnum, ReleaseListModelJobPriorityEnum, ReleaseListModelTargetFrameworkEnum, ReleaseListModelRobotSizeEnum, ReleaseListModelRemoteControlAccessEnum, ReleaseListModelPublisherLicenseEnum, instanceOfReleaseListModel, ReleaseListModelFromJSON, ReleaseListModelFromJSONTyped, ReleaseListModelToJSON, ReleaseListModelToJSONTyped, instanceOfODataValueOfIEnumerableOfReleaseListModel, ODataValueOfIEnumerableOfReleaseListModelFromJSON, ODataValueOfIEnumerableOfReleaseListModelFromJSONTyped, ODataValueOfIEnumerableOfReleaseListModelToJSON, ODataValueOfIEnumerableOfReleaseListModelToJSONTyped, instanceOfReleaseTrayBindingsModel, ReleaseTrayBindingsModelFromJSON, ReleaseTrayBindingsModelFromJSONTyped, ReleaseTrayBindingsModelToJSON, ReleaseTrayBindingsModelToJSONTyped, instanceOfODataValueOfIEnumerableOfReleaseTrayBindingsModel, ODataValueOfIEnumerableOfReleaseTrayBindingsModelFromJSON, ODataValueOfIEnumerableOfReleaseTrayBindingsModelFromJSONTyped, ODataValueOfIEnumerableOfReleaseTrayBindingsModelToJSON, ODataValueOfIEnumerableOfReleaseTrayBindingsModelToJSONTyped, ReleaseUserEventTriggerStatusDtoStatusEnum, instanceOfReleaseUserEventTriggerStatusDto, ReleaseUserEventTriggerStatusDtoFromJSON, ReleaseUserEventTriggerStatusDtoFromJSONTyped, ReleaseUserEventTriggerStatusDtoToJSON, ReleaseUserEventTriggerStatusDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfReleaseUserEventTriggerStatusDto, ODataValueOfIEnumerableOfReleaseUserEventTriggerStatusDtoFromJSON, ODataValueOfIEnumerableOfReleaseUserEventTriggerStatusDtoFromJSONTyped, ODataValueOfIEnumerableOfReleaseUserEventTriggerStatusDtoToJSON, ODataValueOfIEnumerableOfReleaseUserEventTriggerStatusDtoToJSONTyped, ReleaseUserOverwritesDtoStatusEnum, instanceOfReleaseUserOverwritesDto, ReleaseUserOverwritesDtoFromJSON, ReleaseUserOverwritesDtoFromJSONTyped, ReleaseUserOverwritesDtoToJSON, ReleaseUserOverwritesDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfReleaseUserOverwritesDto, ODataValueOfIEnumerableOfReleaseUserOverwritesDtoFromJSON, ODataValueOfIEnumerableOfReleaseUserOverwritesDtoFromJSONTyped, ODataValueOfIEnumerableOfReleaseUserOverwritesDtoToJSON, ODataValueOfIEnumerableOfReleaseUserOverwritesDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfResourceOverwriteDto, ODataValueOfIEnumerableOfResourceOverwriteDtoFromJSON, ODataValueOfIEnumerableOfResourceOverwriteDtoFromJSONTyped, ODataValueOfIEnumerableOfResourceOverwriteDtoToJSON, ODataValueOfIEnumerableOfResourceOverwriteDtoToJSONTyped, RobotDtoTypeEnum, RobotDtoHostingTypeEnum, RobotDtoProvisionTypeEnum, RobotDtoCredentialTypeEnum, instanceOfRobotDto, RobotDtoFromJSON, RobotDtoFromJSONTyped, RobotDtoToJSON, RobotDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfRobotDto, ODataValueOfIEnumerableOfRobotDtoFromJSON, ODataValueOfIEnumerableOfRobotDtoFromJSONTyped, ODataValueOfIEnumerableOfRobotDtoToJSON, ODataValueOfIEnumerableOfRobotDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfRobotUserDto, ODataValueOfIEnumerableOfRobotUserDtoFromJSON, ODataValueOfIEnumerableOfRobotUserDtoFromJSONTyped, ODataValueOfIEnumerableOfRobotUserDtoToJSON, ODataValueOfIEnumerableOfRobotUserDtoToJSONTyped, RobotsFromFolderModelUserTypeEnum, RobotsFromFolderModelTypeEnum, RobotsFromFolderModelHostingTypeEnum, RobotsFromFolderModelProvisionTypeEnum, RobotsFromFolderModelCredentialTypeEnum, instanceOfRobotsFromFolderModel, RobotsFromFolderModelFromJSON, RobotsFromFolderModelFromJSONTyped, RobotsFromFolderModelToJSON, RobotsFromFolderModelToJSONTyped, instanceOfODataValueOfIEnumerableOfRobotsFromFolderModel, ODataValueOfIEnumerableOfRobotsFromFolderModelFromJSON, ODataValueOfIEnumerableOfRobotsFromFolderModelFromJSONTyped, ODataValueOfIEnumerableOfRobotsFromFolderModelToJSON, ODataValueOfIEnumerableOfRobotsFromFolderModelToJSONTyped, RoleDtoTypeEnum, instanceOfRoleDto, RoleDtoFromJSON, RoleDtoFromJSONTyped, RoleDtoToJSON, RoleDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfRoleDto, ODataValueOfIEnumerableOfRoleDtoFromJSON, ODataValueOfIEnumerableOfRoleDtoFromJSONTyped, ODataValueOfIEnumerableOfRoleDtoToJSON, ODataValueOfIEnumerableOfRoleDtoToJSONTyped, RunningJobForSessisonDtoStateEnum, RunningJobForSessisonDtoRuntimeTypeEnum, instanceOfRunningJobForSessisonDto, RunningJobForSessisonDtoFromJSON, RunningJobForSessisonDtoFromJSONTyped, RunningJobForSessisonDtoToJSON, RunningJobForSessisonDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfRunningJobForSessisonDto, ODataValueOfIEnumerableOfRunningJobForSessisonDtoFromJSON, ODataValueOfIEnumerableOfRunningJobForSessisonDtoFromJSONTyped, ODataValueOfIEnumerableOfRunningJobForSessisonDtoToJSON, ODataValueOfIEnumerableOfRunningJobForSessisonDtoToJSONTyped, instanceOfSearchUserDto, SearchUserDtoFromJSON, SearchUserDtoFromJSONTyped, SearchUserDtoToJSON, SearchUserDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfSearchUserDto, ODataValueOfIEnumerableOfSearchUserDtoFromJSON, ODataValueOfIEnumerableOfSearchUserDtoFromJSONTyped, ODataValueOfIEnumerableOfSearchUserDtoToJSON, ODataValueOfIEnumerableOfSearchUserDtoToJSONTyped, SessionDtoStateEnum, SessionDtoLicenseErrorCodeEnum, SessionDtoRobotSessionTypeEnum, SessionDtoSourceEnum, SessionDtoPlatformEnum, instanceOfSessionDto, SessionDtoFromJSON, SessionDtoFromJSONTyped, SessionDtoToJSON, SessionDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfSessionDto, ODataValueOfIEnumerableOfSessionDtoFromJSON, ODataValueOfIEnumerableOfSessionDtoFromJSONTyped, ODataValueOfIEnumerableOfSessionDtoToJSON, ODataValueOfIEnumerableOfSessionDtoToJSONTyped, SettingsDtoScopeEnum, instanceOfSettingsDto, SettingsDtoFromJSON, SettingsDtoFromJSONTyped, SettingsDtoToJSON, SettingsDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfSettingsDto, ODataValueOfIEnumerableOfSettingsDtoFromJSON, ODataValueOfIEnumerableOfSettingsDtoFromJSONTyped, ODataValueOfIEnumerableOfSettingsDtoToJSON, ODataValueOfIEnumerableOfSettingsDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfSimpleUserDto, ODataValueOfIEnumerableOfSimpleUserDtoFromJSON, ODataValueOfIEnumerableOfSimpleUserDtoFromJSONTyped, ODataValueOfIEnumerableOfSimpleUserDtoToJSON, ODataValueOfIEnumerableOfSimpleUserDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfString, ODataValueOfIEnumerableOfStringFromJSON, ODataValueOfIEnumerableOfStringFromJSONTyped, ODataValueOfIEnumerableOfStringToJSON, ODataValueOfIEnumerableOfStringToJSONTyped, TriggerLogDtoLogEventTypeEnum, TriggerLogDtoLogLevelEnum, instanceOfTriggerLogDto, TriggerLogDtoFromJSON, TriggerLogDtoFromJSONTyped, TriggerLogDtoToJSON, TriggerLogDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfTriggerLogDto, ODataValueOfIEnumerableOfTriggerLogDtoFromJSON, ODataValueOfIEnumerableOfTriggerLogDtoFromJSONTyped, ODataValueOfIEnumerableOfTriggerLogDtoToJSON, ODataValueOfIEnumerableOfTriggerLogDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfUserDto, ODataValueOfIEnumerableOfUserDtoFromJSON, ODataValueOfIEnumerableOfUserDtoFromJSONTyped, ODataValueOfIEnumerableOfUserDtoToJSON, ODataValueOfIEnumerableOfUserDtoToJSONTyped, UserPermissionsExtendedFolderTypeEnum, instanceOfUserPermissionsExtended, UserPermissionsExtendedFromJSON, UserPermissionsExtendedFromJSONTyped, UserPermissionsExtendedToJSON, UserPermissionsExtendedToJSONTyped, instanceOfODataValueOfIEnumerableOfUserPermissionsExtended, ODataValueOfIEnumerableOfUserPermissionsExtendedFromJSON, ODataValueOfIEnumerableOfUserPermissionsExtendedFromJSONTyped, ODataValueOfIEnumerableOfUserPermissionsExtendedToJSON, ODataValueOfIEnumerableOfUserPermissionsExtendedToJSONTyped, instanceOfUserRobotsDto, UserRobotsDtoFromJSON, UserRobotsDtoFromJSONTyped, UserRobotsDtoToJSON, UserRobotsDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfUserRobotsDto, ODataValueOfIEnumerableOfUserRobotsDtoFromJSON, ODataValueOfIEnumerableOfUserRobotsDtoFromJSONTyped, ODataValueOfIEnumerableOfUserRobotsDtoToJSON, ODataValueOfIEnumerableOfUserRobotsDtoToJSONTyped, instanceOfUserRolesChangesDto, UserRolesChangesDtoFromJSON, UserRolesChangesDtoFromJSONTyped, UserRolesChangesDtoToJSON, UserRolesChangesDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfUserRolesChangesDto, ODataValueOfIEnumerableOfUserRolesChangesDtoFromJSON, ODataValueOfIEnumerableOfUserRolesChangesDtoFromJSONTyped, ODataValueOfIEnumerableOfUserRolesChangesDtoToJSON, ODataValueOfIEnumerableOfUserRolesChangesDtoToJSONTyped, UserEntityDtoTypeEnum, UserEntityDtoSourceEnum, instanceOfUserEntityDto, UserEntityDtoFromJSON, UserEntityDtoFromJSONTyped, UserEntityDtoToJSON, UserEntityDtoToJSONTyped, SimpleRoleDtoOriginEnum, SimpleRoleDtoRoleTypeEnum, instanceOfSimpleRoleDto, SimpleRoleDtoFromJSON, SimpleRoleDtoFromJSONTyped, SimpleRoleDtoToJSON, SimpleRoleDtoToJSONTyped, instanceOfUserRolesDto, UserRolesDtoFromJSON, UserRolesDtoFromJSONTyped, UserRolesDtoToJSON, UserRolesDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfUserRolesDto, ODataValueOfIEnumerableOfUserRolesDtoFromJSON, ODataValueOfIEnumerableOfUserRolesDtoFromJSONTyped, ODataValueOfIEnumerableOfUserRolesDtoToJSON, ODataValueOfIEnumerableOfUserRolesDtoToJSONTyped, instanceOfWebhookEventDto, WebhookEventDtoFromJSON, WebhookEventDtoFromJSONTyped, WebhookEventDtoToJSON, WebhookEventDtoToJSONTyped, instanceOfWebhookDto, WebhookDtoFromJSON, WebhookDtoFromJSONTyped, WebhookDtoToJSON, WebhookDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfWebhookDto, ODataValueOfIEnumerableOfWebhookDtoFromJSON, ODataValueOfIEnumerableOfWebhookDtoFromJSONTyped, ODataValueOfIEnumerableOfWebhookDtoToJSON, ODataValueOfIEnumerableOfWebhookDtoToJSONTyped, instanceOfWebhookEventTypeDto, WebhookEventTypeDtoFromJSON, WebhookEventTypeDtoFromJSONTyped, WebhookEventTypeDtoToJSON, WebhookEventTypeDtoToJSONTyped, instanceOfODataValueOfIEnumerableOfWebhookEventTypeDto, ODataValueOfIEnumerableOfWebhookEventTypeDtoFromJSON, ODataValueOfIEnumerableOfWebhookEventTypeDtoFromJSONTyped, ODataValueOfIEnumerableOfWebhookEventTypeDtoToJSON, ODataValueOfIEnumerableOfWebhookEventTypeDtoToJSONTyped, instanceOfODataValueOfInt32, ODataValueOfInt32FromJSON, ODataValueOfInt32FromJSONTyped, ODataValueOfInt32ToJSON, ODataValueOfInt32ToJSONTyped, instanceOfODataValueOfInt64, ODataValueOfInt64FromJSON, ODataValueOfInt64FromJSONTyped, ODataValueOfInt64ToJSON, ODataValueOfInt64ToJSONTyped, instanceOfODataValueOfListOfPersonalWorkspaceDto, ODataValueOfListOfPersonalWorkspaceDtoFromJSON, ODataValueOfListOfPersonalWorkspaceDtoFromJSONTyped, ODataValueOfListOfPersonalWorkspaceDtoToJSON, ODataValueOfListOfPersonalWorkspaceDtoToJSONTyped, instanceOfODataValueOfString, ODataValueOfStringFromJSON, ODataValueOfStringFromJSONTyped, ODataValueOfStringToJSON, ODataValueOfStringToJSONTyped, instanceOfPackageContentFileDto, PackageContentFileDtoFromJSON, PackageContentFileDtoFromJSONTyped, PackageContentFileDtoToJSON, PackageContentFileDtoToJSONTyped, instanceOfPackageErrorCodeDto, PackageErrorCodeDtoFromJSON, PackageErrorCodeDtoFromJSONTyped, PackageErrorCodeDtoToJSON, PackageErrorCodeDtoToJSONTyped, PackageFeedDtoPurposeEnum, PackageFeedDtoAuthenticationTypeEnum, PackageFeedDtoSupportedProjectTypesEnum, instanceOfPackageFeedDto, PackageFeedDtoFromJSON, PackageFeedDtoFromJSONTyped, PackageFeedDtoToJSON, PackageFeedDtoToJSONTyped, instanceOfPackageResourceValidationDto, PackageResourceValidationDtoFromJSON, PackageResourceValidationDtoFromJSONTyped, PackageResourceValidationDtoToJSON, PackageResourceValidationDtoToJSONTyped, instanceOfPackageSettingsDto, PackageSettingsDtoFromJSON, PackageSettingsDtoFromJSONTyped, PackageSettingsDtoToJSON, PackageSettingsDtoToJSONTyped, instanceOfPackagesChecksumDto, PackagesChecksumDtoFromJSON, PackagesChecksumDtoFromJSONTyped, PackagesChecksumDtoToJSON, PackagesChecksumDtoToJSONTyped, instanceOfPageResultDtoOfCurrentUserFolderDto, PageResultDtoOfCurrentUserFolderDtoFromJSON, PageResultDtoOfCurrentUserFolderDtoFromJSONTyped, PageResultDtoOfCurrentUserFolderDtoToJSON, PageResultDtoOfCurrentUserFolderDtoToJSONTyped, instanceOfPageResultDtoOfPathAwareExtendedFolderDto, PageResultDtoOfPathAwareExtendedFolderDtoFromJSON, PageResultDtoOfPathAwareExtendedFolderDtoFromJSONTyped, PageResultDtoOfPathAwareExtendedFolderDtoToJSON, PageResultDtoOfPathAwareExtendedFolderDtoToJSONTyped, PathAwareFolderDtoFolderTypeEnum, PathAwareFolderDtoProvisionTypeEnum, PathAwareFolderDtoPermissionModelEnum, PathAwareFolderDtoFeedTypeEnum, instanceOfPathAwareFolderDto, PathAwareFolderDtoFromJSON, PathAwareFolderDtoFromJSONTyped, PathAwareFolderDtoToJSON, PathAwareFolderDtoToJSONTyped, instanceOfPageResultDtoOfPathAwareFolderDto, PageResultDtoOfPathAwareFolderDtoFromJSON, PageResultDtoOfPathAwareFolderDtoFromJSONTyped, PageResultDtoOfPathAwareFolderDtoToJSON, PageResultDtoOfPathAwareFolderDtoToJSONTyped, instanceOfPatchResourceOverwritesRequest, PatchResourceOverwritesRequestFromJSON, PatchResourceOverwritesRequestFromJSONTyped, PatchResourceOverwritesRequestToJSON, PatchResourceOverwritesRequestToJSONTyped, instanceOfPersonalWorkspaceCreateOrphanedRequest, PersonalWorkspaceCreateOrphanedRequestFromJSON, PersonalWorkspaceCreateOrphanedRequestFromJSONTyped, PersonalWorkspaceCreateOrphanedRequestToJSON, PersonalWorkspaceCreateOrphanedRequestToJSONTyped, instanceOfPersonalWorkspaceFolder, PersonalWorkspaceFolderFromJSON, PersonalWorkspaceFolderFromJSONTyped, PersonalWorkspaceFolderToJSON, PersonalWorkspaceFolderToJSONTyped, instanceOfPersonalWorkspacesConvertToFolderRequest, PersonalWorkspacesConvertToFolderRequestFromJSON, PersonalWorkspacesConvertToFolderRequestFromJSONTyped, PersonalWorkspacesConvertToFolderRequestToJSON, PersonalWorkspacesConvertToFolderRequestToJSONTyped, PingEventDtoOrganizationUnitTypeEnum, instanceOfPingEventDto, PingEventDtoFromJSON, PingEventDtoFromJSONTyped, PingEventDtoToJSON, PingEventDtoToJSONTyped, instanceOfPrivilegeOfRolePrivilegeDto, PrivilegeOfRolePrivilegeDtoFromJSON, PrivilegeOfRolePrivilegeDtoFromJSONTyped, PrivilegeOfRolePrivilegeDtoToJSON, PrivilegeOfRolePrivilegeDtoToJSONTyped, instanceOfPrivilegeOfUpdatePolicyDto, PrivilegeOfUpdatePolicyDtoFromJSON, PrivilegeOfUpdatePolicyDtoFromJSONTyped, PrivilegeOfUpdatePolicyDtoToJSON, PrivilegeOfUpdatePolicyDtoToJSONTyped, instanceOfProcessSetEnabledRequest, ProcessSetEnabledRequestFromJSON, ProcessSetEnabledRequestFromJSONTyped, ProcessSetEnabledRequestToJSON, ProcessSetEnabledRequestToJSONTyped, PublishedProcessTargetFrameworkEnum, PublishedProcessProcessTypeEnum, PublishedProcessRemoteControlAccessEnum, instanceOfPublishedProcess, PublishedProcessFromJSON, PublishedProcessFromJSONTyped, PublishedProcessToJSON, PublishedProcessToJSONTyped, QueueCreateCommandRetentionActionEnum, QueueCreateCommandStaleRetentionActionEnum, instanceOfQueueCreateCommand, QueueCreateCommandFromJSON, QueueCreateCommandFromJSONTyped, QueueCreateCommandToJSON, QueueCreateCommandToJSONTyped, QueueEditCommandRetentionActionEnum, QueueEditCommandStaleRetentionActionEnum, instanceOfQueueEditCommand, QueueEditCommandFromJSON, QueueEditCommandFromJSONTyped, QueueEditCommandToJSON, QueueEditCommandToJSONTyped, instanceOfQueueFoldersShareDto, QueueFoldersShareDtoFromJSON, QueueFoldersShareDtoFromJSONTyped, QueueFoldersShareDtoToJSON, QueueFoldersShareDtoToJSONTyped, QueueGetModelRetentionActionEnum, QueueGetModelStaleRetentionActionEnum, instanceOfQueueGetModel, QueueGetModelFromJSON, QueueGetModelFromJSONTyped, QueueGetModelToJSON, QueueGetModelToJSONTyped, instanceOfQueueItemDeleteBulkRequest, QueueItemDeleteBulkRequestFromJSON, QueueItemDeleteBulkRequestFromJSONTyped, QueueItemDeleteBulkRequestToJSON, QueueItemDeleteBulkRequestToJSONTyped, instanceOfQueueItemStatistics, QueueItemStatisticsFromJSON, QueueItemStatisticsFromJSONTyped, QueueItemStatisticsToJSON, QueueItemStatisticsToJSONTyped, instanceOfQueueItemsForJobResponse, QueueItemsForJobResponseFromJSON, QueueItemsForJobResponseFromJSONTyped, QueueItemsForJobResponseToJSON, QueueItemsForJobResponseToJSONTyped, instanceOfQueueSetItemReviewStatusRequest, QueueSetItemReviewStatusRequestFromJSON, QueueSetItemReviewStatusRequestFromJSONTyped, QueueSetItemReviewStatusRequestToJSON, QueueSetItemReviewStatusRequestToJSONTyped, instanceOfQueueSetItemReviewerRequest, QueueSetItemReviewerRequestFromJSON, QueueSetItemReviewerRequestFromJSONTyped, QueueSetItemReviewerRequestToJSON, QueueSetItemReviewerRequestToJSONTyped, instanceOfQueueSetTransactionProgressRequest, QueueSetTransactionProgressRequestFromJSON, QueueSetTransactionProgressRequestFromJSONTyped, QueueSetTransactionProgressRequestToJSON, QueueSetTransactionProgressRequestToJSONTyped, instanceOfTransactionResultDto, TransactionResultDtoFromJSON, TransactionResultDtoFromJSONTyped, TransactionResultDtoToJSON, TransactionResultDtoToJSONTyped, instanceOfQueueSetTransactionResultRequest, QueueSetTransactionResultRequestFromJSON, QueueSetTransactionResultRequestFromJSONTyped, QueueSetTransactionResultRequestToJSON, QueueSetTransactionResultRequestToJSONTyped, instanceOfQueueUnsetItemReviewerRequest, QueueUnsetItemReviewerRequestFromJSON, QueueUnsetItemReviewerRequestFromJSONTyped, QueueUnsetItemReviewerRequestToJSON, QueueUnsetItemReviewerRequestToJSONTyped, TransactionDataDtoReferenceFilterOptionEnum, instanceOfTransactionDataDto, TransactionDataDtoFromJSON, TransactionDataDtoFromJSONTyped, TransactionDataDtoToJSON, TransactionDataDtoToJSONTyped, instanceOfQueuesStartTransactionRequest, QueuesStartTransactionRequestFromJSON, QueuesStartTransactionRequestFromJSONTyped, QueuesStartTransactionRequestToJSON, QueuesStartTransactionRequestToJSONTyped, ReleaseCreateCommandRetentionActionEnum, ReleaseCreateCommandStaleRetentionActionEnum, ReleaseCreateCommandProcessTypeEnum, ReleaseCreateCommandJobPriorityEnum, ReleaseCreateCommandTargetFrameworkEnum, ReleaseCreateCommandRobotSizeEnum, ReleaseCreateCommandRemoteControlAccessEnum, ReleaseCreateCommandPublisherLicenseEnum, instanceOfReleaseCreateCommand, ReleaseCreateCommandFromJSON, ReleaseCreateCommandFromJSONTyped, ReleaseCreateCommandToJSON, ReleaseCreateCommandToJSONTyped, ReleaseGetModelRetentionActionEnum, ReleaseGetModelStaleRetentionActionEnum, ReleaseGetModelProcessTypeEnum, ReleaseGetModelJobPriorityEnum, ReleaseGetModelTargetFrameworkEnum, ReleaseGetModelRobotSizeEnum, ReleaseGetModelRemoteControlAccessEnum, ReleaseGetModelPublisherLicenseEnum, instanceOfReleaseGetModel, ReleaseGetModelFromJSON, ReleaseGetModelFromJSONTyped, ReleaseGetModelToJSON, ReleaseGetModelToJSONTyped, ReleaseJobInfoStateEnum, instanceOfReleaseJobInfo, ReleaseJobInfoFromJSON, ReleaseJobInfoFromJSONTyped, ReleaseJobInfoToJSON, ReleaseJobInfoToJSONTyped, instanceOfReleaseJobsResponse, ReleaseJobsResponseFromJSON, ReleaseJobsResponseFromJSONTyped, ReleaseJobsResponseToJSON, ReleaseJobsResponseToJSONTyped, ReleaseUpdateCommandRetentionActionEnum, ReleaseUpdateCommandStaleRetentionActionEnum, ReleaseUpdateCommandProcessTypeEnum, ReleaseUpdateCommandJobPriorityEnum, ReleaseUpdateCommandTargetFrameworkEnum, ReleaseUpdateCommandRobotSizeEnum, ReleaseUpdateCommandRemoteControlAccessEnum, ReleaseUpdateCommandPublisherLicenseEnum, instanceOfReleaseUpdateCommand, ReleaseUpdateCommandFromJSON, ReleaseUpdateCommandFromJSONTyped, ReleaseUpdateCommandToJSON, ReleaseUpdateCommandToJSONTyped, instanceOfReleasesUpdateByKeyRequest, ReleasesUpdateByKeyRequestFromJSON, ReleasesUpdateByKeyRequestFromJSONTyped, ReleasesUpdateByKeyRequestToJSON, ReleasesUpdateByKeyRequestToJSONTyped, instanceOfReleasesUpdateToLatestPackageVersionBulkRequest, ReleasesUpdateToLatestPackageVersionBulkRequestFromJSON, ReleasesUpdateToLatestPackageVersionBulkRequestFromJSONTyped, ReleasesUpdateToLatestPackageVersionBulkRequestToJSON, ReleasesUpdateToLatestPackageVersionBulkRequestToJSONTyped, instanceOfReleasesUpdateToLatestPackageVersionBulkRequestByKey, ReleasesUpdateToLatestPackageVersionBulkRequestByKeyFromJSON, ReleasesUpdateToLatestPackageVersionBulkRequestByKeyFromJSONTyped, ReleasesUpdateToLatestPackageVersionBulkRequestByKeyToJSON, ReleasesUpdateToLatestPackageVersionBulkRequestByKeyToJSONTyped, instanceOfReleasesUpdateToSpecificPackageVersionRequest, ReleasesUpdateToSpecificPackageVersionRequestFromJSON, ReleasesUpdateToSpecificPackageVersionRequestFromJSONTyped, ReleasesUpdateToSpecificPackageVersionRequestToJSON, ReleasesUpdateToSpecificPackageVersionRequestToJSONTyped, instanceOfReleasesValidateResourcesRequest, ReleasesValidateResourcesRequestFromJSON, ReleasesValidateResourcesRequestFromJSONTyped, ReleasesValidateResourcesRequestToJSON, ReleasesValidateResourcesRequestToJSONTyped, instanceOfRemoveMachinesFromFolderRequest, RemoveMachinesFromFolderRequestFromJSON, RemoveMachinesFromFolderRequestFromJSONTyped, RemoveMachinesFromFolderRequestToJSON, RemoveMachinesFromFolderRequestToJSONTyped, instanceOfRemoveUserByKeyFromFolderRequest, RemoveUserByKeyFromFolderRequestFromJSON, RemoveUserByKeyFromFolderRequestFromJSONTyped, RemoveUserByKeyFromFolderRequestToJSON, RemoveUserByKeyFromFolderRequestToJSONTyped, instanceOfRemoveUserFromFolderRequest, RemoveUserFromFolderRequestFromJSON, RemoveUserFromFolderRequestFromJSONTyped, RemoveUserFromFolderRequestToJSON, RemoveUserFromFolderRequestToJSONTyped, instanceOfResourcePaginationResultOfFolder, ResourcePaginationResultOfFolderFromJSON, ResourcePaginationResultOfFolderFromJSONTyped, ResourcePaginationResultOfFolderToJSON, ResourcePaginationResultOfFolderToJSONTyped, instanceOfResourcePaginationResultOfPersonalWorkspaceFolder, ResourcePaginationResultOfPersonalWorkspaceFolderFromJSON, ResourcePaginationResultOfPersonalWorkspaceFolderFromJSONTyped, ResourcePaginationResultOfPersonalWorkspaceFolderToJSON, ResourcePaginationResultOfPersonalWorkspaceFolderToJSONTyped, instanceOfRestartJobRequest, RestartJobRequestFromJSON, RestartJobRequestFromJSONTyped, RestartJobRequestToJSON, RestartJobRequestToJSONTyped, instanceOfResumeJobRequest, ResumeJobRequestFromJSON, ResumeJobRequestFromJSONTyped, ResumeJobRequestToJSON, ResumeJobRequestToJSONTyped, instanceOfRevokeExplicitPrivilegesRequest, RevokeExplicitPrivilegesRequestFromJSON, RevokeExplicitPrivilegesRequestFromJSONTyped, RevokeExplicitPrivilegesRequestToJSON, RevokeExplicitPrivilegesRequestToJSONTyped, instanceOfRobotDebugSessionDto, RobotDebugSessionDtoFromJSON, RobotDebugSessionDtoFromJSONTyped, RobotDebugSessionDtoToJSON, RobotDebugSessionDtoToJSONTyped, instanceOfRobotDeleteBulkRequest, RobotDeleteBulkRequestFromJSON, RobotDeleteBulkRequestFromJSONTyped, RobotDeleteBulkRequestToJSON, RobotDeleteBulkRequestToJSONTyped, RobotDetailsDtoRobotTypeEnum, instanceOfRobotDetailsDto, RobotDetailsDtoFromJSON, RobotDetailsDtoFromJSONTyped, RobotDetailsDtoToJSON, RobotDetailsDtoToJSONTyped, RobotIdentifierProcessTypesEnum, instanceOfRobotIdentifier, RobotIdentifierFromJSON, RobotIdentifierFromJSONTyped, RobotIdentifierToJSON, RobotIdentifierToJSONTyped, instanceOfRobotServicePayload, RobotServicePayloadFromJSON, RobotServicePayloadFromJSONTyped, RobotServicePayloadToJSON, RobotServicePayloadToJSONTyped, instanceOfRobotServiceResponse, RobotServiceResponseFromJSON, RobotServiceResponseFromJSONTyped, RobotServiceResponseToJSON, RobotServiceResponseToJSONTyped, instanceOfRobotsConvertToFloatingRequest, RobotsConvertToFloatingRequestFromJSON, RobotsConvertToFloatingRequestFromJSONTyped, RobotsConvertToFloatingRequestToJSON, RobotsConvertToFloatingRequestToJSONTyped, instanceOfRobotsToggleEnabledStatusRequest, RobotsToggleEnabledStatusRequestFromJSON, RobotsToggleEnabledStatusRequestFromJSONTyped, RobotsToggleEnabledStatusRequestToJSON, RobotsToggleEnabledStatusRequestToJSONTyped, instanceOfRolePrivileges, RolePrivilegesFromJSON, RolePrivilegesFromJSONTyped, RolePrivilegesToJSON, RolePrivilegesToJSONTyped, instanceOfRootFolderDto, RootFolderDtoFromJSON, RootFolderDtoFromJSONTyped, RootFolderDtoToJSON, RootFolderDtoToJSONTyped, SessionMaintenanceModeParametersMaintenanceModeEnum, SessionMaintenanceModeParametersStopJobsStrategyEnum, instanceOfSessionMaintenanceModeParameters, SessionMaintenanceModeParametersFromJSON, SessionMaintenanceModeParametersFromJSONTyped, SessionMaintenanceModeParametersToJSON, SessionMaintenanceModeParametersToJSONTyped, instanceOfSessionsToggleMachineSessionDebugModeRequest, SessionsToggleMachineSessionDebugModeRequestFromJSON, SessionsToggleMachineSessionDebugModeRequestFromJSONTyped, SessionsToggleMachineSessionDebugModeRequestToJSON, SessionsToggleMachineSessionDebugModeRequestToJSONTyped, instanceOfSetUserOverwritesRequest, SetUserOverwritesRequestFromJSON, SetUserOverwritesRequestFromJSONTyped, SetUserOverwritesRequestToJSON, SetUserOverwritesRequestToJSONTyped, instanceOfSetUsersRequest, SetUsersRequestFromJSON, SetUsersRequestFromJSONTyped, SetUsersRequestToJSON, SetUsersRequestToJSONTyped, instanceOfSettingsDeleteBulkRequest, SettingsDeleteBulkRequestFromJSON, SettingsDeleteBulkRequestFromJSONTyped, SettingsDeleteBulkRequestToJSON, SettingsDeleteBulkRequestToJSONTyped, instanceOfSettingsUpdateBulkRequest, SettingsUpdateBulkRequestFromJSON, SettingsUpdateBulkRequestFromJSONTyped, SettingsUpdateBulkRequestToJSON, SettingsUpdateBulkRequestToJSONTyped, instanceOfSmtpSettingModel, SmtpSettingModelFromJSON, SmtpSettingModelFromJSONTyped, SmtpSettingModelToJSON, SmtpSettingModelToJSONTyped, StartProcessDtoStrategyEnum, StartProcessDtoSourceEnum, StartProcessDtoJobPriorityEnum, StartProcessDtoRuntimeTypeEnum, StartProcessDtoTargetFrameworkEnum, StartProcessDtoStopStrategyEnum, StartProcessDtoRemoteControlAccessEnum, instanceOfStartProcessDto, StartProcessDtoFromJSON, StartProcessDtoFromJSONTyped, StartProcessDtoToJSON, StartProcessDtoToJSONTyped, instanceOfStartJobsRequest, StartJobsRequestFromJSON, StartJobsRequestFromJSONTyped, StartJobsRequestToJSON, StartJobsRequestToJSONTyped, StopJobRequestStrategyEnum, instanceOfStopJobRequest, StopJobRequestFromJSON, StopJobRequestFromJSONTyped, StopJobRequestToJSON, StopJobRequestToJSONTyped, StopJobsRequestStrategyEnum, instanceOfStopJobsRequest, StopJobsRequestFromJSON, StopJobsRequestFromJSONTyped, StopJobsRequestToJSON, StopJobsRequestToJSONTyped, instanceOfStorageSettingsDto, StorageSettingsDtoFromJSON, StorageSettingsDtoFromJSONTyped, StorageSettingsDtoToJSON, StorageSettingsDtoToJSONTyped, instanceOfUpdateEventTriggerRequest, UpdateEventTriggerRequestFromJSON, UpdateEventTriggerRequestFromJSONTyped, UpdateEventTriggerRequestToJSON, UpdateEventTriggerRequestToJSONTyped, instanceOfUpdateMachinesToFolderAssociationsRequest, UpdateMachinesToFolderAssociationsRequestFromJSON, UpdateMachinesToFolderAssociationsRequestFromJSONTyped, UpdateMachinesToFolderAssociationsRequestToJSON, UpdateMachinesToFolderAssociationsRequestToJSONTyped, instanceOfUpdatePolicyPrivilege, UpdatePolicyPrivilegeFromJSON, UpdatePolicyPrivilegeFromJSONTyped, UpdatePolicyPrivilegeToJSON, UpdatePolicyPrivilegeToJSONTyped, UpdateSettingsDtoUpdateServerSourceEnum, instanceOfUpdateSettingsDto, UpdateSettingsDtoFromJSON, UpdateSettingsDtoFromJSONTyped, UpdateSettingsDtoToJSON, UpdateSettingsDtoToJSONTyped, instanceOfUpdateUserSettingRequest, UpdateUserSettingRequestFromJSON, UpdateUserSettingRequestFromJSONTyped, UpdateUserSettingRequestToJSON, UpdateUserSettingRequestToJSONTyped, instanceOfUserAssignRolesRequest, UserAssignRolesRequestFromJSON, UserAssignRolesRequestFromJSONTyped, UserAssignRolesRequestToJSON, UserAssignRolesRequestToJSONTyped, instanceOfUserChangeCultureRequest, UserChangeCultureRequestFromJSON, UserChangeCultureRequestFromJSONTyped, UserChangeCultureRequestToJSON, UserChangeCultureRequestToJSONTyped, UserIdTypeDtoTypeEnum, instanceOfUserIdTypeDto, UserIdTypeDtoFromJSON, UserIdTypeDtoFromJSONTyped, UserIdTypeDtoToJSON, UserIdTypeDtoToJSONTyped, instanceOfUserIdTypeCollectionDto, UserIdTypeCollectionDtoFromJSON, UserIdTypeCollectionDtoFromJSONTyped, UserIdTypeCollectionDtoToJSON, UserIdTypeCollectionDtoToJSONTyped, instanceOfUserPermissionsCollection, UserPermissionsCollectionFromJSON, UserPermissionsCollectionFromJSONTyped, UserPermissionsCollectionToJSON, UserPermissionsCollectionToJSONTyped, instanceOfUserPrivileges, UserPrivilegesFromJSON, UserPrivilegesFromJSONTyped, UserPrivilegesToJSON, UserPrivilegesToJSONTyped, instanceOfUserRoleAssignmentsDto, UserRoleAssignmentsDtoFromJSON, UserRoleAssignmentsDtoFromJSONTyped, UserRoleAssignmentsDtoToJSON, UserRoleAssignmentsDtoToJSONTyped, instanceOfUserTokenPayload, UserTokenPayloadFromJSON, UserTokenPayloadFromJSONTyped, UserTokenPayloadToJSON, UserTokenPayloadToJSONTyped, instanceOfUsersToggleRoleRequest, UsersToggleRoleRequestFromJSON, UsersToggleRoleRequestFromJSONTyped, UsersToggleRoleRequestToJSON, UsersToggleRoleRequestToJSONTyped, instanceOfValidateProcessScheduleRequest, ValidateProcessScheduleRequestFromJSON, ValidateProcessScheduleRequestFromJSONTyped, ValidateProcessScheduleRequestToJSON, ValidateProcessScheduleRequestToJSONTyped, ValidationResultDtoErrorCodesEnum, instanceOfValidationResultDto, ValidationResultDtoFromJSON, ValidationResultDtoFromJSONTyped, ValidationResultDtoToJSON, ValidationResultDtoToJSONTyped, instanceOfVerifySmtpSettingRequest, VerifySmtpSettingRequestFromJSON, VerifySmtpSettingRequestFromJSONTyped, VerifySmtpSettingRequestToJSON, VerifySmtpSettingRequestToJSONTyped, ApiTriggersApi, AssetsApi, AttachmentsApi, AuditLogsApi, AuditLogsExportAuditedServiceEnum, AuditLogsGetXUIPATHAuditedServiceEnum, AuditLogsGetAuditLogDetailsByAuditlogidXUIPATHAuditedServiceEnum, AuditLogsGetTotalCountXUIPATHAuditedServiceEnum, AutopilotForRobotsDataApi, BucketsApi, CalendarsApi, CredentialStoresApi, CredentialStoresGetDefaultStoreForResourceTypeByResourcetypeResourceTypeEnum, CredentialStoresGetResourcesForCredentialStoreTypesByKeyAndResourcetypeResourceTypeEnum, CredentialStoresGetResourcesForCredentialsProxyResourceTypesResourceTypeEnum, ExportsApi, FoldersApi, FoldersGetAllRolesForUserByUsernameAndSkipAndTakeTypeEnum, FoldersIsAccessibleToUserTypeEnum, FoldersNavigationApi, FoldersNavigationGetAllRolesForUserTypeEnum, FoldersNavigationGetFoldersForCurrentUserFolderTypesEnum, FoldersNavigationGetFoldersPageByParentForCurrentUserFolderTypesEnum, FoldersNavigationGetFoldersPageForCurrentUserFolderTypesEnum, FoldersNavigationGetFoldersWithPermissionsFolderTypesEnum, HttpTriggersApi, JobsApi, JobsGetUserJobsTargetFrameworkEnum, JobsGetUserJobsOrderDirectionEnum, JobsGetUserJobsJobStateEnum, LibrariesApi, LibraryFeedsApi, LicensesNamedUserApi, LicensesNamedUserGetLicensesNamedUserByRobottypeRobotTypeEnum, LicensesRuntimeApi, LicensesRuntimeGetLicensesRuntimeByRobottypeRobotTypeEnum, MachinesApi, OrchestratorMcpDiagnosticsApi, PackageContentFilesApi, PackageFeedsApi, PackageFeedsGetAllFeedsFeedTypeEnum, PermissionsApi, PersonalWorkspacesApi, ProcessSchedulesApi, ProcessesApi, QueueDefinitionsApi, QueueItemsApi, QueueProcessingRecordsApi, QueuesApi, ReleasesApi, RobotDebugApi, RobotLogsApi, RobotsApi, RobotsServiceApi, RobotsServiceGetProcessesByincludesprocessTypesfolderIdProcessTypesEnum, RolesApi, SessionsApi, SessionsGetMachineSessionRuntimesRuntimeTypeEnum, SessionsGetMachineSessionRuntimesByFolderIdRuntimeTypeEnum, SettingsApi, TriggerLogsApi, UsersApi, UsersGetDirectoryPrivilegesTypeEnum, WebhooksApi, getLoginStatusAsync, createOrchestratorConfig, createApiClient, createOrchestratorConfigFromConnection, describeResponseError, resolveFolder, uploadJobAttachment, nullArrayToEmptyMiddleware, quoteODataStringLiteral, resolveRelease };
|
|
40175
40425
|
|
|
40176
|
-
//# debugId=
|
|
40426
|
+
//# debugId=286B0C3C95076ACF64756E2164756E21
|
|
@@ -20,15 +20,16 @@ import {
|
|
|
20
20
|
requireConfirmation,
|
|
21
21
|
resolveDeprecatedOptionAlias,
|
|
22
22
|
warnDeprecatedOptionAlias
|
|
23
|
-
} from "./tool-
|
|
23
|
+
} from "./tool-d8ypb1d1.js";
|
|
24
24
|
import {
|
|
25
25
|
__require
|
|
26
26
|
} from "./tool-1de529jm.js";
|
|
27
27
|
// package.json
|
|
28
28
|
var package_default = {
|
|
29
29
|
name: "@uipath/agenthub-tool",
|
|
30
|
+
author: "UiPath",
|
|
30
31
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
31
|
-
version: "1.
|
|
32
|
+
version: "1.203.0-preview.180",
|
|
32
33
|
description: "Manage UiPath AgentHub MCP server registrations, tools, and remote A2A agents.",
|
|
33
34
|
private: false,
|
|
34
35
|
repository: {
|
|
@@ -1363,8 +1364,9 @@ class VoidApiResponse {
|
|
|
1363
1364
|
}
|
|
1364
1365
|
var package_default2 = {
|
|
1365
1366
|
name: "@uipath/agenthub-sdk",
|
|
1367
|
+
author: "UiPath",
|
|
1366
1368
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
1367
|
-
version: "1.
|
|
1369
|
+
version: "1.203.0",
|
|
1368
1370
|
repository: {
|
|
1369
1371
|
type: "git",
|
|
1370
1372
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -3206,16 +3208,7 @@ var resolveEnvFilePathAsync = async (envFilePath = DEFAULT_ENV_FILENAME, opts) =
|
|
|
3206
3208
|
errorMessage: location.source === "absolute" ? `Environment file not found: ${envFilePath}` : `Unable to locate environment file: ${envFilePath}. Run 'uip login' to authenticate.`
|
|
3207
3209
|
};
|
|
3208
3210
|
};
|
|
3209
|
-
var
|
|
3210
|
-
const fs7 = getFileSystem();
|
|
3211
|
-
const absolutePath = fs7.path.isAbsolute(envPath) ? envPath : fs7.path.join(fs7.env.cwd(), envPath);
|
|
3212
|
-
if (!await fs7.exists(absolutePath)) {
|
|
3213
|
-
throw new Error(`Environment file not found: ${envPath}`);
|
|
3214
|
-
}
|
|
3215
|
-
const content = await fs7.readFile(absolutePath, "utf-8");
|
|
3216
|
-
if (content === null) {
|
|
3217
|
-
throw new Error(`Environment file not found: ${envPath}`);
|
|
3218
|
-
}
|
|
3211
|
+
var parseEnvContent = (content) => {
|
|
3219
3212
|
const env = {};
|
|
3220
3213
|
for (const line of content.split(`
|
|
3221
3214
|
`)) {
|
|
@@ -3236,6 +3229,18 @@ var loadEnvFileAsync = async ({ envPath }) => {
|
|
|
3236
3229
|
}
|
|
3237
3230
|
return env;
|
|
3238
3231
|
};
|
|
3232
|
+
var loadEnvFileAsync = async ({ envPath }) => {
|
|
3233
|
+
const fs7 = getFileSystem();
|
|
3234
|
+
const absolutePath = fs7.path.isAbsolute(envPath) ? envPath : fs7.path.join(fs7.env.cwd(), envPath);
|
|
3235
|
+
if (!await fs7.exists(absolutePath)) {
|
|
3236
|
+
throw new Error(`Environment file not found: ${envPath}`);
|
|
3237
|
+
}
|
|
3238
|
+
const content = await fs7.readFile(absolutePath, "utf-8");
|
|
3239
|
+
if (content === null) {
|
|
3240
|
+
throw new Error(`Environment file not found: ${envPath}`);
|
|
3241
|
+
}
|
|
3242
|
+
return parseEnvContent(content);
|
|
3243
|
+
};
|
|
3239
3244
|
var saveEnvFileAsync = async ({
|
|
3240
3245
|
envPath,
|
|
3241
3246
|
data,
|
|
@@ -3772,6 +3777,7 @@ var getAuthContext = async (options = {}) => {
|
|
|
3772
3777
|
tenantName
|
|
3773
3778
|
};
|
|
3774
3779
|
};
|
|
3780
|
+
init_src();
|
|
3775
3781
|
init_constants();
|
|
3776
3782
|
init_src();
|
|
3777
3783
|
init_constants();
|
|
@@ -4248,7 +4254,7 @@ var templateFor = (type) => {
|
|
|
4248
4254
|
}
|
|
4249
4255
|
};
|
|
4250
4256
|
var fetchServersAcrossFolders = async (options) => {
|
|
4251
|
-
const { FoldersApi: FoldersApi2, createOrchestratorConfig: createOrchestratorConfig2 } = await import("./index-
|
|
4257
|
+
const { FoldersApi: FoldersApi2, createOrchestratorConfig: createOrchestratorConfig2 } = await import("./index-cnynnsjz.js");
|
|
4252
4258
|
const orchestratorConfig = await createOrchestratorConfig2({
|
|
4253
4259
|
tenant: options.tenant,
|
|
4254
4260
|
loginValidity: options.loginValidity
|
|
@@ -5268,8 +5274,9 @@ class JSONApiResponse2 {
|
|
|
5268
5274
|
// ../admin/resourcecatalog-sdk/package.json
|
|
5269
5275
|
var package_default3 = {
|
|
5270
5276
|
name: "@uipath/resourcecatalog-sdk",
|
|
5277
|
+
author: "UiPath",
|
|
5271
5278
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
5272
|
-
version: "1.
|
|
5279
|
+
version: "1.203.0",
|
|
5273
5280
|
description: "SDK for the UiPath Resource Catalog Service API.",
|
|
5274
5281
|
repository: {
|
|
5275
5282
|
type: "git",
|
|
@@ -7175,4 +7182,4 @@ var createStandaloneProgram = async () => {
|
|
|
7175
7182
|
|
|
7176
7183
|
export { metadata, registerCommands, createStandaloneProgram };
|
|
7177
7184
|
|
|
7178
|
-
//# debugId=
|
|
7185
|
+
//# debugId=02B8B70E76902B5464756E2164756E21
|
package/dist/tool.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/agenthub-tool",
|
|
3
|
+
"author": "UiPath",
|
|
3
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4
|
-
"version": "1.
|
|
5
|
+
"version": "1.203.0-preview.180",
|
|
5
6
|
"description": "Manage UiPath AgentHub MCP server registrations, tools, and remote A2A agents.",
|
|
6
7
|
"private": false,
|
|
7
8
|
"repository": {
|
|
@@ -26,5 +27,5 @@
|
|
|
26
27
|
"files": [
|
|
27
28
|
"dist"
|
|
28
29
|
],
|
|
29
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "4e0a51e3ab2c9d89afd3d35a7b087a7fa58133a0"
|
|
30
31
|
}
|