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