@uipath/maestro-tool 1.199.0-preview.108 → 1.199.0-preview.111
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/packager-tool.js +45 -10
- package/dist/tool.js +77 -42
- package/package.json +2 -2
package/dist/packager-tool.js
CHANGED
|
@@ -26273,7 +26273,12 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
26273
26273
|
}
|
|
26274
26274
|
function resolve(baseURI, relativeURI, options) {
|
|
26275
26275
|
const schemelessOptions = options ? Object.assign({ scheme: "null" }, options) : { scheme: "null" };
|
|
26276
|
-
const
|
|
26276
|
+
const { parsed: baseParsed, malformedAuthorityOrPort: baseMalformed } = parseWithStatus(baseURI, schemelessOptions);
|
|
26277
|
+
const { parsed: relativeParsed, malformedAuthorityOrPort: relativeMalformed } = parseWithStatus(relativeURI, schemelessOptions);
|
|
26278
|
+
if (baseMalformed || relativeMalformed) {
|
|
26279
|
+
throw new Error(baseParsed.error || relativeParsed.error || "URI is malformed.");
|
|
26280
|
+
}
|
|
26281
|
+
const resolved = resolveComponent(baseParsed, relativeParsed, schemelessOptions, true);
|
|
26277
26282
|
schemelessOptions.skipEscape = true;
|
|
26278
26283
|
return serialize(resolved, schemelessOptions);
|
|
26279
26284
|
}
|
|
@@ -26400,6 +26405,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
26400
26405
|
}
|
|
26401
26406
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
26402
26407
|
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
26408
|
+
var AUTHORITY_INTRODUCER_REGION = /^(?:[^#/:?]+:)?([/\\\t\n\r]*)/;
|
|
26403
26409
|
function getParseError(parsed, matches) {
|
|
26404
26410
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
26405
26411
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -26434,6 +26440,20 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
26434
26440
|
parsed.error = "URI authority must not contain a literal backslash.";
|
|
26435
26441
|
malformedAuthorityOrPort = true;
|
|
26436
26442
|
}
|
|
26443
|
+
const introducerMatch = uri2.match(AUTHORITY_INTRODUCER_REGION);
|
|
26444
|
+
if (introducerMatch !== null) {
|
|
26445
|
+
const region = introducerMatch[1];
|
|
26446
|
+
const normalizedRegion = region.replace(/[\t\n\r]/g, "");
|
|
26447
|
+
if (normalizedRegion.length >= 2) {
|
|
26448
|
+
if (normalizedRegion.slice(0, 2) !== "//") {
|
|
26449
|
+
parsed.error = parsed.error || "URI authority must not contain a literal backslash.";
|
|
26450
|
+
malformedAuthorityOrPort = true;
|
|
26451
|
+
} else if (region.length !== normalizedRegion.length) {
|
|
26452
|
+
parsed.error = parsed.error || "URI authority introducer must not contain whitespace.";
|
|
26453
|
+
malformedAuthorityOrPort = true;
|
|
26454
|
+
}
|
|
26455
|
+
}
|
|
26456
|
+
}
|
|
26437
26457
|
const matches = uri2.match(URI_PARSE);
|
|
26438
26458
|
if (matches) {
|
|
26439
26459
|
parsed.scheme = matches[1];
|
|
@@ -175071,8 +175091,8 @@ var bpmn_spec_default = {
|
|
|
175071
175091
|
<bpmn:outgoing>{outgoingEdge}</bpmn:outgoing>
|
|
175072
175092
|
</bpmn:Task>`,
|
|
175073
175093
|
inputNotes: "Variable mappings use uipath:mapping with direct input/output elements, not a jsonBody pattern",
|
|
175074
|
-
bpmnElementNotes: "Also used on bpmn:StartEvent and bpmn:
|
|
175075
|
-
extensionTagNotes: "Uses uipath:mapping (not uipath:activity).
|
|
175094
|
+
bpmnElementNotes: "Also used on bpmn:StartEvent, bpmn:EndEvent, bpmn:ScriptTask, and bpmn:SubProcess for variable mappings. On bpmn:Task with no serviceType, defaults to BPMN.Variables.",
|
|
175095
|
+
extensionTagNotes: "Uses uipath:mapping (not uipath:activity). BPMN.Variables mappings are supported on StartEvent, EndEvent, Task, ScriptTask, and SubProcess owners."
|
|
175076
175096
|
},
|
|
175077
175097
|
"BPMN.ScriptTask": {
|
|
175078
175098
|
extensionType: "BPMN.ScriptTask",
|
|
@@ -175815,6 +175835,7 @@ var SUPPORTED_UIPATH_EXTENSION_TAG_NAMES = Object.freeze([
|
|
|
175815
175835
|
var SUPPORTED_UIPATH_EXTENSION_TAGS = Object.freeze(SUPPORTED_UIPATH_EXTENSION_TAG_NAMES.map((tag) => `uipath:${tag}`));
|
|
175816
175836
|
var KNOWN_UIPATH_TAGS = new Set(SUPPORTED_UIPATH_EXTENSION_TAGS);
|
|
175817
175837
|
var SEMANTIC_VALIDATION_ERROR = "BPMN_VALIDATION_ERROR";
|
|
175838
|
+
var BPMN_MODEL_NAMESPACE = "http://www.omg.org/spec/BPMN/20100524/MODEL";
|
|
175818
175839
|
|
|
175819
175840
|
class BpmnValidateService {
|
|
175820
175841
|
fileSystem;
|
|
@@ -176021,7 +176042,7 @@ class BpmnValidateService {
|
|
|
176021
176042
|
});
|
|
176022
176043
|
}
|
|
176023
176044
|
const allowedOwners = getAllowedOwnerTypes(contract);
|
|
176024
|
-
if (!allowedOwners.some((allowedOwner) =>
|
|
176045
|
+
if (!allowedOwners.some((allowedOwner) => getLocalName(allowedOwner) === getLocalName(owner.name) && resolveNamespace(owner) === BPMN_MODEL_NAMESPACE)) {
|
|
176025
176046
|
diagnostics.push({
|
|
176026
176047
|
file,
|
|
176027
176048
|
element: describeElement(owner),
|
|
@@ -176490,10 +176511,23 @@ function findFirst(node, predicate) {
|
|
|
176490
176511
|
return;
|
|
176491
176512
|
}
|
|
176492
176513
|
function hasLocalName(node, localName) {
|
|
176493
|
-
return
|
|
176514
|
+
return getLocalName(node.name) === localName.toLowerCase();
|
|
176494
176515
|
}
|
|
176495
|
-
function
|
|
176496
|
-
return name.toLowerCase();
|
|
176516
|
+
function getLocalName(name) {
|
|
176517
|
+
return name.slice(name.lastIndexOf(":") + 1).toLowerCase();
|
|
176518
|
+
}
|
|
176519
|
+
function resolveNamespace(node) {
|
|
176520
|
+
const separator = node.name.indexOf(":");
|
|
176521
|
+
const prefix = separator === -1 ? "" : node.name.slice(0, separator);
|
|
176522
|
+
const declaration = prefix ? `xmlns:${prefix}` : "xmlns";
|
|
176523
|
+
let current = node;
|
|
176524
|
+
while (current) {
|
|
176525
|
+
if (Object.hasOwn(current.attributes, declaration)) {
|
|
176526
|
+
return current.attributes[declaration];
|
|
176527
|
+
}
|
|
176528
|
+
current = current.parent;
|
|
176529
|
+
}
|
|
176530
|
+
return;
|
|
176497
176531
|
}
|
|
176498
176532
|
function findBpmnOwner(payload) {
|
|
176499
176533
|
const extensionElements = payload.parent;
|
|
@@ -176522,7 +176556,8 @@ function getAllowedOwnerTypes(contract) {
|
|
|
176522
176556
|
"bpmn:StartEvent",
|
|
176523
176557
|
"bpmn:EndEvent",
|
|
176524
176558
|
"bpmn:Task",
|
|
176525
|
-
"bpmn:ScriptTask"
|
|
176559
|
+
"bpmn:ScriptTask",
|
|
176560
|
+
"bpmn:SubProcess"
|
|
176526
176561
|
];
|
|
176527
176562
|
}
|
|
176528
176563
|
const placementTypes = Object.values(contract.placements).map((placement) => placement.type);
|
|
@@ -176983,7 +177018,7 @@ init_dist6();
|
|
|
176983
177018
|
// ../packager/packager-tool-flow/package.json
|
|
176984
177019
|
var package_default = {
|
|
176985
177020
|
name: "@uipath/packager-tool-flow",
|
|
176986
|
-
version: "1.199.0-preview.
|
|
177021
|
+
version: "1.199.0-preview.111",
|
|
176987
177022
|
description: "UiPath Flow tool implementation",
|
|
176988
177023
|
type: "module",
|
|
176989
177024
|
exports: {
|
|
@@ -191748,4 +191783,4 @@ toolsFactoryRepository2.registerProjectToolFactory(new BpmnToolFactory);
|
|
|
191748
191783
|
toolsFactoryRepository2.registerProjectToolFactory(new FlowToolFactory);
|
|
191749
191784
|
toolsFactoryRepository2.registerProjectToolFactory(new CaseToolFactory);
|
|
191750
191785
|
|
|
191751
|
-
//# debugId=
|
|
191786
|
+
//# debugId=7BE31BACE8ACFC9864756E2164756E21
|
package/dist/tool.js
CHANGED
|
@@ -25795,7 +25795,7 @@ function requireOmap() {
|
|
|
25795
25795
|
function resolveYamlOmap(data) {
|
|
25796
25796
|
if (data === null)
|
|
25797
25797
|
return true;
|
|
25798
|
-
const objectKeys =
|
|
25798
|
+
const objectKeys = {};
|
|
25799
25799
|
const object = data;
|
|
25800
25800
|
for (let index = 0, length = object.length;index < length; index += 1) {
|
|
25801
25801
|
const pair = object[index];
|
|
@@ -25813,10 +25813,9 @@ function requireOmap() {
|
|
|
25813
25813
|
}
|
|
25814
25814
|
if (!pairHasKey)
|
|
25815
25815
|
return false;
|
|
25816
|
-
if (
|
|
25817
|
-
objectKeys.push(pairKey);
|
|
25818
|
-
else
|
|
25816
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
25819
25817
|
return false;
|
|
25818
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
25820
25819
|
}
|
|
25821
25820
|
return true;
|
|
25822
25821
|
}
|
|
@@ -33008,8 +33007,8 @@ var init_bpmn_spec = __esm(() => {
|
|
|
33008
33007
|
<bpmn:outgoing>{outgoingEdge}</bpmn:outgoing>
|
|
33009
33008
|
</bpmn:Task>`,
|
|
33010
33009
|
inputNotes: "Variable mappings use uipath:mapping with direct input/output elements, not a jsonBody pattern",
|
|
33011
|
-
bpmnElementNotes: "Also used on bpmn:StartEvent and bpmn:
|
|
33012
|
-
extensionTagNotes: "Uses uipath:mapping (not uipath:activity).
|
|
33010
|
+
bpmnElementNotes: "Also used on bpmn:StartEvent, bpmn:EndEvent, bpmn:ScriptTask, and bpmn:SubProcess for variable mappings. On bpmn:Task with no serviceType, defaults to BPMN.Variables.",
|
|
33011
|
+
extensionTagNotes: "Uses uipath:mapping (not uipath:activity). BPMN.Variables mappings are supported on StartEvent, EndEvent, Task, ScriptTask, and SubProcess owners."
|
|
33013
33012
|
},
|
|
33014
33013
|
"BPMN.ScriptTask": {
|
|
33015
33014
|
extensionType: "BPMN.ScriptTask",
|
|
@@ -73362,7 +73361,12 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
73362
73361
|
}
|
|
73363
73362
|
function resolve2(baseURI, relativeURI, options) {
|
|
73364
73363
|
const schemelessOptions = options ? Object.assign({ scheme: "null" }, options) : { scheme: "null" };
|
|
73365
|
-
const
|
|
73364
|
+
const { parsed: baseParsed, malformedAuthorityOrPort: baseMalformed } = parseWithStatus(baseURI, schemelessOptions);
|
|
73365
|
+
const { parsed: relativeParsed, malformedAuthorityOrPort: relativeMalformed } = parseWithStatus(relativeURI, schemelessOptions);
|
|
73366
|
+
if (baseMalformed || relativeMalformed) {
|
|
73367
|
+
throw new Error(baseParsed.error || relativeParsed.error || "URI is malformed.");
|
|
73368
|
+
}
|
|
73369
|
+
const resolved = resolveComponent(baseParsed, relativeParsed, schemelessOptions, true);
|
|
73366
73370
|
schemelessOptions.skipEscape = true;
|
|
73367
73371
|
return serialize(resolved, schemelessOptions);
|
|
73368
73372
|
}
|
|
@@ -73489,6 +73493,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
73489
73493
|
}
|
|
73490
73494
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
73491
73495
|
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
73496
|
+
var AUTHORITY_INTRODUCER_REGION = /^(?:[^#/:?]+:)?([/\\\t\n\r]*)/;
|
|
73492
73497
|
function getParseError(parsed, matches) {
|
|
73493
73498
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
73494
73499
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -73523,6 +73528,20 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
73523
73528
|
parsed.error = "URI authority must not contain a literal backslash.";
|
|
73524
73529
|
malformedAuthorityOrPort = true;
|
|
73525
73530
|
}
|
|
73531
|
+
const introducerMatch = uri.match(AUTHORITY_INTRODUCER_REGION);
|
|
73532
|
+
if (introducerMatch !== null) {
|
|
73533
|
+
const region = introducerMatch[1];
|
|
73534
|
+
const normalizedRegion = region.replace(/[\t\n\r]/g, "");
|
|
73535
|
+
if (normalizedRegion.length >= 2) {
|
|
73536
|
+
if (normalizedRegion.slice(0, 2) !== "//") {
|
|
73537
|
+
parsed.error = parsed.error || "URI authority must not contain a literal backslash.";
|
|
73538
|
+
malformedAuthorityOrPort = true;
|
|
73539
|
+
} else if (region.length !== normalizedRegion.length) {
|
|
73540
|
+
parsed.error = parsed.error || "URI authority introducer must not contain whitespace.";
|
|
73541
|
+
malformedAuthorityOrPort = true;
|
|
73542
|
+
}
|
|
73543
|
+
}
|
|
73544
|
+
}
|
|
73526
73545
|
const matches = uri.match(URI_PARSE);
|
|
73527
73546
|
if (matches) {
|
|
73528
73547
|
parsed.scheme = matches[1];
|
|
@@ -134900,7 +134919,7 @@ var init_package = __esm(() => {
|
|
|
134900
134919
|
package_default2 = {
|
|
134901
134920
|
name: "@uipath/integrationservice-sdk",
|
|
134902
134921
|
license: "MIT",
|
|
134903
|
-
version: "1.199.0-preview.
|
|
134922
|
+
version: "1.199.0-preview.111",
|
|
134904
134923
|
repository: {
|
|
134905
134924
|
type: "git",
|
|
134906
134925
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -155794,7 +155813,7 @@ var init_package3 = __esm(() => {
|
|
|
155794
155813
|
package_default4 = {
|
|
155795
155814
|
name: "@uipath/solution-sdk",
|
|
155796
155815
|
license: "MIT",
|
|
155797
|
-
version: "1.199.0-preview.
|
|
155816
|
+
version: "1.199.0-preview.111",
|
|
155798
155817
|
repository: {
|
|
155799
155818
|
type: "git",
|
|
155800
155819
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -160411,7 +160430,7 @@ function requireOmap2() {
|
|
|
160411
160430
|
function resolveYamlOmap(data) {
|
|
160412
160431
|
if (data === null)
|
|
160413
160432
|
return true;
|
|
160414
|
-
const objectKeys =
|
|
160433
|
+
const objectKeys = {};
|
|
160415
160434
|
const object3 = data;
|
|
160416
160435
|
for (let index = 0, length = object3.length;index < length; index += 1) {
|
|
160417
160436
|
const pair = object3[index];
|
|
@@ -160429,10 +160448,9 @@ function requireOmap2() {
|
|
|
160429
160448
|
}
|
|
160430
160449
|
if (!pairHasKey)
|
|
160431
160450
|
return false;
|
|
160432
|
-
if (
|
|
160433
|
-
objectKeys.push(pairKey);
|
|
160434
|
-
else
|
|
160451
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
160435
160452
|
return false;
|
|
160453
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
160436
160454
|
}
|
|
160437
160455
|
return true;
|
|
160438
160456
|
}
|
|
@@ -201988,7 +202006,7 @@ ${e3.Data}`);
|
|
|
201988
202006
|
package_default5 = {
|
|
201989
202007
|
name: "@uipath/solution-sdk",
|
|
201990
202008
|
license: "MIT",
|
|
201991
|
-
version: "1.199.0-preview.
|
|
202009
|
+
version: "1.199.0-preview.111",
|
|
201992
202010
|
repository: {
|
|
201993
202011
|
type: "git",
|
|
201994
202012
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -223205,8 +223223,8 @@ Char: ` + parser.c;
|
|
|
223205
223223
|
<bpmn:outgoing>{outgoingEdge}</bpmn:outgoing>
|
|
223206
223224
|
</bpmn:Task>`,
|
|
223207
223225
|
inputNotes: "Variable mappings use uipath:mapping with direct input/output elements, not a jsonBody pattern",
|
|
223208
|
-
bpmnElementNotes: "Also used on bpmn:StartEvent and bpmn:
|
|
223209
|
-
extensionTagNotes: "Uses uipath:mapping (not uipath:activity).
|
|
223226
|
+
bpmnElementNotes: "Also used on bpmn:StartEvent, bpmn:EndEvent, bpmn:ScriptTask, and bpmn:SubProcess for variable mappings. On bpmn:Task with no serviceType, defaults to BPMN.Variables.",
|
|
223227
|
+
extensionTagNotes: "Uses uipath:mapping (not uipath:activity). BPMN.Variables mappings are supported on StartEvent, EndEvent, Task, ScriptTask, and SubProcess owners."
|
|
223210
223228
|
},
|
|
223211
223229
|
"BPMN.ScriptTask": {
|
|
223212
223230
|
extensionType: "BPMN.ScriptTask",
|
|
@@ -232175,7 +232193,7 @@ var init_package4 = __esm(() => {
|
|
|
232175
232193
|
package_default6 = {
|
|
232176
232194
|
name: "@uipath/flow-tool",
|
|
232177
232195
|
license: "MIT",
|
|
232178
|
-
version: "1.199.0-preview.
|
|
232196
|
+
version: "1.199.0-preview.111",
|
|
232179
232197
|
description: "Create, debug, and run UiPath Flow projects and jobs.",
|
|
232180
232198
|
private: false,
|
|
232181
232199
|
repository: {
|
|
@@ -329002,7 +329020,7 @@ var package_default7;
|
|
|
329002
329020
|
var init_package5 = __esm(() => {
|
|
329003
329021
|
package_default7 = {
|
|
329004
329022
|
name: "@uipath/packager-tool-flow",
|
|
329005
|
-
version: "1.199.0-preview.
|
|
329023
|
+
version: "1.199.0-preview.111",
|
|
329006
329024
|
description: "UiPath Flow tool implementation",
|
|
329007
329025
|
type: "module",
|
|
329008
329026
|
exports: {
|
|
@@ -353419,7 +353437,7 @@ function requireOmap3() {
|
|
|
353419
353437
|
function resolveYamlOmap(data) {
|
|
353420
353438
|
if (data === null)
|
|
353421
353439
|
return true;
|
|
353422
|
-
const objectKeys =
|
|
353440
|
+
const objectKeys = {};
|
|
353423
353441
|
const object5 = data;
|
|
353424
353442
|
for (let index = 0, length = object5.length;index < length; index += 1) {
|
|
353425
353443
|
const pair = object5[index];
|
|
@@ -353437,10 +353455,9 @@ function requireOmap3() {
|
|
|
353437
353455
|
}
|
|
353438
353456
|
if (!pairHasKey)
|
|
353439
353457
|
return false;
|
|
353440
|
-
if (
|
|
353441
|
-
objectKeys.push(pairKey);
|
|
353442
|
-
else
|
|
353458
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
353443
353459
|
return false;
|
|
353460
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
353444
353461
|
}
|
|
353445
353462
|
return true;
|
|
353446
353463
|
}
|
|
@@ -364843,7 +364860,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
364843
364860
|
package_default8 = {
|
|
364844
364861
|
name: "@uipath/project-packager",
|
|
364845
364862
|
license: "MIT",
|
|
364846
|
-
version: "1.199.0-preview.
|
|
364863
|
+
version: "1.199.0-preview.111",
|
|
364847
364864
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
364848
364865
|
type: "module",
|
|
364849
364866
|
main: "./dist/index.js",
|
|
@@ -364906,7 +364923,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
364906
364923
|
"@uipath/packager-tool-webapp": "workspace:*",
|
|
364907
364924
|
"@uipath/packager-tool-workflowcompiler": "workspace:*",
|
|
364908
364925
|
"@vitest/coverage-v8": "^4.1.6",
|
|
364909
|
-
jsdom: "^
|
|
364926
|
+
jsdom: "^30.0.1",
|
|
364910
364927
|
typescript: "^6.0.2",
|
|
364911
364928
|
"vite-tsconfig-paths": "^6.1.1",
|
|
364912
364929
|
vitest: "^4.1.6"
|
|
@@ -460577,7 +460594,7 @@ var init_package6 = __esm(() => {
|
|
|
460577
460594
|
package_default9 = {
|
|
460578
460595
|
name: "@uipath/agent-sdk",
|
|
460579
460596
|
license: "MIT",
|
|
460580
|
-
version: "1.199.0-preview.
|
|
460597
|
+
version: "1.199.0-preview.111",
|
|
460581
460598
|
description: "SDK for the UiPath Agent Runtime API — evaluation execution and debug sessions.",
|
|
460582
460599
|
repository: {
|
|
460583
460600
|
type: "git",
|
|
@@ -463398,7 +463415,7 @@ function requireOmap4() {
|
|
|
463398
463415
|
function resolveYamlOmap(data) {
|
|
463399
463416
|
if (data === null)
|
|
463400
463417
|
return true;
|
|
463401
|
-
const objectKeys =
|
|
463418
|
+
const objectKeys = {};
|
|
463402
463419
|
const object5 = data;
|
|
463403
463420
|
for (let index = 0, length = object5.length;index < length; index += 1) {
|
|
463404
463421
|
const pair = object5[index];
|
|
@@ -463416,10 +463433,9 @@ function requireOmap4() {
|
|
|
463416
463433
|
}
|
|
463417
463434
|
if (!pairHasKey)
|
|
463418
463435
|
return false;
|
|
463419
|
-
if (
|
|
463420
|
-
objectKeys.push(pairKey);
|
|
463421
|
-
else
|
|
463436
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
463422
463437
|
return false;
|
|
463438
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
463423
463439
|
}
|
|
463424
463440
|
return true;
|
|
463425
463441
|
}
|
|
@@ -489635,7 +489651,7 @@ function requireOmap22() {
|
|
|
489635
489651
|
function resolveYamlOmap(data) {
|
|
489636
489652
|
if (data === null)
|
|
489637
489653
|
return true;
|
|
489638
|
-
const objectKeys =
|
|
489654
|
+
const objectKeys = {};
|
|
489639
489655
|
const object32 = data;
|
|
489640
489656
|
for (let index = 0, length = object32.length;index < length; index += 1) {
|
|
489641
489657
|
const pair = object32[index];
|
|
@@ -489653,10 +489669,9 @@ function requireOmap22() {
|
|
|
489653
489669
|
}
|
|
489654
489670
|
if (!pairHasKey)
|
|
489655
489671
|
return false;
|
|
489656
|
-
if (
|
|
489657
|
-
objectKeys.push(pairKey);
|
|
489658
|
-
else
|
|
489672
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
489659
489673
|
return false;
|
|
489674
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
489660
489675
|
}
|
|
489661
489676
|
return true;
|
|
489662
489677
|
}
|
|
@@ -810379,7 +810394,12 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
810379
810394
|
}
|
|
810380
810395
|
function resolve22(baseURI, relativeURI, options) {
|
|
810381
810396
|
const schemelessOptions = options ? Object.assign({ scheme: "null" }, options) : { scheme: "null" };
|
|
810382
|
-
const
|
|
810397
|
+
const { parsed: baseParsed, malformedAuthorityOrPort: baseMalformed } = parseWithStatus(baseURI, schemelessOptions);
|
|
810398
|
+
const { parsed: relativeParsed, malformedAuthorityOrPort: relativeMalformed } = parseWithStatus(relativeURI, schemelessOptions);
|
|
810399
|
+
if (baseMalformed || relativeMalformed) {
|
|
810400
|
+
throw new Error(baseParsed.error || relativeParsed.error || "URI is malformed.");
|
|
810401
|
+
}
|
|
810402
|
+
const resolved = resolveComponent(baseParsed, relativeParsed, schemelessOptions, true);
|
|
810383
810403
|
schemelessOptions.skipEscape = true;
|
|
810384
810404
|
return serialize(resolved, schemelessOptions);
|
|
810385
810405
|
}
|
|
@@ -810506,6 +810526,7 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
810506
810526
|
}
|
|
810507
810527
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
810508
810528
|
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
810529
|
+
var AUTHORITY_INTRODUCER_REGION = /^(?:[^#/:?]+:)?([/\\\t\n\r]*)/;
|
|
810509
810530
|
function getParseError(parsed, matches) {
|
|
810510
810531
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
810511
810532
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -810540,6 +810561,20 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
810540
810561
|
parsed.error = "URI authority must not contain a literal backslash.";
|
|
810541
810562
|
malformedAuthorityOrPort = true;
|
|
810542
810563
|
}
|
|
810564
|
+
const introducerMatch = uri3.match(AUTHORITY_INTRODUCER_REGION);
|
|
810565
|
+
if (introducerMatch !== null) {
|
|
810566
|
+
const region = introducerMatch[1];
|
|
810567
|
+
const normalizedRegion = region.replace(/[\t\n\r]/g, "");
|
|
810568
|
+
if (normalizedRegion.length >= 2) {
|
|
810569
|
+
if (normalizedRegion.slice(0, 2) !== "//") {
|
|
810570
|
+
parsed.error = parsed.error || "URI authority must not contain a literal backslash.";
|
|
810571
|
+
malformedAuthorityOrPort = true;
|
|
810572
|
+
} else if (region.length !== normalizedRegion.length) {
|
|
810573
|
+
parsed.error = parsed.error || "URI authority introducer must not contain whitespace.";
|
|
810574
|
+
malformedAuthorityOrPort = true;
|
|
810575
|
+
}
|
|
810576
|
+
}
|
|
810577
|
+
}
|
|
810543
810578
|
const matches = uri3.match(URI_PARSE);
|
|
810544
810579
|
if (matches) {
|
|
810545
810580
|
parsed.scheme = matches[1];
|
|
@@ -815100,7 +815135,7 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
815100
815135
|
package_default10 = {
|
|
815101
815136
|
name: "@uipath/case-tool",
|
|
815102
815137
|
license: "MIT",
|
|
815103
|
-
version: "1.199.0-preview.
|
|
815138
|
+
version: "1.199.0-preview.111",
|
|
815104
815139
|
description: "Manage Case Management instances, processes, and incidents.",
|
|
815105
815140
|
private: false,
|
|
815106
815141
|
repository: {
|
|
@@ -818494,8 +818529,8 @@ The identity server that issued this token is not the one you pointed --authorit
|
|
|
818494
818529
|
<bpmn:outgoing>{outgoingEdge}</bpmn:outgoing>
|
|
818495
818530
|
</bpmn:Task>`,
|
|
818496
818531
|
inputNotes: "Variable mappings use uipath:mapping with direct input/output elements, not a jsonBody pattern",
|
|
818497
|
-
bpmnElementNotes: "Also used on bpmn:StartEvent and bpmn:
|
|
818498
|
-
extensionTagNotes: "Uses uipath:mapping (not uipath:activity).
|
|
818532
|
+
bpmnElementNotes: "Also used on bpmn:StartEvent, bpmn:EndEvent, bpmn:ScriptTask, and bpmn:SubProcess for variable mappings. On bpmn:Task with no serviceType, defaults to BPMN.Variables.",
|
|
818533
|
+
extensionTagNotes: "Uses uipath:mapping (not uipath:activity). BPMN.Variables mappings are supported on StartEvent, EndEvent, Task, ScriptTask, and SubProcess owners."
|
|
818499
818534
|
},
|
|
818500
818535
|
"BPMN.ScriptTask": {
|
|
818501
818536
|
extensionType: "BPMN.ScriptTask",
|
|
@@ -866122,7 +866157,7 @@ return {
|
|
|
866122
866157
|
package_default23 = {
|
|
866123
866158
|
name: "@uipath/integrationservice-sdk",
|
|
866124
866159
|
license: "MIT",
|
|
866125
|
-
version: "1.199.0-preview.
|
|
866160
|
+
version: "1.199.0-preview.111",
|
|
866126
866161
|
repository: {
|
|
866127
866162
|
type: "git",
|
|
866128
866163
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -872018,7 +872053,7 @@ return {
|
|
|
872018
872053
|
package_default42 = {
|
|
872019
872054
|
name: "@uipath/solution-sdk",
|
|
872020
872055
|
license: "MIT",
|
|
872021
|
-
version: "1.199.0-preview.
|
|
872056
|
+
version: "1.199.0-preview.111",
|
|
872022
872057
|
repository: {
|
|
872023
872058
|
type: "git",
|
|
872024
872059
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -895736,7 +895771,7 @@ ${e32.Data}`);
|
|
|
895736
895771
|
package_default52 = {
|
|
895737
895772
|
name: "@uipath/solution-sdk",
|
|
895738
895773
|
license: "MIT",
|
|
895739
|
-
version: "1.199.0-preview.
|
|
895774
|
+
version: "1.199.0-preview.111",
|
|
895740
895775
|
repository: {
|
|
895741
895776
|
type: "git",
|
|
895742
895777
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -902861,7 +902896,7 @@ import"./packager-tool.js";
|
|
|
902861
902896
|
var package_default = {
|
|
902862
902897
|
name: "@uipath/maestro-tool",
|
|
902863
902898
|
license: "MIT",
|
|
902864
|
-
version: "1.199.0-preview.
|
|
902899
|
+
version: "1.199.0-preview.111",
|
|
902865
902900
|
description: "Create, debug, and run Maestro projects and jobs.",
|
|
902866
902901
|
private: false,
|
|
902867
902902
|
repository: {
|
|
@@ -905980,4 +906015,4 @@ export {
|
|
|
905980
906015
|
metadata3 as metadata
|
|
905981
906016
|
};
|
|
905982
906017
|
|
|
905983
|
-
//# debugId=
|
|
906018
|
+
//# debugId=65A28823F759D4D264756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/maestro-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.199.0-preview.
|
|
4
|
+
"version": "1.199.0-preview.111",
|
|
5
5
|
"description": "Create, debug, and run Maestro projects and jobs.",
|
|
6
6
|
"private": false,
|
|
7
7
|
"repository": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
|
|
30
30
|
}
|