archtracker-mcp 0.3.0 → 0.3.2

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/index.d.ts CHANGED
@@ -60,7 +60,9 @@ interface ArchContext {
60
60
  }>;
61
61
  }
62
62
 
63
- type LanguageId = "javascript" | "python" | "rust" | "go" | "java" | "c-cpp" | "c-sharp" | "ruby" | "php" | "swift" | "kotlin" | "dart" | "scala";
63
+ /** Single source of truth for supported language IDs */
64
+ declare const LANGUAGE_IDS: readonly ["javascript", "python", "rust", "go", "java", "c-cpp", "c-sharp", "ruby", "php", "swift", "kotlin", "dart", "scala"];
65
+ type LanguageId = (typeof LANGUAGE_IDS)[number];
64
66
 
65
67
  /** Options for the dependency analyzer */
66
68
  interface AnalyzeOptions {