@uipath/flow-tool 1.202.0 → 1.202.1
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/{binding-service-bptej768.js → binding-service-4y4gk5rb.js} +8 -6
- package/dist/{connector-service-69wbcqx4.js → connector-service-n0jw38wq.js} +7 -5
- package/dist/{debug-conversation-trigger-s7zmkrwz.js → debug-conversation-trigger-9gwtwxn6.js} +6 -4
- package/dist/{edge-service-2b97wf2r.js → edge-service-pxwzsne6.js} +6 -4
- package/dist/{flow-debug-service-z52qzmdh.js → flow-debug-service-m2ch7mwg.js} +26 -16
- package/dist/{flow-eval-node-target-q6951hcp.js → flow-eval-node-target-3530n69r.js} +6 -4
- package/dist/{flow-eval-run-service-2dts1gez.js → flow-eval-run-service-pdkvt1tp.js} +17 -9
- package/dist/{flow-eval-service-1rwppd84.js → flow-eval-service-4zhncch4.js} +6 -4
- package/dist/{flow-init-service-wper25ak.js → flow-init-service-40r1q53q.js} +8 -5
- package/dist/{flow-io-y34mx0vh.js → flow-io-23wgj1sg.js} +6 -4
- package/dist/{flow-migrate-service-95kd56rw.js → flow-migrate-service-n8bjdds3.js} +6 -4
- package/dist/{flow-pack-service-4kzv9wvd.js → flow-pack-service-sw4dbxvr.js} +18 -10
- package/dist/{flow-validate-service-hr2e664c.js → flow-validate-service-k7s2rbgc.js} +11 -9
- package/dist/{hitl-service-zxtn9rmm.js → hitl-service-sztgwdqk.js} +6 -4
- package/dist/index.js +2 -2
- package/dist/init.js +8 -5
- package/dist/maestro-automate-entry-6bxz7zxn.js +22 -0
- package/dist/{node-service-7kdpce7j.js → node-service-n183yy2f.js} +8 -6
- package/dist/{node-yz5tz1jx.js → node-tgybta62.js} +5 -3
- package/dist/{packager-tool-1znrarvv.js → packager-tool-0d7tcvg1.js} +2 -897
- package/dist/{packager-tool-g4pc6ngd.js → packager-tool-0g00g1a5.js} +1 -1
- package/dist/packager-tool-2513jrxr.js +898 -0
- package/dist/packager-tool-3bra2c4j.js +53 -0
- package/dist/{packager-tool-fgdf2zh8.js → packager-tool-3g534a1a.js} +1 -1
- package/dist/{packager-tool-rt64yypa.js → packager-tool-5wmnpaf0.js} +6 -6
- package/dist/packager-tool-9cq9atem.js +2 -0
- package/dist/{packager-tool-dp4c0936.js → packager-tool-af8bw5wd.js} +35 -9
- package/dist/{packager-tool-2f0mt21x.js → packager-tool-cbvcyr3t.js} +1 -1
- package/dist/{packager-tool-wj9bvt17.js → packager-tool-gkhk6ty0.js} +10 -4
- package/dist/{packager-tool-f0tz69yq.js → packager-tool-p7c203yf.js} +59 -46
- package/dist/{packager-tool-vdajjr2d.js → packager-tool-pb1g4qnb.js} +2 -2
- package/dist/{packager-tool-rasvyrt4.js → packager-tool-rfkx60be.js} +1 -1
- package/dist/{packager-tool-bhddcaec.js → packager-tool-s7tgf9kh.js} +1 -1
- package/dist/{packager-tool-4tvdvr4h.js → packager-tool-vzj3dha7.js} +2 -2
- package/dist/{packager-tool-1gasqbew.js → packager-tool-yw0zcs7r.js} +6 -3
- package/dist/packager-tool.js +6 -4
- package/dist/services/flow-init-service.d.ts +12 -0
- package/dist/services/packaging-utils.d.ts +9 -1
- package/dist/{tidy-service-tfkx6266.js → tidy-service-4q2mrf2y.js} +7 -5
- package/dist/tool.js +2 -2
- package/dist/validation.js +11 -9
- package/dist/{variable-service-c0qjsy4j.js → variable-service-xm8dh1gw.js} +6 -4
- package/package.json +2 -2
- /package/dist/{localization-h8a53z6p.js → localization-1br6h143.js} +0 -0
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
} from "./packager-tool-tf3d2y8z.js";
|
|
7
7
|
import {
|
|
8
8
|
package_default
|
|
9
|
-
} from "./packager-tool-
|
|
9
|
+
} from "./packager-tool-pb1g4qnb.js";
|
|
10
10
|
import {
|
|
11
11
|
VALID_RESOURCE_TYPES
|
|
12
12
|
} from "./packager-tool-27avrkyk.js";
|
|
@@ -114,7 +114,7 @@ var BINDING_DELETE_EXAMPLES = [
|
|
|
114
114
|
var registerBindingCommand = (program) => {
|
|
115
115
|
const binding = program.command("binding").description("Manage bindings in a Flow file");
|
|
116
116
|
binding.command("list").description("List all bindings in a Flow file").argument("<file>", "Path to the .flow file").examples(BINDING_LIST_EXAMPLES).trackedAction(processContext, async (file) => {
|
|
117
|
-
const { listBindingsInFlow } = await import("./binding-service-
|
|
117
|
+
const { listBindingsInFlow } = await import("./binding-service-4y4gk5rb.js");
|
|
118
118
|
const [error, result] = await catchError(listBindingsInFlow(file));
|
|
119
119
|
if (error) {
|
|
120
120
|
OutputFormatter.error({
|
|
@@ -136,7 +136,7 @@ var registerBindingCommand = (program) => {
|
|
|
136
136
|
});
|
|
137
137
|
binding.command("add").description(`Add a binding to a Flow file.
|
|
138
138
|
` + `Valid resource types: ${VALID_RESOURCE_TYPES.join(", ")}`).argument("<file>", "Path to the .flow file").argument("<name>", "Binding display name").argument("<resource>", "Resource type").argument("<default-value>", "Default value for the binding").option("--resource-key <key>", "Resource catalog identifier").option("--property-attribute <attr>", "Target node property (e.g., name, folderPath, connection)").option("--resource-sub-type <type>", "Resource sub-classification (e.g., Agent, Process)").examples(BINDING_ADD_EXAMPLES).trackedAction(processContext, async (file, name, resource, defaultValue, options) => {
|
|
139
|
-
const { addBindingToFlow } = await import("./binding-service-
|
|
139
|
+
const { addBindingToFlow } = await import("./binding-service-4y4gk5rb.js");
|
|
140
140
|
const [error, result] = await catchError(addBindingToFlow(file, name, resource, defaultValue, {
|
|
141
141
|
resourceKey: options.resourceKey,
|
|
142
142
|
propertyAttribute: options.propertyAttribute,
|
|
@@ -160,7 +160,7 @@ var registerBindingCommand = (program) => {
|
|
|
160
160
|
});
|
|
161
161
|
});
|
|
162
162
|
binding.command("remove").description("Remove all bindings with a given resource key from a Flow file").argument("<file>", "Path to the .flow file").argument("<resource-key>", "Resource key of the bindings to remove").examples(BINDING_DELETE_EXAMPLES).trackedAction(processContext, async (file, resourceKey) => {
|
|
163
|
-
const { deleteBindingFromFlow } = await import("./binding-service-
|
|
163
|
+
const { deleteBindingFromFlow } = await import("./binding-service-4y4gk5rb.js");
|
|
164
164
|
const [error, result] = await catchError(deleteBindingFromFlow(file, resourceKey));
|
|
165
165
|
if (error) {
|
|
166
166
|
OutputFormatter.error({
|
|
@@ -276,8 +276,8 @@ var CONVERSATIONAL_DEBUG_WARNING = "This flow, which starts on a conversation tr
|
|
|
276
276
|
` + " 2. UiPath Maestro VS Code extension — open the flow and hit Debug.";
|
|
277
277
|
async function projectStartsOnConversationTrigger(projectPath) {
|
|
278
278
|
const [error, found] = await catchError((async () => {
|
|
279
|
-
const { readFlowWorkflow, resolveProjectFlowFile } = await import("./flow-io-
|
|
280
|
-
const { startsOnConversationTrigger } = await import("./debug-conversation-trigger-
|
|
279
|
+
const { readFlowWorkflow, resolveProjectFlowFile } = await import("./flow-io-23wgj1sg.js");
|
|
280
|
+
const { startsOnConversationTrigger } = await import("./debug-conversation-trigger-9gwtwxn6.js");
|
|
281
281
|
const flowFilePath = await resolveProjectFlowFile(projectPath);
|
|
282
282
|
const { workflow } = await readFlowWorkflow(flowFilePath);
|
|
283
283
|
return startsOnConversationTrigger(workflow);
|
|
@@ -548,7 +548,7 @@ function registerDebugCommand(program) {
|
|
|
548
548
|
InboundVoiceDebugError,
|
|
549
549
|
MissingSolutionWrapperError,
|
|
550
550
|
UnregisteredProjectError
|
|
551
|
-
} = await import("./flow-debug-service-
|
|
551
|
+
} = await import("./flow-debug-service-m2ch7mwg.js");
|
|
552
552
|
const { MaestroHttpError } = await import("./debug-http-client-mc67gw2b.js");
|
|
553
553
|
const {
|
|
554
554
|
buildPollTimeoutFailureOutput,
|
|
@@ -873,7 +873,7 @@ function getDeleteEdgeInstructions(file) {
|
|
|
873
873
|
return `Check that "${file}" exists and run 'uip maestro flow edge list ${file}' to find a valid edge ID, then retry.`;
|
|
874
874
|
}
|
|
875
875
|
async function runDeleteEdge(file, edgeId, code) {
|
|
876
|
-
const { deleteEdgeFromFlow } = await import("./edge-service-
|
|
876
|
+
const { deleteEdgeFromFlow } = await import("./edge-service-pxwzsne6.js");
|
|
877
877
|
const normalizedEdgeId = edgeId.trim();
|
|
878
878
|
const [error, result] = await catchError(deleteEdgeFromFlow(file, normalizedEdgeId));
|
|
879
879
|
if (error) {
|
|
@@ -896,7 +896,7 @@ async function runDeleteEdge(file, edgeId, code) {
|
|
|
896
896
|
var registerEdgeCommand = (program) => {
|
|
897
897
|
const edge = program.command("edge").description("Manage edges in a Flow file");
|
|
898
898
|
edge.command("list").description("List all edges in a Flow file").argument("<file>", "Path to the .flow file").examples(EDGE_LIST_EXAMPLES).trackedAction(processContext, async (file) => {
|
|
899
|
-
const { listEdgesInFlow } = await import("./edge-service-
|
|
899
|
+
const { listEdgesInFlow } = await import("./edge-service-pxwzsne6.js");
|
|
900
900
|
const [error, result] = await catchError(listEdgesInFlow(file));
|
|
901
901
|
if (error) {
|
|
902
902
|
OutputFormatter.error({
|
|
@@ -917,7 +917,7 @@ var registerEdgeCommand = (program) => {
|
|
|
917
917
|
});
|
|
918
918
|
});
|
|
919
919
|
edge.command("add").description("Add an edge between two nodes in a Flow file").argument("<file>", "Path to the .flow file").argument("<source-id>", "ID of the source node").argument("<target-id>", "ID of the target node").option("--source-port <port>", 'Source port name (defaults to "output")').option("--target-port <port>", 'Target port name (defaults to "input")').examples(EDGE_ADD_EXAMPLES).trackedAction(processContext, async (file, sourceId, targetId, options) => {
|
|
920
|
-
const { addEdgeToFlow } = await import("./edge-service-
|
|
920
|
+
const { addEdgeToFlow } = await import("./edge-service-pxwzsne6.js");
|
|
921
921
|
const [error, result] = await catchError(addEdgeToFlow(file, sourceId, targetId, {
|
|
922
922
|
sourcePort: options.sourcePort,
|
|
923
923
|
targetPort: options.targetPort
|
|
@@ -1287,7 +1287,7 @@ function registerEvalRunCommand(evalCmd) {
|
|
|
1287
1287
|
addStartOptions(runCmd.command("start").description("Start a Studio Web evaluation run (Flow solution must be available in Studio Web)")).option("--wait", "Wait for the evaluation to complete and show results").option("--timeout <seconds>", "Timeout in seconds for --wait polling", (value) => Number.parseInt(value, 10)).examples(FLOW_EVAL_RUN_START_EXAMPLES).trackedAction(processContext, async (options) => {
|
|
1288
1288
|
const [error] = await catchError((async () => {
|
|
1289
1289
|
const config = await resolveStudioWebConfig();
|
|
1290
|
-
const { FlowEvalRunService } = await import("./flow-eval-run-service-
|
|
1290
|
+
const { FlowEvalRunService } = await import("./flow-eval-run-service-pdkvt1tp.js");
|
|
1291
1291
|
const service = new FlowEvalRunService;
|
|
1292
1292
|
const result = await service.startRemoteEvalRun(options.path, options.set, config, {
|
|
1293
1293
|
solutionId: options.solutionId,
|
|
@@ -1319,7 +1319,7 @@ function registerEvalRunCommand(evalCmd) {
|
|
|
1319
1319
|
addTargetOptions(runCmd.command("status").description("Check the status of a Studio Web Flow evaluation run").argument("<evalSetRunId>", "Evaluation set run ID")).examples(FLOW_EVAL_RUN_STATUS_EXAMPLES).trackedAction(processContext, async (evalSetRunId, options) => {
|
|
1320
1320
|
const [error] = await catchError((async () => {
|
|
1321
1321
|
const config = await resolveStudioWebConfig();
|
|
1322
|
-
const { FlowEvalRunService } = await import("./flow-eval-run-service-
|
|
1322
|
+
const { FlowEvalRunService } = await import("./flow-eval-run-service-pdkvt1tp.js");
|
|
1323
1323
|
const service = new FlowEvalRunService;
|
|
1324
1324
|
const target = await resolveRemoteTarget(service, options, config);
|
|
1325
1325
|
const [run, evaluators] = await Promise.all([
|
|
@@ -1345,7 +1345,7 @@ function registerEvalRunCommand(evalCmd) {
|
|
|
1345
1345
|
addTargetOptions(runCmd.command("results").description("Get detailed results for a Studio Web Flow evaluation run").argument("<evalSetRunId>", "Evaluation set run ID")).option("--only-failed", "Show only failed or errored data points").option("--verbose", "Include evaluator justifications in output").option("--export-format <json|csv>", "Export results to file (json or csv)").examples(FLOW_EVAL_RUN_RESULTS_EXAMPLES).trackedAction(processContext, async (evalSetRunId, options) => {
|
|
1346
1346
|
const [error] = await catchError((async () => {
|
|
1347
1347
|
const config = await resolveStudioWebConfig();
|
|
1348
|
-
const { FlowEvalRunService } = await import("./flow-eval-run-service-
|
|
1348
|
+
const { FlowEvalRunService } = await import("./flow-eval-run-service-pdkvt1tp.js");
|
|
1349
1349
|
const service = new FlowEvalRunService;
|
|
1350
1350
|
const target = await resolveRemoteTarget(service, options, config);
|
|
1351
1351
|
let evalRuns = await service.getRemoteEvalRuns(config, target.workloadId, evalSetRunId);
|
|
@@ -1379,7 +1379,7 @@ function registerEvalRunCommand(evalCmd) {
|
|
|
1379
1379
|
addTargetOptions(runCmd.command("list").description("List Studio Web evaluation runs for a Flow eval set")).examples(FLOW_EVAL_RUN_LIST_EXAMPLES).trackedAction(processContext, async (options) => {
|
|
1380
1380
|
const [error] = await catchError((async () => {
|
|
1381
1381
|
const config = await resolveStudioWebConfig();
|
|
1382
|
-
const { FlowEvalRunService } = await import("./flow-eval-run-service-
|
|
1382
|
+
const { FlowEvalRunService } = await import("./flow-eval-run-service-pdkvt1tp.js");
|
|
1383
1383
|
const service = new FlowEvalRunService;
|
|
1384
1384
|
const target = await resolveRemoteTarget(service, options, config);
|
|
1385
1385
|
const runs = await service.listRemoteEvalSetRuns(config, target.workloadId, target.evalSet.id);
|
|
@@ -1405,7 +1405,7 @@ function registerEvalRunCommand(evalCmd) {
|
|
|
1405
1405
|
addTargetOptions(runCmd.command("compare").description("Compare results of two Studio Web Flow evaluation runs").argument("<evalSetRunId>", "First evaluation set run ID").requiredOption("--compare-to <id>", "Second evaluation set run ID to compare against")).examples(FLOW_EVAL_RUN_COMPARE_EXAMPLES).trackedAction(processContext, async (evalSetRunId, options) => {
|
|
1406
1406
|
const [error] = await catchError((async () => {
|
|
1407
1407
|
const config = await resolveStudioWebConfig();
|
|
1408
|
-
const { FlowEvalRunService } = await import("./flow-eval-run-service-
|
|
1408
|
+
const { FlowEvalRunService } = await import("./flow-eval-run-service-pdkvt1tp.js");
|
|
1409
1409
|
const service = new FlowEvalRunService;
|
|
1410
1410
|
const target = await resolveRemoteTarget(service, options, config);
|
|
1411
1411
|
const [runsA, runsB, runMetaA, runMetaB] = await Promise.all([
|
|
@@ -1538,7 +1538,7 @@ function registerEvaluatorCommands(evalCmd) {
|
|
|
1538
1538
|
const evaluator = evalCmd.command("evaluator").description("Manage Flow evaluators");
|
|
1539
1539
|
evaluator.command("add").description("Add an evaluator to the flow project").argument("<name>", "Evaluator name").requiredOption("--type <type>", `Evaluator type: ${evaluatorTypeAliases().join(", ")}`).option("--description <text>", "Evaluator description").option("--target-key <key>", "Target output key", "*").option("--model <model>", "LLM model for LLM judge evaluators").option("--prompt <prompt>", "Custom LLM judge prompt").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (name, options) => {
|
|
1540
1540
|
const [error] = await catchError((async () => {
|
|
1541
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1541
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1542
1542
|
const service = new FlowEvalService;
|
|
1543
1543
|
const created = await service.addEvaluator(options.path, {
|
|
1544
1544
|
name,
|
|
@@ -1565,7 +1565,7 @@ function registerEvaluatorCommands(evalCmd) {
|
|
|
1565
1565
|
});
|
|
1566
1566
|
evaluator.command("list").description("List evaluators in a flow project").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (options) => {
|
|
1567
1567
|
const [error] = await catchError((async () => {
|
|
1568
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1568
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1569
1569
|
const service = new FlowEvalService;
|
|
1570
1570
|
const evaluators = await service.listEvaluators(options.path);
|
|
1571
1571
|
OutputFormatter.success({
|
|
@@ -1586,7 +1586,7 @@ function registerEvaluatorCommands(evalCmd) {
|
|
|
1586
1586
|
});
|
|
1587
1587
|
evaluator.command("remove").description("Remove an evaluator from a flow project").argument("<id>", "Evaluator ID, name, or file base name").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (id, options) => {
|
|
1588
1588
|
const [error] = await catchError((async () => {
|
|
1589
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1589
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1590
1590
|
const service = new FlowEvalService;
|
|
1591
1591
|
const removed = await service.removeEvaluator(options.path, id);
|
|
1592
1592
|
if (!removed) {
|
|
@@ -1607,8 +1607,8 @@ function registerEvalSetCommands(evalCmd) {
|
|
|
1607
1607
|
const set = evalCmd.command("set").description("Manage evaluation sets");
|
|
1608
1608
|
set.command("add").description("Create an evaluation set").argument("<name>", "Evaluation set name").option("--evaluators <refs>", "Comma-separated evaluator IDs or file base names (default: all)").option("--entry-point <id>", "Entry point node id stored as the eval set's selectedEntrypoint. An agent node id creates a node-scoped eval set (evaluates that node in isolation)").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (name, options) => {
|
|
1609
1609
|
const [error] = await catchError((async () => {
|
|
1610
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1611
|
-
const { readEvalSetScope, readNodeTargetId } = await import("./flow-eval-node-target-
|
|
1610
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1611
|
+
const { readEvalSetScope, readNodeTargetId } = await import("./flow-eval-node-target-3530n69r.js");
|
|
1612
1612
|
const service = new FlowEvalService;
|
|
1613
1613
|
const created = await service.addEvalSet(options.path, {
|
|
1614
1614
|
name,
|
|
@@ -1635,8 +1635,8 @@ function registerEvalSetCommands(evalCmd) {
|
|
|
1635
1635
|
});
|
|
1636
1636
|
set.command("list").description("List evaluation sets").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (options) => {
|
|
1637
1637
|
const [error] = await catchError((async () => {
|
|
1638
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1639
|
-
const { readEvalSetScope, readNodeTargetId } = await import("./flow-eval-node-target-
|
|
1638
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1639
|
+
const { readEvalSetScope, readNodeTargetId } = await import("./flow-eval-node-target-3530n69r.js");
|
|
1640
1640
|
const service = new FlowEvalService;
|
|
1641
1641
|
const sets = await service.listEvalSets(options.path);
|
|
1642
1642
|
OutputFormatter.success({
|
|
@@ -1662,7 +1662,7 @@ function registerEvalSetCommands(evalCmd) {
|
|
|
1662
1662
|
});
|
|
1663
1663
|
set.command("remove").description("Remove an evaluation set").argument("<id>", "Evaluation set ID, name, or file base name").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (id, options) => {
|
|
1664
1664
|
const [error] = await catchError((async () => {
|
|
1665
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1665
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1666
1666
|
const service = new FlowEvalService;
|
|
1667
1667
|
const removed = await service.removeEvalSet(options.path, id);
|
|
1668
1668
|
if (!removed) {
|
|
@@ -1689,7 +1689,7 @@ function registerEvaluationCommands(evalCmd) {
|
|
|
1689
1689
|
const inputFiles = parseInputFiles(options.inputFile);
|
|
1690
1690
|
const expectedOutput = options.expected ? parseJsonObject(options.expected, "--expected") : undefined;
|
|
1691
1691
|
const criteria = options.criteria ? parseCriteriaOption(options.criteria) : undefined;
|
|
1692
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1692
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1693
1693
|
const service = new FlowEvalService;
|
|
1694
1694
|
const evaluation = await service.addEvaluation(options.path, options.set, {
|
|
1695
1695
|
name,
|
|
@@ -1716,7 +1716,7 @@ function registerEvaluationCommands(evalCmd) {
|
|
|
1716
1716
|
});
|
|
1717
1717
|
evalCmd.command("list").description("List data points in an evaluation set").requiredOption("--set <name>", "Evaluation set name or ID").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (options) => {
|
|
1718
1718
|
const [error] = await catchError((async () => {
|
|
1719
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1719
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1720
1720
|
const service = new FlowEvalService;
|
|
1721
1721
|
const evaluations = await service.listEvaluations(options.path, options.set);
|
|
1722
1722
|
OutputFormatter.success({
|
|
@@ -1737,7 +1737,7 @@ function registerEvaluationCommands(evalCmd) {
|
|
|
1737
1737
|
});
|
|
1738
1738
|
evalCmd.command("remove").description("Remove a data point from an evaluation set").argument("<id>", "Data point ID or name").requiredOption("--set <name>", "Evaluation set name or ID").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (id, options) => {
|
|
1739
1739
|
const [error] = await catchError((async () => {
|
|
1740
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1740
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1741
1741
|
const service = new FlowEvalService;
|
|
1742
1742
|
const removed = await service.removeEvaluation(options.path, options.set, id);
|
|
1743
1743
|
if (!removed) {
|
|
@@ -1781,7 +1781,7 @@ function registerSimulationCommands(evalCmd) {
|
|
|
1781
1781
|
simulationInstruction: options.simulationInstructions,
|
|
1782
1782
|
mockValue
|
|
1783
1783
|
};
|
|
1784
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1784
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1785
1785
|
const service = new FlowEvalService;
|
|
1786
1786
|
if (options.parent !== undefined) {
|
|
1787
1787
|
const created = await service.addChildSimulation(options.path, options.set, options.dataPoint, options.parent, simulation2);
|
|
@@ -1818,7 +1818,7 @@ function registerSimulationCommands(evalCmd) {
|
|
|
1818
1818
|
});
|
|
1819
1819
|
simulation.command("list").description("List simulations on a data point").requiredOption("--set <name>", "Evaluation set name or ID").requiredOption("--data-point <id>", "Data point name or ID").option("--parent <component-id>", "Parent agent component ID. When set, lists child tool simulations on the parent agent node.").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (options) => {
|
|
1820
1820
|
const [error] = await catchError((async () => {
|
|
1821
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1821
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1822
1822
|
const service = new FlowEvalService;
|
|
1823
1823
|
const simulations = options.parent !== undefined ? await service.listChildSimulations(options.path, options.set, options.dataPoint, options.parent) : await service.listSimulations(options.path, options.set, options.dataPoint);
|
|
1824
1824
|
OutputFormatter.success({
|
|
@@ -1840,7 +1840,7 @@ function registerSimulationCommands(evalCmd) {
|
|
|
1840
1840
|
});
|
|
1841
1841
|
simulation.command("remove").description("Remove a simulation from a data point").argument("<component-id>", "Component ID to remove").requiredOption("--set <name>", "Evaluation set name or ID").requiredOption("--data-point <id>", "Data point name or ID").option("--parent <component-id>", "Parent agent component ID. When set, removes a child tool simulation from the parent agent node.").option("--path <path>", FLOW_EVAL_PATH_OPTION_DESCRIPTION2, ".").trackedAction(processContext, async (componentId, options) => {
|
|
1842
1842
|
const [error] = await catchError((async () => {
|
|
1843
|
-
const { FlowEvalService } = await import("./flow-eval-service-
|
|
1843
|
+
const { FlowEvalService } = await import("./flow-eval-service-4zhncch4.js");
|
|
1844
1844
|
const service = new FlowEvalService;
|
|
1845
1845
|
const removed = options.parent !== undefined ? await service.removeChildSimulation(options.path, options.set, options.dataPoint, options.parent, componentId) : await service.removeSimulation(options.path, options.set, options.dataPoint, componentId);
|
|
1846
1846
|
if (!removed) {
|
|
@@ -1985,7 +1985,7 @@ var registerHitlCommand = (program) => {
|
|
|
1985
1985
|
}
|
|
1986
1986
|
schema = parsed;
|
|
1987
1987
|
}
|
|
1988
|
-
const { addHitlNode } = await import("./hitl-service-
|
|
1988
|
+
const { addHitlNode } = await import("./hitl-service-sztgwdqk.js");
|
|
1989
1989
|
const [error, result] = await catchError(addHitlNode(file, {
|
|
1990
1990
|
schema,
|
|
1991
1991
|
priority: options.priority,
|
|
@@ -2051,14 +2051,27 @@ Packing or uploading the solution will sync solution resources automatically.`
|
|
|
2051
2051
|
Packing or uploading the solution will sync solution resources automatically.`
|
|
2052
2052
|
}
|
|
2053
2053
|
}
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
Description: "Create a Maestro Automate project. Same Flow project and the same commands; only the runtime profile written into operate.json differs.",
|
|
2057
|
+
Command: "uip maestro flow init my-automate --automate",
|
|
2058
|
+
Output: {
|
|
2059
|
+
Code: "FlowInit",
|
|
2060
|
+
Data: {
|
|
2061
|
+
Status: "Created successfully",
|
|
2062
|
+
Path: "/workspace/my-automateSolution/my-automate"
|
|
2063
|
+
}
|
|
2064
|
+
}
|
|
2054
2065
|
}
|
|
2055
2066
|
];
|
|
2056
2067
|
var registerInitCommand = (program) => {
|
|
2057
|
-
program.command("init").description("Create a new Flow project with boilerplate files. If run outside an existing solution, a parent '<name>Solution' is scaffolded automatically and the flow project is created inside it. If run inside an existing solution, the project is added to that solution.").argument("<name>", "Flow project name").option("--force", "Force initialization even if target directory exists and is not empty").option("--skip-solution-registration", "Do not auto-register this project in the surrounding solution").examples(FLOW_INIT_EXAMPLES).trackedAction(processContext, async (name, options) => {
|
|
2058
|
-
const { flowInitAsync } = await import("./flow-init-service-
|
|
2068
|
+
program.command("init").description("Create a new Flow project with boilerplate files. If run outside an existing solution, a parent '<name>Solution' is scaffolded automatically and the flow project is created inside it. If run inside an existing solution, the project is added to that solution.").argument("<name>", "Flow project name").option("--force", "Force initialization even if target directory exists and is not empty").option("--skip-solution-registration", "Do not auto-register this project in the surrounding solution").option("--automate", "Create a Maestro Automate project. Same Flow project and the same commands — it only changes the runtime profile written into operate.json.").examples(FLOW_INIT_EXAMPLES).trackedAction(processContext, async (name, options) => {
|
|
2069
|
+
const { flowInitAsync } = await import("./flow-init-service-40r1q53q.js");
|
|
2070
|
+
const { RuntimeProfile } = await import("./maestro-automate-entry-6bxz7zxn.js");
|
|
2059
2071
|
const [error, result] = await catchError(flowInitAsync(name, {
|
|
2060
2072
|
force: options.force,
|
|
2061
|
-
skipRegistration: options.skipSolutionRegistration === true
|
|
2073
|
+
skipRegistration: options.skipSolutionRegistration === true,
|
|
2074
|
+
profile: options.automate ? RuntimeProfile.Lite : RuntimeProfile.Standard
|
|
2062
2075
|
}));
|
|
2063
2076
|
if (error) {
|
|
2064
2077
|
OutputFormatter.error({
|
|
@@ -2526,7 +2539,7 @@ var FLOW_MIGRATE_EXAMPLES = [
|
|
|
2526
2539
|
];
|
|
2527
2540
|
var registerMigrateCommand = (program) => {
|
|
2528
2541
|
program.command("migrate").description("Migrate a .flow file to the current workflow and node schema versions").argument("<file>", "Path to the .flow file").option("--dry-run", "Show what would change without writing the file").option("--no-include-optional", "Skip optional node migrations (e.g. typeVersion normalization). Default: optional migrations are applied.").examples(FLOW_MIGRATE_EXAMPLES).trackedAction(processContext, async (file, options) => {
|
|
2529
|
-
const { migrateFlow } = await import("./flow-migrate-service-
|
|
2542
|
+
const { migrateFlow } = await import("./flow-migrate-service-n8bjdds3.js");
|
|
2530
2543
|
const [error, result] = await catchError(migrateFlow(file, {
|
|
2531
2544
|
dryRun: options.dryRun,
|
|
2532
2545
|
includeOptional: options.includeOptional
|
|
@@ -2692,7 +2705,7 @@ function getDeleteNodeInstructions(file) {
|
|
|
2692
2705
|
return `Check that "${file}" exists and run 'uip maestro flow node list ${file}' to find a valid node ID, then retry.`;
|
|
2693
2706
|
}
|
|
2694
2707
|
async function runDeleteNode(file, nodeId, code) {
|
|
2695
|
-
const { deleteNodeFromFlow } = await import("./node-service-
|
|
2708
|
+
const { deleteNodeFromFlow } = await import("./node-service-n183yy2f.js");
|
|
2696
2709
|
const normalizedNodeId = nodeId.trim();
|
|
2697
2710
|
const [error, result] = await catchError(deleteNodeFromFlow(file, normalizedNodeId));
|
|
2698
2711
|
if (error) {
|
|
@@ -2764,7 +2777,7 @@ Example: uip maestro flow node add flow.flow uipath.connector.jira.createIssue -
|
|
|
2764
2777
|
NodeTypeNotEnabledError,
|
|
2765
2778
|
NodeTypeNotFoundError,
|
|
2766
2779
|
SourceRequiredError
|
|
2767
|
-
} = await import("./node-service-
|
|
2780
|
+
} = await import("./node-service-n183yy2f.js");
|
|
2768
2781
|
const [error, result] = await catchError(addNodeToFlow(file, nodeType, {
|
|
2769
2782
|
position,
|
|
2770
2783
|
label: options.label,
|
|
@@ -2884,7 +2897,7 @@ MANAGED HTTP NODES (type core.action.http.v2)
|
|
|
2884
2897
|
processContext.exit(1);
|
|
2885
2898
|
return;
|
|
2886
2899
|
}
|
|
2887
|
-
const { configureConnectorNode, InvalidDetailError } = await import("./connector-service-
|
|
2900
|
+
const { configureConnectorNode, InvalidDetailError } = await import("./connector-service-n0jw38wq.js");
|
|
2888
2901
|
const [error, result] = await catchError(configureConnectorNode(file, nodeId, parsed));
|
|
2889
2902
|
if (error) {
|
|
2890
2903
|
const message = error instanceof InvalidDetailError ? "Invalid --detail" : "Error configuring node";
|
|
@@ -2910,7 +2923,7 @@ MANAGED HTTP NODES (type core.action.http.v2)
|
|
|
2910
2923
|
});
|
|
2911
2924
|
});
|
|
2912
2925
|
node.command("list").description("List all nodes in a Flow file").argument("<file>", "Path to the .flow file").examples(NODE_LIST_EXAMPLES).trackedAction(processContext, async (file) => {
|
|
2913
|
-
const { listNodesInFlow } = await import("./node-service-
|
|
2926
|
+
const { listNodesInFlow } = await import("./node-service-n183yy2f.js");
|
|
2914
2927
|
const [error, result] = await catchError(listNodesInFlow(file));
|
|
2915
2928
|
if (error) {
|
|
2916
2929
|
OutputFormatter.error({
|
|
@@ -2955,7 +2968,7 @@ var FLOW_PACK_EXAMPLES = [
|
|
|
2955
2968
|
var registerPackCommand = (program) => {
|
|
2956
2969
|
const command = program.command("pack").description("Pack a Flow project into a .nupkg file").argument("<project-path>", "Path to the Flow project directory").argument("<output-path>", "Output directory where the .nupkg will be saved").option("-n, --name <name>", "Package name (default: project folder name)").option("-v, --version <version>", "Package version (default: 1.0.0)", "1.0.0");
|
|
2957
2970
|
registerPackageMetadataOptions(command).examples(FLOW_PACK_EXAMPLES).trackedAction(processContext, async (projectPath, outputPath, options) => {
|
|
2958
|
-
const { FlowPackService } = await import("./flow-pack-service-
|
|
2971
|
+
const { FlowPackService } = await import("./flow-pack-service-sw4dbxvr.js");
|
|
2959
2972
|
const service = new FlowPackService;
|
|
2960
2973
|
const exitCode = await service.execute(projectPath, {
|
|
2961
2974
|
output: outputPath,
|
|
@@ -3675,7 +3688,7 @@ var registerPublishCommand = (program) => {
|
|
|
3675
3688
|
}
|
|
3676
3689
|
resolvedFeedId = folderFeedId;
|
|
3677
3690
|
}
|
|
3678
|
-
const { FlowPackService } = await import("./flow-pack-service-
|
|
3691
|
+
const { FlowPackService } = await import("./flow-pack-service-sw4dbxvr.js");
|
|
3679
3692
|
const service = new FlowPackService;
|
|
3680
3693
|
const [packError, packResult] = await catchError(service.executeAsync(projectPath, {
|
|
3681
3694
|
output: packageOutputPath,
|
|
@@ -3774,7 +3787,7 @@ var registerRegistryCommand2 = (program) => {
|
|
|
3774
3787
|
// src/commands/tidy.ts
|
|
3775
3788
|
var registerTidyCommand = (program) => {
|
|
3776
3789
|
program.command("format").description("Format a .flow file by auto-laying out nodes to prevent overlaps and arrange in a clean flow").argument("<file>", "Path to the .flow file").trackedAction(processContext, async (file) => {
|
|
3777
|
-
const { tidyFlow } = await import("./tidy-service-
|
|
3790
|
+
const { tidyFlow } = await import("./tidy-service-4q2mrf2y.js");
|
|
3778
3791
|
const [error, result] = await catchError(tidyFlow(file));
|
|
3779
3792
|
if (error) {
|
|
3780
3793
|
OutputFormatter.error({
|
|
@@ -3890,7 +3903,7 @@ var registerValidateCommand = (program) => {
|
|
|
3890
3903
|
governanceEnforcements = data.enforcements;
|
|
3891
3904
|
availableModelNames = data.modelNames;
|
|
3892
3905
|
}
|
|
3893
|
-
const { FlowValidateService } = await import("./flow-validate-service-
|
|
3906
|
+
const { FlowValidateService } = await import("./flow-validate-service-k7s2rbgc.js");
|
|
3894
3907
|
const service = new FlowValidateService({
|
|
3895
3908
|
governanceEnforcements,
|
|
3896
3909
|
availableModelNames,
|
|
@@ -4086,7 +4099,7 @@ var registerVariableCommand = (program) => {
|
|
|
4086
4099
|
}
|
|
4087
4100
|
schema = parsed;
|
|
4088
4101
|
}
|
|
4089
|
-
const { addVariableToFlow } = await import("./variable-service-
|
|
4102
|
+
const { addVariableToFlow } = await import("./variable-service-xm8dh1gw.js");
|
|
4090
4103
|
const [error, variable2] = await catchError(addVariableToFlow(file, {
|
|
4091
4104
|
id: variableId,
|
|
4092
4105
|
direction: options.direction,
|
|
@@ -4126,7 +4139,7 @@ var registerVariableCommand = (program) => {
|
|
|
4126
4139
|
processContext.exit(1);
|
|
4127
4140
|
return;
|
|
4128
4141
|
}
|
|
4129
|
-
const { deleteVariableFromFlow } = await import("./variable-service-
|
|
4142
|
+
const { deleteVariableFromFlow } = await import("./variable-service-xm8dh1gw.js");
|
|
4130
4143
|
const [error, deletedVariable] = await catchError(deleteVariableFromFlow(file, variableId));
|
|
4131
4144
|
if (error) {
|
|
4132
4145
|
OutputFormatter.error({
|
|
@@ -4146,7 +4159,7 @@ var registerVariableCommand = (program) => {
|
|
|
4146
4159
|
});
|
|
4147
4160
|
});
|
|
4148
4161
|
variable.command("list").description("List all variables in a Flow file").argument("<file>", "Path to the .flow file").examples(VARIABLE_LIST_EXAMPLES).trackedAction(processContext, async (file) => {
|
|
4149
|
-
const { listVariablesInFlow } = await import("./variable-service-
|
|
4162
|
+
const { listVariablesInFlow } = await import("./variable-service-xm8dh1gw.js");
|
|
4150
4163
|
const [error, result] = await catchError(listVariablesInFlow(file));
|
|
4151
4164
|
if (error) {
|
|
4152
4165
|
OutputFormatter.error({
|
|
@@ -4231,4 +4244,4 @@ var registerCommands = async (program) => {
|
|
|
4231
4244
|
|
|
4232
4245
|
export { metadata, registerCommands };
|
|
4233
4246
|
|
|
4234
|
-
//# debugId=
|
|
4247
|
+
//# debugId=6413E5CE46515F0164756E2164756E21
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
var package_default = {
|
|
3
3
|
name: "@uipath/flow-tool",
|
|
4
4
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
5
|
-
version: "1.202.
|
|
5
|
+
version: "1.202.1",
|
|
6
6
|
description: "Create, debug, and run UiPath Flow projects and jobs.",
|
|
7
7
|
private: false,
|
|
8
8
|
repository: {
|
|
@@ -74,4 +74,4 @@ var package_default = {
|
|
|
74
74
|
|
|
75
75
|
export { package_default };
|
|
76
76
|
|
|
77
|
-
//# debugId=
|
|
77
|
+
//# debugId=41FF372507C67E6464756E2164756E21
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
regenerateBindingsFile
|
|
3
|
-
} from "./packager-tool-
|
|
3
|
+
} from "./packager-tool-yw0zcs7r.js";
|
|
4
4
|
import {
|
|
5
5
|
getConnectorInfo,
|
|
6
6
|
getNode,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
import {
|
|
13
13
|
readFlowWorkflow,
|
|
14
14
|
writeFlowWorkflow
|
|
15
|
-
} from "./packager-tool-
|
|
15
|
+
} from "./packager-tool-rfkx60be.js";
|
|
16
16
|
import {
|
|
17
17
|
addBinding,
|
|
18
18
|
addNode,
|
|
@@ -6,7 +6,10 @@ import {
|
|
|
6
6
|
isInlineAgentNodeType,
|
|
7
7
|
operateRuntimeOptions,
|
|
8
8
|
readInlineAgentSource
|
|
9
|
-
} from "./packager-tool-
|
|
9
|
+
} from "./packager-tool-af8bw5wd.js";
|
|
10
|
+
import {
|
|
11
|
+
withRuntimeProfile
|
|
12
|
+
} from "./packager-tool-3bra2c4j.js";
|
|
10
13
|
import {
|
|
11
14
|
catchError,
|
|
12
15
|
logger
|
|
@@ -206,7 +209,7 @@ async function writePackagingArtifactsDetailed(fs, projectDir, projectId, packag
|
|
|
206
209
|
await fs.writeFile(fs.path.join(projectDir, "bindings_v2.json"), `${JSON.stringify(stagedBindingsJson, null, 2)}
|
|
207
210
|
`);
|
|
208
211
|
const mainEntryPoint = `/${bpmnFileName}#${startEventId}`;
|
|
209
|
-
const operateJson = generateOperateJson(projectId, mainEntryPoint, operateRuntimeOptions(packagingNodes));
|
|
212
|
+
const operateJson = withRuntimeProfile(generateOperateJson(projectId, mainEntryPoint, operateRuntimeOptions(packagingNodes)), options.profile ?? "Standard" /* Standard */);
|
|
210
213
|
await fs.writeFile(fs.path.join(projectDir, "operate.json"), `${JSON.stringify(operateJson, null, 2)}
|
|
211
214
|
`);
|
|
212
215
|
const packageDescriptorJson = options.packageDescriptorJson ?? {
|
|
@@ -259,4 +262,4 @@ async function regenerateBindingsFile(fs, flowFilePath) {
|
|
|
259
262
|
|
|
260
263
|
export { fileNodesToPackagingNodes, packageInlineAgents, stageInlineAgentPackageFiles, buildInlineAgentDescriptors, writePackagingArtifacts, writePackagingArtifactsDetailed, regenerateBindingsFile };
|
|
261
264
|
|
|
262
|
-
//# debugId=
|
|
265
|
+
//# debugId=5CCCFEE2B7B6EB4764756E2164756E21
|
package/dist/packager-tool.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
registerPackagerFactories
|
|
3
|
-
} from "./packager-tool-
|
|
3
|
+
} from "./packager-tool-3g534a1a.js";
|
|
4
4
|
import"./packager-tool-w0kr4mbc.js";
|
|
5
|
-
import"./packager-tool-
|
|
5
|
+
import"./packager-tool-af8bw5wd.js";
|
|
6
6
|
import"./packager-tool-tn5e7wnb.js";
|
|
7
|
-
import"./packager-tool-
|
|
7
|
+
import"./packager-tool-3bra2c4j.js";
|
|
8
|
+
import"./packager-tool-2513jrxr.js";
|
|
9
|
+
import"./packager-tool-0d7tcvg1.js";
|
|
8
10
|
import"./packager-tool-nkrmjr3a.js";
|
|
9
11
|
import"./packager-tool-rs6jm14d.js";
|
|
10
12
|
import"./packager-tool-hk1gxnth.js";
|
|
@@ -26,4 +28,4 @@ export {
|
|
|
26
28
|
registerPackagerFactories
|
|
27
29
|
};
|
|
28
30
|
|
|
29
|
-
//# debugId=
|
|
31
|
+
//# debugId=700C8E2F5DC96D8A64756E2164756E21
|
|
@@ -14,6 +14,18 @@ export interface FlowInitOptions {
|
|
|
14
14
|
* registration; the registration envelope reports Status "OptedOut".
|
|
15
15
|
*/
|
|
16
16
|
skipRegistration?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* `Lite` scaffolds a Maestro Automate project (`--automate`); `Standard`
|
|
19
|
+
* (the default) a plain Flow. Both are Flow projects — the profile only
|
|
20
|
+
* changes what packaging writes to `runtimeOptions.profile`.
|
|
21
|
+
*
|
|
22
|
+
* Inlined mirror of the packager's `RuntimeProfile`, for the same reason
|
|
23
|
+
* as `FlowProjectRegistration` below: this type ships in the published
|
|
24
|
+
* `init.d.ts`, and `@uipath/packager-tool-flow` is a devDependency that
|
|
25
|
+
* bundles in (Hard Rule #16) rather than resolving for consumers. The
|
|
26
|
+
* values are the enum's.
|
|
27
|
+
*/
|
|
28
|
+
profile?: "Lite" | "Standard";
|
|
17
29
|
}
|
|
18
30
|
/**
|
|
19
31
|
* Inlined mirror of solution-sdk's `ProjectSolutionRegistration`, kept local so the
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { IFileSystem } from "@uipath/filesystem";
|
|
2
2
|
import { type EntryPoint, type PackagingBinding, type PackagingNode, type PackagingNodeManifest, type PackagingWorkflowVariables } from "@uipath/flow-schema";
|
|
3
|
-
import { isInlineAgentNodeType, readInlineAgentSource } from "@uipath/packager-tool-flow";
|
|
3
|
+
import { isInlineAgentNodeType, RuntimeProfile, readInlineAgentSource } from "@uipath/packager-tool-flow";
|
|
4
4
|
export interface FlowFileNode {
|
|
5
5
|
id: string;
|
|
6
6
|
type: string;
|
|
@@ -44,6 +44,14 @@ export interface PackagingArtifactOptions {
|
|
|
44
44
|
additionalEntryPoints?: EntryPoint[];
|
|
45
45
|
additionalBindingsJsons?: Array<PackagingBindingsJson | undefined>;
|
|
46
46
|
packageDescriptorJson?: Record<string, unknown>;
|
|
47
|
+
/**
|
|
48
|
+
* Resolved by the caller from the directory that actually holds the
|
|
49
|
+
* sentinel — the source project, or the staging copy when staging copied
|
|
50
|
+
* it in. Defaults to `Standard`, what a plain Flow packs as, which is also
|
|
51
|
+
* what the `.bpmn`-only debug path gets: it synthesizes a project and has
|
|
52
|
+
* no directory to resolve from.
|
|
53
|
+
*/
|
|
54
|
+
profile?: RuntimeProfile;
|
|
47
55
|
}
|
|
48
56
|
export declare function normalizePackagingBindingsJson(value: unknown): PackagingBindingsJson | undefined;
|
|
49
57
|
export declare function emptyPackagingBindingsJson(): PackagingBindingsJson;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
UI_ONLY_NODE_TYPES,
|
|
3
3
|
tidyFlow
|
|
4
|
-
} from "./packager-tool-
|
|
4
|
+
} from "./packager-tool-cbvcyr3t.js";
|
|
5
5
|
import"./packager-tool-nq4rcqqg.js";
|
|
6
|
-
import"./packager-tool-
|
|
7
|
-
import"./packager-tool-
|
|
6
|
+
import"./packager-tool-rfkx60be.js";
|
|
7
|
+
import"./packager-tool-af8bw5wd.js";
|
|
8
8
|
import"./packager-tool-tn5e7wnb.js";
|
|
9
|
-
import"./packager-tool-
|
|
9
|
+
import"./packager-tool-3bra2c4j.js";
|
|
10
|
+
import"./packager-tool-2513jrxr.js";
|
|
11
|
+
import"./packager-tool-0d7tcvg1.js";
|
|
10
12
|
import"./packager-tool-nkrmjr3a.js";
|
|
11
13
|
import"./packager-tool-rs6jm14d.js";
|
|
12
14
|
import"./packager-tool-hk1gxnth.js";
|
|
@@ -31,4 +33,4 @@ export {
|
|
|
31
33
|
tidyFlow
|
|
32
34
|
};
|
|
33
35
|
|
|
34
|
-
//# debugId=
|
|
36
|
+
//# debugId=DCB69189139A04EC64756E2164756E21
|
package/dist/tool.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
metadata,
|
|
3
3
|
registerCommands
|
|
4
|
-
} from "./packager-tool-
|
|
4
|
+
} from "./packager-tool-p7c203yf.js";
|
|
5
5
|
import"./packager-tool-tf3d2y8z.js";
|
|
6
|
-
import"./packager-tool-
|
|
6
|
+
import"./packager-tool-pb1g4qnb.js";
|
|
7
7
|
import"./packager-tool-27avrkyk.js";
|
|
8
8
|
import"./packager-tool-a1hbfmws.js";
|
|
9
9
|
import"./packager-tool-gaa5ss24.js";
|
package/dist/validation.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
FlowValidateService,
|
|
3
3
|
connectorNodeValidator
|
|
4
|
-
} from "./packager-tool-
|
|
5
|
-
import"./packager-tool-
|
|
6
|
-
import"./packager-tool-
|
|
4
|
+
} from "./packager-tool-5wmnpaf0.js";
|
|
5
|
+
import"./packager-tool-cbvcyr3t.js";
|
|
6
|
+
import"./packager-tool-0g00g1a5.js";
|
|
7
7
|
import"./packager-tool-2wefykg9.js";
|
|
8
8
|
import"./packager-tool-nq4rcqqg.js";
|
|
9
9
|
import"./packager-tool-8j92afwp.js";
|
|
10
|
-
import"./packager-tool-
|
|
11
|
-
import"./packager-tool-
|
|
10
|
+
import"./packager-tool-vzj3dha7.js";
|
|
11
|
+
import"./packager-tool-yw0zcs7r.js";
|
|
12
12
|
import"./packager-tool-p96yqdnk.js";
|
|
13
13
|
import"./packager-tool-w0kr4mbc.js";
|
|
14
14
|
import"./packager-tool-a1hbfmws.js";
|
|
@@ -26,10 +26,12 @@ import"./packager-tool-yc4kw997.js";
|
|
|
26
26
|
import"./packager-tool-7exrv6w7.js";
|
|
27
27
|
import"./packager-tool-7gx51wnq.js";
|
|
28
28
|
import"./packager-tool-cphdcys0.js";
|
|
29
|
-
import"./packager-tool-
|
|
30
|
-
import"./packager-tool-
|
|
29
|
+
import"./packager-tool-rfkx60be.js";
|
|
30
|
+
import"./packager-tool-af8bw5wd.js";
|
|
31
31
|
import"./packager-tool-tn5e7wnb.js";
|
|
32
|
-
import"./packager-tool-
|
|
32
|
+
import"./packager-tool-3bra2c4j.js";
|
|
33
|
+
import"./packager-tool-2513jrxr.js";
|
|
34
|
+
import"./packager-tool-0d7tcvg1.js";
|
|
33
35
|
import"./packager-tool-nkrmjr3a.js";
|
|
34
36
|
import"./packager-tool-rs6jm14d.js";
|
|
35
37
|
import"./packager-tool-hk1gxnth.js";
|
|
@@ -56,4 +58,4 @@ export {
|
|
|
56
58
|
connectorNodeValidator
|
|
57
59
|
};
|
|
58
60
|
|
|
59
|
-
//# debugId=
|
|
61
|
+
//# debugId=FDA6A1FFA0831E0864756E2164756E21
|