@codemation/core 0.5.0 → 0.7.0
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/CHANGELOG.md +42 -0
- package/dist/{EngineRuntimeRegistration.types-BtTZolK0.d.ts → EngineRuntimeRegistration.types-_M7KFD3D.d.ts} +2 -2
- package/dist/{EngineWorkflowRunnerService-Ddl0fekp.d.cts → EngineWorkflowRunnerService-D0Cwngv7.d.cts} +2 -2
- package/dist/{InMemoryRunDataFactory-i-u2yngD.d.cts → InMemoryRunDataFactory-BIWx6e02.d.cts} +15 -6
- package/dist/{RunIntentService-Cjx-glgz.d.cts → RunIntentService-5k0p-J67.d.cts} +31 -12
- package/dist/{RunIntentService-Dkr4YwN8.d.ts → RunIntentService-CuXAIO6_.d.ts} +52 -28
- package/dist/bootstrap/index.cjs +2 -2
- package/dist/bootstrap/index.d.cts +6 -6
- package/dist/bootstrap/index.d.ts +3 -3
- package/dist/bootstrap/index.js +2 -2
- package/dist/{bootstrap-DbUlOl11.js → bootstrap-BhYxSivA.js} +5 -4
- package/dist/bootstrap-BhYxSivA.js.map +1 -0
- package/dist/{bootstrap-DHH2uo-W.cjs → bootstrap-D-TDU9Lu.cjs} +5 -4
- package/dist/bootstrap-D-TDU9Lu.cjs.map +1 -0
- package/dist/{index-B2v4wtys.d.ts → index-BnJ7_IrO.d.ts} +92 -13
- package/dist/index.cjs +94 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +98 -23
- package/dist/index.d.ts +3 -3
- package/dist/index.js +84 -6
- package/dist/index.js.map +1 -1
- package/dist/{runtime-feFn8OmG.cjs → runtime-3YVDd2vY.cjs} +81 -73
- package/dist/runtime-3YVDd2vY.cjs.map +1 -0
- package/dist/{runtime-BdH94eBR.js → runtime-CJnObwsU.js} +66 -64
- package/dist/runtime-CJnObwsU.js.map +1 -0
- package/dist/testing.cjs +2 -2
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +2 -2
- package/dist/testing.d.ts +2 -2
- package/dist/testing.js +2 -2
- package/dist/testing.js.map +1 -1
- package/package.json +1 -1
- package/src/ai/AgentConfigInspectorFactory.ts +2 -2
- package/src/ai/AgentMessageConfigNormalizerFactory.ts +3 -3
- package/src/ai/AiHost.ts +22 -2
- package/src/ai/CallableToolConfig.ts +84 -0
- package/src/ai/CallableToolFactory.ts +13 -0
- package/src/ai/CallableToolKindToken.ts +5 -0
- package/src/authoring/callableTool.types.ts +12 -0
- package/src/authoring/defineNode.types.ts +38 -9
- package/src/authoring/index.ts +2 -0
- package/src/bootstrap/runtime/EngineRuntimeRegistrar.ts +12 -4
- package/src/contracts/credentialTypes.ts +20 -0
- package/src/contracts/index.ts +2 -1
- package/src/contracts/{itemValue.ts → itemExpr.ts} +31 -32
- package/src/contracts/params.ts +10 -0
- package/src/contracts/runtimeTypes.ts +4 -2
- package/src/contracts/workflowTypes.ts +11 -9
- package/src/execution/{ItemValueResolver.ts → ItemExprResolver.ts} +5 -5
- package/src/execution/NodeExecutor.ts +13 -31
- package/src/execution/NodeExecutorFactory.ts +7 -2
- package/src/execution/NodeOutputNormalizer.ts +22 -23
- package/src/execution/RunnableOutputBehaviorResolver.ts +23 -0
- package/src/execution/index.ts +2 -1
- package/src/index.ts +2 -1
- package/src/runStorage/InMemoryRunData.ts +9 -5
- package/src/testing/SwitchHarnessNode.ts +0 -1
- package/src/types/index.ts +2 -1
- package/src/workflowSnapshots/WorkflowSnapshotCodec.ts +1 -1
- package/dist/bootstrap-DHH2uo-W.cjs.map +0 -1
- package/dist/bootstrap-DbUlOl11.js.map +0 -1
- package/dist/runtime-BdH94eBR.js.map +0 -1
- package/dist/runtime-feFn8OmG.cjs.map +0 -1
|
@@ -138,43 +138,43 @@ function chatModel(options = {}) {
|
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
//#endregion
|
|
141
|
-
//#region src/contracts/
|
|
142
|
-
const
|
|
143
|
-
function
|
|
141
|
+
//#region src/contracts/itemExpr.ts
|
|
142
|
+
const ITEM_EXPR_BRAND = Symbol.for("codemation.itemExpr");
|
|
143
|
+
function itemExpr(fn) {
|
|
144
144
|
return {
|
|
145
|
-
[
|
|
145
|
+
[ITEM_EXPR_BRAND]: true,
|
|
146
146
|
fn
|
|
147
147
|
};
|
|
148
148
|
}
|
|
149
|
-
function
|
|
149
|
+
function isItemExpr(value) {
|
|
150
150
|
if (typeof value !== "object" || value === null) return false;
|
|
151
151
|
const v = value;
|
|
152
|
-
if (v[
|
|
152
|
+
if (v[ITEM_EXPR_BRAND] === true) return true;
|
|
153
153
|
const keys = Object.keys(v);
|
|
154
154
|
if (keys.length === 1 && keys[0] === "fn" && typeof v.fn === "function") return true;
|
|
155
|
-
for (const sym of Object.getOwnPropertySymbols(v)) if (sym.description === "codemation.
|
|
155
|
+
for (const sym of Object.getOwnPropertySymbols(v)) if (sym.description === "codemation.itemExpr" && v[sym] === true) return true;
|
|
156
156
|
return false;
|
|
157
157
|
}
|
|
158
|
-
function
|
|
159
|
-
if (
|
|
158
|
+
function containsItemExprInUnknown(value, seen = /* @__PURE__ */ new WeakSet()) {
|
|
159
|
+
if (isItemExpr(value)) return true;
|
|
160
160
|
if (value === null || typeof value !== "object") return false;
|
|
161
161
|
if (seen.has(value)) return false;
|
|
162
162
|
seen.add(value);
|
|
163
|
-
if (Array.isArray(value)) return value.some((entry) =>
|
|
164
|
-
for (const entry of Object.values(value)) if (
|
|
163
|
+
if (Array.isArray(value)) return value.some((entry) => containsItemExprInUnknown(entry, seen));
|
|
164
|
+
for (const entry of Object.values(value)) if (containsItemExprInUnknown(entry, seen)) return true;
|
|
165
165
|
return false;
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
|
-
* Deep-resolves {@link
|
|
168
|
+
* Deep-resolves {@link itemExpr} leaves. Returns a new graph (does not mutate the original config object).
|
|
169
169
|
*/
|
|
170
|
-
async function
|
|
171
|
-
if (
|
|
170
|
+
async function resolveItemExprsInUnknown(value, args, seen = /* @__PURE__ */ new WeakSet()) {
|
|
171
|
+
if (isItemExpr(value)) return await Promise.resolve(value.fn(args));
|
|
172
172
|
if (value === null || typeof value !== "object") return value;
|
|
173
173
|
if (seen.has(value)) return value;
|
|
174
174
|
seen.add(value);
|
|
175
175
|
if (Array.isArray(value)) {
|
|
176
176
|
const out$1 = [];
|
|
177
|
-
for (let i = 0; i < value.length; i++) out$1.push(await
|
|
177
|
+
for (let i = 0; i < value.length; i++) out$1.push(await resolveItemExprsInUnknown(value[i], args, seen));
|
|
178
178
|
return out$1;
|
|
179
179
|
}
|
|
180
180
|
const rec = value;
|
|
@@ -182,14 +182,14 @@ async function resolveItemValuesInUnknown(value, args, seen = /* @__PURE__ */ ne
|
|
|
182
182
|
const proto = Object.getPrototypeOf(value);
|
|
183
183
|
if (proto !== Object.prototype && proto !== null && entries.length === 0) return value;
|
|
184
184
|
const out = Object.create(proto);
|
|
185
|
-
for (const [k, v] of entries) out[k] = await
|
|
185
|
+
for (const [k, v] of entries) out[k] = await resolveItemExprsInUnknown(v, args, seen);
|
|
186
186
|
return out;
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
|
-
* Clones runnable config (best-effort) so per-item {@link
|
|
189
|
+
* Clones runnable config (best-effort) so per-item {@link itemExpr} resolution never mutates shared instances.
|
|
190
190
|
*/
|
|
191
|
-
async function
|
|
192
|
-
const
|
|
191
|
+
async function resolveItemExprsForExecution(config, nodeCtx, item, itemIndex, items) {
|
|
192
|
+
const exprArgs = {
|
|
193
193
|
item,
|
|
194
194
|
itemIndex,
|
|
195
195
|
items,
|
|
@@ -201,8 +201,8 @@ async function resolveItemValuesForExecution(config, nodeCtx, item, itemIndex, i
|
|
|
201
201
|
data: nodeCtx.data
|
|
202
202
|
}
|
|
203
203
|
};
|
|
204
|
-
if (!
|
|
205
|
-
return await
|
|
204
|
+
if (!containsItemExprInUnknown(config)) return;
|
|
205
|
+
return await resolveItemExprsInUnknown(config, exprArgs);
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
//#endregion
|
|
@@ -914,14 +914,14 @@ var InProcessRetryRunner = class InProcessRetryRunner {
|
|
|
914
914
|
};
|
|
915
915
|
|
|
916
916
|
//#endregion
|
|
917
|
-
//#region src/execution/
|
|
917
|
+
//#region src/execution/ItemExprResolver.ts
|
|
918
918
|
/**
|
|
919
|
-
* Resolves {@link import("../contracts/
|
|
919
|
+
* Resolves {@link import("../contracts/itemExpr").ItemExpr} leaves on runnable config before {@link RunnableNode.execute}.
|
|
920
920
|
*/
|
|
921
|
-
var
|
|
921
|
+
var ItemExprResolver = class {
|
|
922
922
|
async resolveConfigForItem(ctx, item, itemIndex, items) {
|
|
923
|
-
if (!ctx) throw new Error("
|
|
924
|
-
const resolvedConfig = await
|
|
923
|
+
if (!ctx) throw new Error("ItemExprResolver.resolveConfigForItem: ctx is required");
|
|
924
|
+
const resolvedConfig = await resolveItemExprsForExecution(ctx.config, ctx, item, itemIndex, items);
|
|
925
925
|
const merged = resolvedConfig !== void 0 && resolvedConfig !== null ? resolvedConfig : ctx.config;
|
|
926
926
|
if (merged === void 0 || merged === null) return ctx;
|
|
927
927
|
return {
|
|
@@ -951,49 +951,56 @@ function isUnbrandedPortsEmissionShape(value) {
|
|
|
951
951
|
//#region src/execution/NodeOutputNormalizer.ts
|
|
952
952
|
var NodeOutputNormalizer = class {
|
|
953
953
|
normalizeExecuteResult(args) {
|
|
954
|
-
const { baseItem, raw,
|
|
955
|
-
if (isPortsEmission(raw)) return this.emitPortsToOutputs(baseItem, raw,
|
|
954
|
+
const { baseItem, raw, behavior } = args;
|
|
955
|
+
if (isPortsEmission(raw)) return this.emitPortsToOutputs(baseItem, raw, behavior);
|
|
956
956
|
if (isUnbrandedPortsEmissionShape(raw)) throw new Error("execute() returned an unbranded `{ ports: ... }` object. Use emitPorts(...) for multi-port runnable outputs.");
|
|
957
|
-
if (Array.isArray(raw)) return this.arrayFanOutToMain(baseItem, raw,
|
|
958
|
-
if (this.isItemLike(raw)) return { main: [this.
|
|
959
|
-
return { main: [this.
|
|
957
|
+
if (Array.isArray(raw)) return this.arrayFanOutToMain(baseItem, raw, behavior);
|
|
958
|
+
if (this.isItemLike(raw)) return { main: [this.applyOutput(baseItem, raw, behavior)] };
|
|
959
|
+
return { main: [this.applyOutput(baseItem, { json: raw }, behavior)] };
|
|
960
960
|
}
|
|
961
|
-
arrayFanOutToMain(baseItem, raw,
|
|
961
|
+
arrayFanOutToMain(baseItem, raw, behavior) {
|
|
962
962
|
for (const el of raw) if (Array.isArray(el)) throw new Error("execute() fan-out arrays must contain only non-array JSON elements (nested arrays belong inside objects).");
|
|
963
|
-
return { main: raw.map((json) => this.
|
|
963
|
+
return { main: raw.map((json) => this.applyOutput(baseItem, { json }, behavior)) };
|
|
964
964
|
}
|
|
965
|
-
emitPortsToOutputs(baseItem, emission,
|
|
965
|
+
emitPortsToOutputs(baseItem, emission, behavior) {
|
|
966
966
|
const out = {};
|
|
967
967
|
for (const [port, payload] of Object.entries(emission.ports)) {
|
|
968
968
|
if (payload === void 0) continue;
|
|
969
|
-
out[port] = this.normalizePortPayload(baseItem, payload,
|
|
969
|
+
out[port] = this.normalizePortPayload(baseItem, payload, behavior);
|
|
970
970
|
}
|
|
971
971
|
return out;
|
|
972
972
|
}
|
|
973
|
-
normalizePortPayload(baseItem, payload,
|
|
973
|
+
normalizePortPayload(baseItem, payload, behavior) {
|
|
974
974
|
if (payload.length === 0) return [];
|
|
975
975
|
const el0 = payload[0];
|
|
976
|
-
if (this.isItemLike(el0)) return payload.map((it) => this.
|
|
977
|
-
return payload.map((json) => this.
|
|
976
|
+
if (this.isItemLike(el0)) return payload.map((it) => this.applyOutput(baseItem, it, behavior));
|
|
977
|
+
return payload.map((json) => this.applyOutput(baseItem, { json }, behavior));
|
|
978
978
|
}
|
|
979
979
|
isItemLike(value) {
|
|
980
980
|
return typeof value === "object" && value !== null && "json" in value;
|
|
981
981
|
}
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
...baseItem,
|
|
985
|
-
...next,
|
|
986
|
-
json: next.json
|
|
987
|
-
};
|
|
982
|
+
applyOutput(baseItem, next, behavior) {
|
|
983
|
+
const explicitBinary = next.binary;
|
|
988
984
|
return {
|
|
989
985
|
json: next.json,
|
|
990
|
-
...
|
|
986
|
+
...explicitBinary !== void 0 ? { binary: explicitBinary } : behavior.keepBinaries && baseItem.binary ? { binary: baseItem.binary } : {},
|
|
991
987
|
...next.meta ? { meta: next.meta } : {},
|
|
992
988
|
...next.paired ? { paired: next.paired } : {}
|
|
993
989
|
};
|
|
994
990
|
}
|
|
995
991
|
};
|
|
996
992
|
|
|
993
|
+
//#endregion
|
|
994
|
+
//#region src/execution/RunnableOutputBehaviorResolver.ts
|
|
995
|
+
var RunnableOutputBehaviorResolver = class {
|
|
996
|
+
resolve(config) {
|
|
997
|
+
return { keepBinaries: this.isKeepBinariesEnabled(config) };
|
|
998
|
+
}
|
|
999
|
+
isKeepBinariesEnabled(config) {
|
|
1000
|
+
return config.keepBinaries === true;
|
|
1001
|
+
}
|
|
1002
|
+
};
|
|
1003
|
+
|
|
997
1004
|
//#endregion
|
|
998
1005
|
//#region src/execution/InProcessRetryRunnerFactory.ts
|
|
999
1006
|
var InProcessRetryRunnerFactory = class {
|
|
@@ -1097,11 +1104,13 @@ var NodeActivationRequestComposer = class {
|
|
|
1097
1104
|
var NodeExecutor = class {
|
|
1098
1105
|
fanInMerger = new FanInMergeByOriginMerger();
|
|
1099
1106
|
outputNormalizer = new NodeOutputNormalizer();
|
|
1100
|
-
|
|
1101
|
-
|
|
1107
|
+
itemExprResolver;
|
|
1108
|
+
outputBehaviorResolver;
|
|
1109
|
+
constructor(nodeInstanceFactory, retryRunner, itemExprResolver, outputBehaviorResolver) {
|
|
1102
1110
|
this.nodeInstanceFactory = nodeInstanceFactory;
|
|
1103
1111
|
this.retryRunner = retryRunner;
|
|
1104
|
-
this.
|
|
1112
|
+
this.itemExprResolver = itemExprResolver ?? new ItemExprResolver();
|
|
1113
|
+
this.outputBehaviorResolver = outputBehaviorResolver ?? new RunnableOutputBehaviorResolver();
|
|
1105
1114
|
}
|
|
1106
1115
|
async execute(request) {
|
|
1107
1116
|
const policy = request.ctx.config.retryPolicy;
|
|
@@ -1164,14 +1173,14 @@ var NodeExecutor = class {
|
|
|
1164
1173
|
}
|
|
1165
1174
|
async executeRunnableActivation(request, node$1) {
|
|
1166
1175
|
const runnableConfig = request.ctx.config;
|
|
1167
|
-
const
|
|
1176
|
+
const behavior = this.outputBehaviorResolver.resolve(runnableConfig);
|
|
1168
1177
|
const inputSchema = this.resolveInputSchema(node$1, runnableConfig);
|
|
1169
1178
|
const inputBatch = request.input ?? [];
|
|
1170
1179
|
if (inputBatch.length === 0 && runnableConfig.emptyBatchExecution === "runOnce") {
|
|
1171
1180
|
const syntheticItem = { json: {} };
|
|
1172
1181
|
const parsed = inputSchema.parse(syntheticItem.json);
|
|
1173
1182
|
const runnableCtx = request.ctx;
|
|
1174
|
-
const resolvedCtx = await this.
|
|
1183
|
+
const resolvedCtx = await this.itemExprResolver.resolveConfigForItem(runnableCtx, syntheticItem, 0, inputBatch);
|
|
1175
1184
|
const args = {
|
|
1176
1185
|
input: parsed,
|
|
1177
1186
|
item: syntheticItem,
|
|
@@ -1183,7 +1192,7 @@ var NodeExecutor = class {
|
|
|
1183
1192
|
return this.outputNormalizer.normalizeExecuteResult({
|
|
1184
1193
|
baseItem: syntheticItem,
|
|
1185
1194
|
raw,
|
|
1186
|
-
|
|
1195
|
+
behavior
|
|
1187
1196
|
});
|
|
1188
1197
|
}
|
|
1189
1198
|
const byPort = {};
|
|
@@ -1192,7 +1201,7 @@ var NodeExecutor = class {
|
|
|
1192
1201
|
this.assertItemJsonNotTopLevelArray(request.nodeId, item);
|
|
1193
1202
|
const parsed = inputSchema.parse(item.json);
|
|
1194
1203
|
const runnableCtx = request.ctx;
|
|
1195
|
-
const resolvedCtx = await this.
|
|
1204
|
+
const resolvedCtx = await this.itemExprResolver.resolveConfigForItem(runnableCtx, item, i, inputBatch);
|
|
1196
1205
|
const ctx = this.pickExecutionContext(runnableCtx, resolvedCtx);
|
|
1197
1206
|
const args = {
|
|
1198
1207
|
input: parsed,
|
|
@@ -1205,7 +1214,7 @@ var NodeExecutor = class {
|
|
|
1205
1214
|
const normalized = this.outputNormalizer.normalizeExecuteResult({
|
|
1206
1215
|
baseItem: item,
|
|
1207
1216
|
raw,
|
|
1208
|
-
|
|
1217
|
+
behavior
|
|
1209
1218
|
});
|
|
1210
1219
|
for (const [port, batch] of Object.entries(normalized)) {
|
|
1211
1220
|
if (!batch || batch.length === 0) continue;
|
|
@@ -1235,20 +1244,13 @@ var NodeExecutor = class {
|
|
|
1235
1244
|
if (isPortsEmission(value)) throw new Error(`Node ${nodeId}: ${methodName} must return NodeOutputs, not emitPorts(...).`);
|
|
1236
1245
|
if (isUnbrandedPortsEmissionShape(value)) throw new Error(`Node ${nodeId}: ${methodName} returned an unbranded \`{ ports: ... }\` object. Return NodeOutputs instead.`);
|
|
1237
1246
|
}
|
|
1238
|
-
resolveLineageCarry(node$1, config) {
|
|
1239
|
-
if (config.lineageCarry) return config.lineageCarry;
|
|
1240
|
-
const base = config;
|
|
1241
|
-
const declared = base.declaredOutputPorts;
|
|
1242
|
-
if ((declared && declared.length > 0 ? [...new Set([...declared, ...base.nodeErrorHandler ? ["error"] : []])] : base.nodeErrorHandler ? ["main", "error"] : ["main"]).length > 1) return "carryThrough";
|
|
1243
|
-
return "emitOnly";
|
|
1244
|
-
}
|
|
1245
1247
|
};
|
|
1246
1248
|
|
|
1247
1249
|
//#endregion
|
|
1248
1250
|
//#region src/execution/NodeExecutorFactory.ts
|
|
1249
1251
|
var NodeExecutorFactory = class {
|
|
1250
|
-
create(workflowNodeInstanceFactory, retryRunner) {
|
|
1251
|
-
return new NodeExecutor(workflowNodeInstanceFactory, retryRunner);
|
|
1252
|
+
create(workflowNodeInstanceFactory, retryRunner, outputBehaviorResolver) {
|
|
1253
|
+
return new NodeExecutor(workflowNodeInstanceFactory, retryRunner, void 0, outputBehaviorResolver);
|
|
1252
1254
|
}
|
|
1253
1255
|
};
|
|
1254
1256
|
|
|
@@ -4878,5 +4880,5 @@ var WorkflowRepositoryWebhookTriggerMatcherFactory = class {
|
|
|
4878
4880
|
};
|
|
4879
4881
|
|
|
4880
4882
|
//#endregion
|
|
4881
|
-
export {
|
|
4882
|
-
//# sourceMappingURL=runtime-
|
|
4883
|
+
export { chatModel as $, NodeExecutor as A, DefaultAsyncSleeper as B, RunPolicySnapshotFactory as C, PersistedWorkflowTokenRegistry as D, WorkflowSnapshotCodec as E, isPortsEmission as F, NodeEventPublisher as G, getOriginIndexFromItem as H, isUnbrandedPortsEmissionShape as I, ConnectionNodeIdFactory as J, WorkflowExecutableNodeClassifierFactory as K, ItemExprResolver as L, RunnableOutputBehaviorResolver as M, NodeOutputNormalizer as N, MissingRuntimeTriggerToken as O, emitPorts as P, resolveItemExprsInUnknown as Q, InProcessRetryRunner as R, ConfigDrivenOffloadPolicy as S, NodeInstanceFactory as T, DefaultExecutionBinaryService as U, CredentialResolverFactory as V, UnavailableBinaryStorage as W, itemExpr as X, isItemExpr as Y, resolveItemExprsForExecution as Z, EngineExecutionLimitsPolicy as _, CoreTokens as _t, InMemoryLiveWorkflowRepository as a, StackTraceCallSitePathResolver as at, HintOnlyOffloadPolicy as b, EngineFactory as c, delay as ct, InMemoryRunDataFactory as d, injectable as dt, getPersistedRuntimeTypeMetadata as et, InMemoryBinaryStorage as f, instanceCachingFactory as ft, ENGINE_EXECUTION_LIMITS_DEFAULTS as g, singleton as gt, RunTerminalPersistenceCoordinator as h, registry as ht, RunIntentService as i, PersistedRuntimeTypeMetadataStore as it, InProcessRetryRunnerFactory as j, NodeExecutorFactory as k, Engine as l, inject as lt, WorkflowPolicyErrorServices as m, predicateAwareClassFactory as mt, WorkflowRepositoryWebhookTriggerMatcher as n, tool as nt, EngineWorkflowRunnerServiceFactory as o, PersistedRuntimeTypeNameResolver as ot, WorkflowStoragePolicyEvaluator as p, instancePerContainerCachingFactory as pt, WorkflowExecutableNodeClassifier as q, RunIntentServiceFactory as r, InjectableRuntimeDecoratorComposer as rt, EngineWorkflowRunnerService as s, container$1 as st, WorkflowRepositoryWebhookTriggerMatcherFactory as t, node as tt, RunFinishedAtFactory as u, injectAll as ut, LocalOnlyScheduler as v, NodeInstanceFactoryFactory as w, DefaultDrivingScheduler as x, InlineDrivingScheduler as y, DefaultExecutionContextFactory as z };
|
|
4884
|
+
//# sourceMappingURL=runtime-CJnObwsU.js.map
|