@macroforge/mcp-server 0.1.39 → 0.1.40

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.
@@ -120,9 +120,9 @@ export function statusDefaultValue(): Status {
120
120
  return Status.Pending;
121
121
  }
122
122
 
123
- export const Status = {
124
- defaultValue: statusDefaultValue
125
- } as const;
123
+ namespace Status {
124
+ export const defaultValue = statusDefaultValue;
125
+ }
126
126
  ```
127
127
 
128
128
  Generated output:
@@ -139,9 +139,9 @@ export function statusDefaultValue(): Status {
139
139
  return Status.Pending;
140
140
  }
141
141
 
142
- export const Status = {
143
- defaultValue: statusDefaultValue
144
- } as const;
142
+ namespace Status {
143
+ export const defaultValue = statusDefaultValue;
144
+ }
145
145
  ```
146
146
 
147
147
  ## Error Handling
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@macroforge/mcp-server",
3
- "version": "0.1.39",
3
+ "version": "0.1.40",
4
4
  "description": "MCP server for Macroforge documentation and code analysis",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,7 +29,7 @@
29
29
  "typescript": "^5.7.0"
30
30
  },
31
31
  "peerDependencies": {
32
- "macroforge": "^0.1.39"
32
+ "macroforge": "^0.1.40"
33
33
  },
34
34
  "peerDependenciesMeta": {
35
35
  "macroforge": {