@lovelybunch/mcp 1.0.51 → 1.0.52
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/proposals-tool.js +3 -3
- package/package.json +2 -2
- package/src/proposals-tool.ts +3 -3
package/dist/proposals-tool.js
CHANGED
|
@@ -10,7 +10,7 @@ export const listProposalsTool = {
|
|
|
10
10
|
properties: {
|
|
11
11
|
status: {
|
|
12
12
|
type: "string",
|
|
13
|
-
enum: ["draft", "proposed", "in-review", "approved", "merged", "rejected"],
|
|
13
|
+
enum: ["draft", "proposed", "in-review", "code-complete", "approved", "merged", "rejected"],
|
|
14
14
|
description: "Filter by proposal status"
|
|
15
15
|
},
|
|
16
16
|
priority: {
|
|
@@ -53,7 +53,7 @@ export const proposalsTool = {
|
|
|
53
53
|
properties: {
|
|
54
54
|
status: {
|
|
55
55
|
type: "string",
|
|
56
|
-
enum: ["draft", "proposed", "in-review", "approved", "merged", "rejected"],
|
|
56
|
+
enum: ["draft", "proposed", "in-review", "code-complete", "approved", "merged", "rejected"],
|
|
57
57
|
description: "Filter by proposal status"
|
|
58
58
|
},
|
|
59
59
|
author: {
|
|
@@ -156,7 +156,7 @@ export const proposalsTool = {
|
|
|
156
156
|
},
|
|
157
157
|
status: {
|
|
158
158
|
type: "string",
|
|
159
|
-
enum: ["draft", "proposed", "in-review", "approved", "merged", "rejected"],
|
|
159
|
+
enum: ["draft", "proposed", "in-review", "code-complete", "approved", "merged", "rejected"],
|
|
160
160
|
description: "Current status of the proposal"
|
|
161
161
|
},
|
|
162
162
|
metadata: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lovelybunch/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.52",
|
|
4
4
|
"description": "MCP tools for Coconut",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dev": "tsc --watch"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@lovelybunch/types": "^1.0.
|
|
12
|
+
"@lovelybunch/types": "^1.0.52",
|
|
13
13
|
"hono": "^4.0.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
package/src/proposals-tool.ts
CHANGED
|
@@ -27,7 +27,7 @@ export const listProposalsTool: MCPTool = {
|
|
|
27
27
|
properties: {
|
|
28
28
|
status: {
|
|
29
29
|
type: "string",
|
|
30
|
-
enum: ["draft", "proposed", "in-review", "approved", "merged", "rejected"],
|
|
30
|
+
enum: ["draft", "proposed", "in-review", "code-complete", "approved", "merged", "rejected"],
|
|
31
31
|
description: "Filter by proposal status"
|
|
32
32
|
},
|
|
33
33
|
priority: {
|
|
@@ -71,7 +71,7 @@ export const proposalsTool: MCPTool = {
|
|
|
71
71
|
properties: {
|
|
72
72
|
status: {
|
|
73
73
|
type: "string",
|
|
74
|
-
enum: ["draft", "proposed", "in-review", "approved", "merged", "rejected"],
|
|
74
|
+
enum: ["draft", "proposed", "in-review", "code-complete", "approved", "merged", "rejected"],
|
|
75
75
|
description: "Filter by proposal status"
|
|
76
76
|
},
|
|
77
77
|
author: {
|
|
@@ -174,7 +174,7 @@ export const proposalsTool: MCPTool = {
|
|
|
174
174
|
},
|
|
175
175
|
status: {
|
|
176
176
|
type: "string",
|
|
177
|
-
enum: ["draft", "proposed", "in-review", "approved", "merged", "rejected"],
|
|
177
|
+
enum: ["draft", "proposed", "in-review", "code-complete", "approved", "merged", "rejected"],
|
|
178
178
|
description: "Current status of the proposal"
|
|
179
179
|
},
|
|
180
180
|
metadata: {
|