@uipath/api-workflow-tool 1.201.0-preview.132 → 1.202.0-preview.134
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/executor-tool.js +4 -8
- package/dist/{index-9f8q2ege.js → index-gpd94m28.js} +27 -27
- package/dist/{packager-tool-21day5ep.js → index-paecpwre.js} +8675 -7201
- package/dist/{index-hsadteg4.js → index-sby22td6.js} +4 -4
- package/dist/index.js +6 -10
- package/dist/{js-yaml-y3qtemk5.js → js-yaml-gx54jnbd.js} +16 -16
- package/dist/{node-7d0ggccm.js → node-t33nhc1w.js} +7933 -7134
- package/dist/{packager-tool-wckvcay0.js → packager-tool-1de529jm.js} +10 -21
- package/dist/{packager-tool-8p759ssv.js → packager-tool-829gd8ec.js} +225 -151
- package/dist/{packager-tool-bprnbg91.js → packager-tool-9kaazy87.js} +17035 -3352
- package/dist/{packager-tool-1v8fmky0.js → packager-tool-etwnccc1.js} +4 -3
- package/dist/{packager-tool-h1tyrbff.js → packager-tool-gbz5mg04.js} +4 -2
- package/dist/packager-tool.js +3 -3
- package/dist/tool.js +8 -12
- package/package.json +2 -2
- package/dist/browser-e85cx3kr.js +0 -1795
- package/dist/browser-strategy-rkcvc6tn.js +0 -99
- package/dist/index-94hvfezt.js +0 -722
- package/dist/index-hb9evmrt.js +0 -39935
- package/dist/index.umd.min-drpc57vn.js +0 -7814
- package/dist/node-strategy-nrq2egrd.js +0 -348
- package/dist/packager-tool-4pvh3k50.js +0 -265
- package/dist/packager-tool-5arsyj36.js +0 -11
- package/dist/packager-tool-9qecd4wb.js +0 -14
- package/dist/packager-tool-y7hv8v54.js +0 -8944
package/dist/executor-tool.js
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
WorkflowRunService
|
|
3
|
-
} from "./packager-tool-
|
|
4
|
-
import"./packager-tool-
|
|
5
|
-
import"./packager-tool-y7hv8v54.js";
|
|
6
|
-
import"./packager-tool-9qecd4wb.js";
|
|
7
|
-
import"./packager-tool-5arsyj36.js";
|
|
8
|
-
import"./packager-tool-wckvcay0.js";
|
|
3
|
+
} from "./packager-tool-9kaazy87.js";
|
|
4
|
+
import"./packager-tool-1de529jm.js";
|
|
9
5
|
// ../executor/project-executor/src/models/run-status.ts
|
|
10
6
|
var TERMINAL_RUN_STATUSES = [
|
|
11
7
|
"Succeeded" /* Succeeded */,
|
|
@@ -73,7 +69,7 @@ class ExecutorsFactoryRepository {
|
|
|
73
69
|
getProjectExecutorFactory(projectType) {
|
|
74
70
|
const factory = this.factoryMap.get(projectType);
|
|
75
71
|
if (!factory) {
|
|
76
|
-
throw new Error(`
|
|
72
|
+
throw new Error(`Cannot run project type '${projectType}': no runner is installed for it. ` + `Project types that can be run: ${this.registeredTypes.join(", ") || "none"}.`);
|
|
77
73
|
}
|
|
78
74
|
return factory;
|
|
79
75
|
}
|
|
@@ -253,4 +249,4 @@ export {
|
|
|
253
249
|
createExecutorFactory
|
|
254
250
|
};
|
|
255
251
|
|
|
256
|
-
//# debugId=
|
|
252
|
+
//# debugId=A385C9732A2FFA4A64756E2164756E21
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import"./packager-tool-
|
|
1
|
+
import"./packager-tool-1de529jm.js";
|
|
2
2
|
|
|
3
3
|
// ../../node_modules/@jmespath-community/jmespath/dist/index.mjs
|
|
4
4
|
var isObject = (obj) => {
|
|
@@ -2027,32 +2027,32 @@ var jmespath = {
|
|
|
2027
2027
|
TYPE_STRING
|
|
2028
2028
|
};
|
|
2029
2029
|
export {
|
|
2030
|
-
|
|
2031
|
-
tokenize,
|
|
2032
|
-
search,
|
|
2033
|
-
registerFunction,
|
|
2034
|
-
register,
|
|
2035
|
-
jmespath,
|
|
2036
|
-
isRegistered,
|
|
2037
|
-
getRegisteredFunctions,
|
|
2038
|
-
getCustomFunctions,
|
|
2039
|
-
jmespath as default,
|
|
2040
|
-
compile,
|
|
2041
|
-
clearCustomFunctions,
|
|
2042
|
-
TreeInterpreter2 as TreeInterpreter,
|
|
2043
|
-
TYPE_STRING,
|
|
2044
|
-
TYPE_OBJECT,
|
|
2045
|
-
TYPE_NUMBER,
|
|
2046
|
-
TYPE_NULL,
|
|
2047
|
-
TYPE_EXPREF,
|
|
2048
|
-
TYPE_BOOLEAN,
|
|
2049
|
-
TYPE_ARRAY_STRING,
|
|
2050
|
-
TYPE_ARRAY_OBJECT,
|
|
2051
|
-
TYPE_ARRAY_NUMBER,
|
|
2052
|
-
TYPE_ARRAY_ARRAY,
|
|
2053
|
-
TYPE_ARRAY,
|
|
2030
|
+
Scope,
|
|
2054
2031
|
TYPE_ANY,
|
|
2055
|
-
|
|
2032
|
+
TYPE_ARRAY,
|
|
2033
|
+
TYPE_ARRAY_ARRAY,
|
|
2034
|
+
TYPE_ARRAY_NUMBER,
|
|
2035
|
+
TYPE_ARRAY_OBJECT,
|
|
2036
|
+
TYPE_ARRAY_STRING,
|
|
2037
|
+
TYPE_BOOLEAN,
|
|
2038
|
+
TYPE_EXPREF,
|
|
2039
|
+
TYPE_NULL,
|
|
2040
|
+
TYPE_NUMBER,
|
|
2041
|
+
TYPE_OBJECT,
|
|
2042
|
+
TYPE_STRING,
|
|
2043
|
+
TreeInterpreter2 as TreeInterpreter,
|
|
2044
|
+
clearCustomFunctions,
|
|
2045
|
+
compile,
|
|
2046
|
+
jmespath as default,
|
|
2047
|
+
getCustomFunctions,
|
|
2048
|
+
getRegisteredFunctions,
|
|
2049
|
+
isRegistered,
|
|
2050
|
+
jmespath,
|
|
2051
|
+
register,
|
|
2052
|
+
registerFunction,
|
|
2053
|
+
search,
|
|
2054
|
+
tokenize,
|
|
2055
|
+
unregisterFunction
|
|
2056
2056
|
};
|
|
2057
2057
|
|
|
2058
|
-
//# debugId=
|
|
2058
|
+
//# debugId=046020B702C7051664756E2164756E21
|