edsger 0.63.0 → 0.63.1

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.
@@ -11,9 +11,10 @@ import { callMcpEndpoint } from '../../api/mcp-client.js';
11
11
  export async function buildProductChatContext(productId, channelId, verbose) {
12
12
  // Fetch product, issues, and team members in parallel
13
13
  const [productResult, issuesResult, membersResult, recentMessages] = await Promise.all([
14
- callMcpEndpoint('products/list', {
15
- product_id: productId,
16
- } // eslint-disable-next-line @typescript-eslint/no-explicit-any
14
+ // products/list takes no params; the matching product is selected
15
+ // from the returned list below via products.find(p => p.id === productId).
16
+ callMcpEndpoint('products/list', {}
17
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
17
18
  ),
18
19
  callMcpEndpoint('issues/list', {
19
20
  product_id: productId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edsger",
3
- "version": "0.63.0",
3
+ "version": "0.63.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "edsger": "dist/index.js"