@lil2good/nubis-mcp-server 1.0.34 → 1.0.35

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/build/index.js CHANGED
@@ -266,7 +266,7 @@ server.tool("update_task", "Update an existing task (title, description, bolt_id
266
266
  taskID: zod_1.z.string(),
267
267
  title: zod_1.z.string().optional(),
268
268
  description: zod_1.z.string().optional(),
269
- board: zod_1.z.enum(['backlog', 'bugs', 'in-progress', 'priority', 'reviewing', 'completed']).optional().default('backlog'),
269
+ board: zod_1.z.enum(['backlog', 'bugs', 'in-progress', 'priority', 'reviewing', 'completed']),
270
270
  bolt_id: zod_1.z.string().optional(),
271
271
  parent_task_id: zod_1.z.string().optional(),
272
272
  }, async ({ taskID, title, description, board, bolt_id, parent_task_id }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lil2good/nubis-mcp-server",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "MCP server for Nubis task management",
5
5
  "main": "build/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -332,7 +332,7 @@ server.tool(
332
332
  taskID: z.string(),
333
333
  title: z.string().optional(),
334
334
  description: z.string().optional(),
335
- board: z.enum(['backlog', 'bugs', 'in-progress', 'priority', 'reviewing', 'completed']).optional().default('backlog'),
335
+ board: z.enum(['backlog', 'bugs', 'in-progress', 'priority', 'reviewing', 'completed']),
336
336
  bolt_id: z.string().optional(),
337
337
  parent_task_id: z.string().optional(),
338
338
  },