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
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
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,
|