trace-mcp 1.18.0 → 1.20.0

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
@@ -433,6 +433,7 @@ declare class SymbolRepository {
433
433
  getSymbolBySymbolId(symbolId: string): SymbolRow | undefined;
434
434
  getSymbolByFqn(fqn: string): SymbolRow | undefined;
435
435
  getSymbolById(id: number): SymbolRow | undefined;
436
+ getSymbolChildren(parentId: number): SymbolRow[];
436
437
  getSymbolByName(name: string, kind?: string): SymbolRow | undefined;
437
438
  getExportedSymbols(filePattern?: string): SymbolWithFilePath[];
438
439
  findImplementors(name: string): SymbolWithFilePath[];
@@ -631,6 +632,7 @@ declare class Store {
631
632
  getSymbolByFqn(fqn: string): SymbolRow | undefined;
632
633
  getSymbolById(id: number): SymbolRow | undefined;
633
634
  getSymbolByName(name: string, kind?: string): SymbolRow | undefined;
635
+ getSymbolChildren(parentId: number): SymbolRow[];
634
636
  getExportedSymbols(filePattern?: string): SymbolWithFilePath[];
635
637
  findImplementors(name: string): SymbolWithFilePath[];
636
638
  getSymbolsWithHeritage(fileIds?: number[]): (SymbolRow & {