@uipath/packager-tool-flow 1.202.1-preview.152 → 1.202.1-preview.153

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.
Files changed (2) hide show
  1. package/dist/index.js +12 -9
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -32,7 +32,7 @@ import {
32
32
  // package.json
33
33
  var package_default = {
34
34
  name: "@uipath/packager-tool-flow",
35
- version: "1.202.1-preview.152",
35
+ version: "1.202.1-preview.153",
36
36
  description: "UiPath Flow tool implementation",
37
37
  type: "module",
38
38
  exports: {
@@ -72,18 +72,18 @@ var package_default = {
72
72
  license: "SEE LICENSE IN LICENSE.txt",
73
73
  peerDependencies: {
74
74
  "@uipath/filesystem": "workspace:*",
75
- "@uipath/flow-converter": "0.55.0-develop",
76
- "@uipath/flow-core": "0.96.0-develop",
77
- "@uipath/flow-migrations": "0.45.0-develop",
78
- "@uipath/flow-schema": "0.57.4-develop",
75
+ "@uipath/flow-converter": "0.69.3",
76
+ "@uipath/flow-core": "0.112.0",
77
+ "@uipath/flow-migrations": "0.56.2",
78
+ "@uipath/flow-schema": "0.68.0",
79
79
  "@uipath/solutionpackager-tool-core": "workspace:*",
80
80
  "@uipath/tool-agent": "^2.0.0"
81
81
  },
82
82
  devDependencies: {
83
83
  "@types/node": "^25.5.2",
84
84
  "@uipath/filesystem": "workspace:*",
85
- "@uipath/flow-converter": "0.55.0-develop",
86
- "@uipath/flow-core": "0.96.0-develop",
85
+ "@uipath/flow-converter": "0.69.3",
86
+ "@uipath/flow-core": "0.112.0",
87
87
  "@uipath/solutionpackager-tool-core": "workspace:*",
88
88
  "@uipath/tool-agent": "^2.0.0",
89
89
  "@vitest/browser": "^4.1.11",
@@ -207,6 +207,9 @@ function isProcessNode(nodeType) {
207
207
  function isConnectorToolNode(nodeType) {
208
208
  return nodeType?.startsWith(CONNECTOR_TOOL_PREFIX) ?? false;
209
209
  }
210
+ function isNodeDefinition(d) {
211
+ return typeof d.nodeType === "string";
212
+ }
210
213
  function extractProcessGuid(nodeType) {
211
214
  const match = nodeType.match(/^(?:uipath\.core\.rpa-workflow|uipath\.agent\.resource\.tool\.process|uipath\.core\.agent|uipath\.core\.api-workflow)\.([0-9a-f-]+)$/i);
212
215
  if (!match) {
@@ -299,7 +302,7 @@ function resolveConnectorContextPlaceholders(context, storedConnection, storedFo
299
302
  }
300
303
  function ensureProcessBindings(workflow, logger) {
301
304
  const nodes = workflow.nodes ?? [];
302
- const definitions = workflow.definitions ?? [];
305
+ const definitions = (workflow.definitions ?? []).filter(isNodeDefinition);
303
306
  let bindingsCreated = 0;
304
307
  for (const node of nodes) {
305
308
  const nodeModel = node.model;
@@ -1052,4 +1055,4 @@ export {
1052
1055
  withRuntimeProfile
1053
1056
  };
1054
1057
 
1055
- //# debugId=531E89E0ED0FC2E364756E2164756E21
1058
+ //# debugId=3A37FB793E891BD364756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/packager-tool-flow",
3
- "version": "1.202.1-preview.152",
3
+ "version": "1.202.1-preview.153",
4
4
  "description": "UiPath Flow tool implementation",
5
5
  "type": "module",
6
6
  "exports": {
@@ -23,12 +23,12 @@
23
23
  "license": "SEE LICENSE IN LICENSE.txt",
24
24
  "peerDependencies": {
25
25
  "@uipath/filesystem": "1.202.0",
26
- "@uipath/flow-converter": "0.55.0-develop",
27
- "@uipath/flow-core": "0.96.0-develop",
28
- "@uipath/flow-migrations": "0.45.0-develop",
29
- "@uipath/flow-schema": "0.57.4-develop",
26
+ "@uipath/flow-converter": "0.69.3",
27
+ "@uipath/flow-core": "0.112.0",
28
+ "@uipath/flow-migrations": "0.56.2",
29
+ "@uipath/flow-schema": "0.68.0",
30
30
  "@uipath/solutionpackager-tool-core": "1.202.0",
31
31
  "@uipath/tool-agent": "^2.0.0"
32
32
  },
33
- "gitHead": "33545fee8460014aa77f1bb0f1678885c65a8632"
33
+ "gitHead": "b575ce2fc328dd969282339df6db4d5413b50bf4"
34
34
  }