@beastmode-develeap/beastmode 0.1.292 → 0.1.294
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/index.js +17 -0
- package/dist/index.js.map +1 -1
- package/dist/web/board.html +53 -9
- package/dist/web/build-commit.txt +1 -1
- package/dist/web/build-stamp.txt +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7200,6 +7200,23 @@ Path: ${projectPath}
|
|
|
7200
7200
|
nextCursor
|
|
7201
7201
|
};
|
|
7202
7202
|
}
|
|
7203
|
+
},
|
|
7204
|
+
// ── Cost Forecasting (pre-task cost prediction via k-NN) ──
|
|
7205
|
+
{
|
|
7206
|
+
method: "GET",
|
|
7207
|
+
pattern: "/api/costs/forecast/:item_id",
|
|
7208
|
+
handler: async (_body, params, query) => {
|
|
7209
|
+
const boardUrl = getBoardUrl2(factoryDir);
|
|
7210
|
+
return proxyToBoard(boardUrl, "GET", `/api/costs/forecast/${params.item_id}`, void 0, scopedQuery(query));
|
|
7211
|
+
}
|
|
7212
|
+
},
|
|
7213
|
+
{
|
|
7214
|
+
method: "GET",
|
|
7215
|
+
pattern: "/api/costs/forecasts",
|
|
7216
|
+
handler: async (_body, _params, query) => {
|
|
7217
|
+
const boardUrl = getBoardUrl2(factoryDir);
|
|
7218
|
+
return proxyToBoard(boardUrl, "GET", "/api/costs/forecasts", void 0, scopedQuery(query));
|
|
7219
|
+
}
|
|
7203
7220
|
}
|
|
7204
7221
|
];
|
|
7205
7222
|
}
|