@damper/mcp 0.3.12 → 0.3.13

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -93,7 +93,7 @@ const FeedbackSummarySchema = z.object({
93
93
  title: z.string(),
94
94
  type: z.string(),
95
95
  voterCount: z.number(),
96
- linkedTaskId: z.string().optional(),
96
+ linkedTaskId: z.string().nullish(),
97
97
  });
98
98
  const FeedbackDetailSchema = z.object({
99
99
  id: z.string(),
@@ -102,7 +102,7 @@ const FeedbackDetailSchema = z.object({
102
102
  type: z.string(),
103
103
  status: z.string(),
104
104
  voteScore: z.number(),
105
- linkedTaskId: z.string().optional(),
105
+ linkedTaskId: z.string().nullish(),
106
106
  voters: z.array(z.object({ email: z.string(), plan: z.string() })),
107
107
  comments: z.array(z.object({ author: z.string(), body: z.string() })),
108
108
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/mcp",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "description": "MCP server for Damper task management",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {