@workglow/task-graph 0.0.105 → 0.0.107
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/browser.js +7 -3
- package/dist/browser.js.map +7 -7
- package/dist/bun.js +7 -3
- package/dist/bun.js.map +7 -7
- package/dist/node.js +7 -3
- package/dist/node.js.map +7 -7
- package/dist/task/InputResolver.d.ts.map +1 -1
- package/dist/task/StreamTypes.d.ts +3 -3
- package/dist/task/StreamTypes.d.ts.map +1 -1
- package/dist/task-graph/GraphSchemaUtils.d.ts.map +1 -1
- package/dist/task-graph/TaskGraph.d.ts.map +1 -1
- package/package.json +7 -7
package/dist/bun.js
CHANGED
|
@@ -427,7 +427,11 @@ function stripOriginAnnotations(schema) {
|
|
|
427
427
|
strippedProperties[key] = prop;
|
|
428
428
|
continue;
|
|
429
429
|
}
|
|
430
|
-
const {
|
|
430
|
+
const {
|
|
431
|
+
"x-source-task-id": _id,
|
|
432
|
+
"x-source-task-ids": _ids,
|
|
433
|
+
...rest
|
|
434
|
+
} = prop;
|
|
431
435
|
strippedProperties[key] = rest;
|
|
432
436
|
}
|
|
433
437
|
return { ...schema, properties: strippedProperties };
|
|
@@ -898,7 +902,7 @@ function getOutputStreamMode(outputSchema) {
|
|
|
898
902
|
const mode = ports[0].mode;
|
|
899
903
|
for (let i = 1;i < ports.length; i++) {
|
|
900
904
|
if (ports[i].mode !== mode) {
|
|
901
|
-
|
|
905
|
+
return "mixed";
|
|
902
906
|
}
|
|
903
907
|
}
|
|
904
908
|
return mode;
|
|
@@ -6206,4 +6210,4 @@ export {
|
|
|
6206
6210
|
ConditionalTask
|
|
6207
6211
|
};
|
|
6208
6212
|
|
|
6209
|
-
//# debugId=
|
|
6213
|
+
//# debugId=D8AFA9046FA8621E64756E2164756E21
|