@vailent/pulse-mcp 1.8.0 → 1.8.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.
- package/dist/server.js +2 -0
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -41954,6 +41954,7 @@ async function handleRequests(params) {
|
|
|
41954
41954
|
const title = params.title;
|
|
41955
41955
|
if (!podId || !title?.trim()) return err("podId and title are required", "MISSING_PARAM");
|
|
41956
41956
|
const { data, error: error2 } = await supabase.from("work_items").insert({
|
|
41957
|
+
id: `f-${Date.now().toString(36)}`,
|
|
41957
41958
|
title: title.trim(),
|
|
41958
41959
|
description: params.description || null,
|
|
41959
41960
|
pod_id: podId,
|
|
@@ -42033,6 +42034,7 @@ async function handleBugs(params) {
|
|
|
42033
42034
|
const title = params.title;
|
|
42034
42035
|
if (!podId || !title?.trim()) return err("podId and title are required", "MISSING_PARAM");
|
|
42035
42036
|
const { data, error: error2 } = await supabase.from("work_items").insert({
|
|
42037
|
+
id: `f-${Date.now().toString(36)}`,
|
|
42036
42038
|
title: title.trim(),
|
|
42037
42039
|
description: params.description || null,
|
|
42038
42040
|
pod_id: podId,
|