code-graph-context 3.0.9 → 3.0.10

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.
@@ -186,7 +186,11 @@ export class WorkspaceParser {
186
186
  semanticType: parsedNode.semanticType,
187
187
  properties: {
188
188
  name: parsedNode.properties.name,
189
- context: parsedNode.properties.context, // Contains propertyTypes, dependencies
189
+ coreType: parsedNode.properties.coreType,
190
+ semanticType: parsedNode.properties.semanticType,
191
+ filePath: parsedNode.properties.filePath,
192
+ parentClassName: parsedNode.properties.parentClassName,
193
+ context: parsedNode.properties.context, // Contains constructorParamTypes, dependencies
190
194
  },
191
195
  });
192
196
  }
@@ -287,6 +291,10 @@ export class WorkspaceParser {
287
291
  semanticType: node.properties.semanticType,
288
292
  properties: {
289
293
  name: node.properties.name,
294
+ coreType: node.properties.coreType,
295
+ semanticType: node.properties.semanticType,
296
+ filePath: node.properties.filePath,
297
+ parentClassName: node.properties.parentClassName,
290
298
  context: node.properties.context,
291
299
  },
292
300
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-graph-context",
3
- "version": "3.0.9",
3
+ "version": "3.0.10",
4
4
  "description": "MCP server that builds code graphs to provide rich context to LLMs",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/andrew-hernandez-paragon/code-graph-context#readme",