cwtools-shared 0.2.4 → 0.2.6

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.
@@ -1,4 +1,4 @@
1
- export type DiagnosticSeverity = 'error' | 'warning' | 'information' | 'hint';
1
+ export type DiagnosticSeverity = 'error' | 'warning' | 'info' | 'information' | 'hint';
2
2
  export type DiagnosticsFreshness = 'fresh' | 'pending' | 'stale' | 'unavailable';
3
3
  export interface DiagnosticRecord {
4
4
  file?: string;
@@ -1,4 +1,4 @@
1
- export type ToolEffect = 'none' | 'memory' | 'workspace_read' | 'workspace_write' | 'network' | 'shell' | 'git' | 'media' | 'mcp';
1
+ export type ToolEffect = 'none' | 'memory' | 'workspace_read' | 'workspace_write' | 'network' | 'shell' | 'git' | 'media' | 'mcp' | 'process';
2
2
  export type ToolConcurrencyClass = 'parallel' | 'lsp-limited' | 'network-limited' | 'per-file-write' | 'global-exclusive' | 'interactive';
3
3
  export interface ToolRegistryMetadata {
4
4
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cwtools-shared",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "Shared protocol and tool contracts for the CWTools MCP server",
5
5
  "license": "MIT",
6
6
  "repository": {