@vailent/pulse-mcp 1.3.0 → 1.4.0
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/server.js +5 -3
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -40695,7 +40695,8 @@ async function handleFeatures(params) {
|
|
|
40695
40695
|
sortOrder: "sort_order",
|
|
40696
40696
|
prdText: "prd_text",
|
|
40697
40697
|
prdFileUrl: "prd_file_url",
|
|
40698
|
-
prdFileName: "prd_file_name"
|
|
40698
|
+
prdFileName: "prd_file_name",
|
|
40699
|
+
prdSummary: "prd_summary"
|
|
40699
40700
|
};
|
|
40700
40701
|
const updates = { updated_at: (/* @__PURE__ */ new Date()).toISOString() };
|
|
40701
40702
|
for (const [key, col] of Object.entries(allowedFields)) {
|
|
@@ -40834,7 +40835,7 @@ async function handleRequests(params) {
|
|
|
40834
40835
|
pod_id: podId,
|
|
40835
40836
|
project_name: params.projectName || null,
|
|
40836
40837
|
requester_name: params.requesterName || null,
|
|
40837
|
-
source: params.source || "
|
|
40838
|
+
source: params.source || "mcp",
|
|
40838
40839
|
type: params.requestType || "feature_request",
|
|
40839
40840
|
priority: params.priority || null,
|
|
40840
40841
|
sentiment: params.sentiment || null,
|
|
@@ -40912,7 +40913,7 @@ async function handleBugs(params) {
|
|
|
40912
40913
|
description: params.description || null,
|
|
40913
40914
|
pod_id: podId,
|
|
40914
40915
|
project_name: params.projectName || null,
|
|
40915
|
-
source: params.source || "
|
|
40916
|
+
source: params.source || "mcp",
|
|
40916
40917
|
type: "bug",
|
|
40917
40918
|
priority: params.priority || "medium",
|
|
40918
40919
|
status: "open"
|
|
@@ -47666,6 +47667,7 @@ server.tool(
|
|
|
47666
47667
|
prdText: external_exports4.string().optional().describe("PRD text content (for update)"),
|
|
47667
47668
|
prdFileUrl: external_exports4.string().optional().describe("PRD file URL (for update)"),
|
|
47668
47669
|
prdFileName: external_exports4.string().optional().describe("PRD file name (for update)"),
|
|
47670
|
+
prdSummary: external_exports4.string().optional().describe("AI-generated PRD summary (for update)"),
|
|
47669
47671
|
note: external_exports4.string().optional().describe("Note text (for add_note)"),
|
|
47670
47672
|
items: external_exports4.array(external_exports4.object({ id: external_exports4.string(), sortOrder: external_exports4.number() })).optional().describe("Items to reorder"),
|
|
47671
47673
|
limit: external_exports4.number().optional().describe("Max results")
|