infiniloom-node 0.4.1 → 0.4.4

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/index.js CHANGED
@@ -310,7 +310,7 @@ if (!nativeBinding) {
310
310
  throw new Error(`Failed to load native binding`)
311
311
  }
312
312
 
313
- const { pack, scan, scanWithOptions, countTokens, Infiniloom, semanticCompress, isGitRepo, GitRepo, scanSecurity } = nativeBinding
313
+ const { pack, scan, scanWithOptions, countTokens, Infiniloom, semanticCompress, isGitRepo, GitRepo, scanSecurity, buildIndex, indexStatus, findSymbol, getCallers, getCallees, getReferences, getCallGraph, findSymbolAsync, getCallersAsync, getCalleesAsync, getReferencesAsync, getCallGraphAsync, chunk, analyzeImpact, getDiffContext, packAsync, scanAsync, buildIndexAsync, chunkAsync, analyzeImpactAsync, getDiffContextAsync, getSymbolsInFile, getSymbolSource, getChangedSymbols, getTestsForFile, getCallSites, getSymbolsInFileAsync, getSymbolSourceAsync, getChangedSymbolsAsync, getTestsForFileAsync, getCallSitesAsync } = nativeBinding
314
314
 
315
315
  module.exports.pack = pack
316
316
  module.exports.scan = scan
@@ -321,3 +321,34 @@ module.exports.semanticCompress = semanticCompress
321
321
  module.exports.isGitRepo = isGitRepo
322
322
  module.exports.GitRepo = GitRepo
323
323
  module.exports.scanSecurity = scanSecurity
324
+ module.exports.buildIndex = buildIndex
325
+ module.exports.indexStatus = indexStatus
326
+ module.exports.findSymbol = findSymbol
327
+ module.exports.getCallers = getCallers
328
+ module.exports.getCallees = getCallees
329
+ module.exports.getReferences = getReferences
330
+ module.exports.getCallGraph = getCallGraph
331
+ module.exports.findSymbolAsync = findSymbolAsync
332
+ module.exports.getCallersAsync = getCallersAsync
333
+ module.exports.getCalleesAsync = getCalleesAsync
334
+ module.exports.getReferencesAsync = getReferencesAsync
335
+ module.exports.getCallGraphAsync = getCallGraphAsync
336
+ module.exports.chunk = chunk
337
+ module.exports.analyzeImpact = analyzeImpact
338
+ module.exports.getDiffContext = getDiffContext
339
+ module.exports.packAsync = packAsync
340
+ module.exports.scanAsync = scanAsync
341
+ module.exports.buildIndexAsync = buildIndexAsync
342
+ module.exports.chunkAsync = chunkAsync
343
+ module.exports.analyzeImpactAsync = analyzeImpactAsync
344
+ module.exports.getDiffContextAsync = getDiffContextAsync
345
+ module.exports.getSymbolsInFile = getSymbolsInFile
346
+ module.exports.getSymbolSource = getSymbolSource
347
+ module.exports.getChangedSymbols = getChangedSymbols
348
+ module.exports.getTestsForFile = getTestsForFile
349
+ module.exports.getCallSites = getCallSites
350
+ module.exports.getSymbolsInFileAsync = getSymbolsInFileAsync
351
+ module.exports.getSymbolSourceAsync = getSymbolSourceAsync
352
+ module.exports.getChangedSymbolsAsync = getChangedSymbolsAsync
353
+ module.exports.getTestsForFileAsync = getTestsForFileAsync
354
+ module.exports.getCallSitesAsync = getCallSitesAsync
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infiniloom-node",
3
- "version": "0.4.1",
3
+ "version": "0.4.4",
4
4
  "description": "Node.js bindings for infiniloom - Repository context engine for LLMs",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",