@workglow/task-graph 0.2.1 → 0.2.3
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 +3 -7
- package/dist/browser.js.map +4 -4
- package/dist/bun.js +3 -7
- package/dist/bun.js.map +4 -4
- package/dist/node.js +3 -7
- package/dist/node.js.map +4 -4
- package/dist/task/EntitlementProfiles.d.ts +7 -0
- package/dist/task/EntitlementProfiles.d.ts.map +1 -1
- package/dist/task-graph/TaskGraphRunner.d.ts.map +1 -1
- package/package.json +7 -7
package/dist/bun.js
CHANGED
|
@@ -2838,11 +2838,6 @@ class TaskGraphRunner {
|
|
|
2838
2838
|
const dataflows = this.graph.getTargetDataflows(node.id);
|
|
2839
2839
|
for (const dataflow of dataflows) {
|
|
2840
2840
|
const compatibility = dataflow.semanticallyCompatible(this.graph, dataflow);
|
|
2841
|
-
getLogger3().debug("pushOutputFromNodeToEdges", {
|
|
2842
|
-
dataflowId: dataflow.id,
|
|
2843
|
-
compatibility,
|
|
2844
|
-
resultsKeys: Object.keys(results)
|
|
2845
|
-
});
|
|
2846
2841
|
if (compatibility === "static") {
|
|
2847
2842
|
dataflow.setPortData(results);
|
|
2848
2843
|
} else if (compatibility === "runtime") {
|
|
@@ -5175,7 +5170,8 @@ function resetMethodNameCache() {
|
|
|
5175
5170
|
}
|
|
5176
5171
|
// src/task/EntitlementProfiles.ts
|
|
5177
5172
|
var BROWSER_GRANTS = [
|
|
5178
|
-
{ id: Entitlements.
|
|
5173
|
+
{ id: Entitlements.NETWORK_HTTP },
|
|
5174
|
+
{ id: Entitlements.NETWORK_WEBSOCKET },
|
|
5179
5175
|
{ id: Entitlements.AI },
|
|
5180
5176
|
{ id: Entitlements.MCP_TOOL_CALL },
|
|
5181
5177
|
{ id: Entitlements.MCP_RESOURCE_READ },
|
|
@@ -7490,4 +7486,4 @@ export {
|
|
|
7490
7486
|
BROWSER_GRANTS
|
|
7491
7487
|
};
|
|
7492
7488
|
|
|
7493
|
-
//# debugId=
|
|
7489
|
+
//# debugId=B00A442908C4C0D664756E2164756E21
|