checkChanges
client.codebaseIndex.checkChanges(): Promise<CodebaseChanges>
Checks for changes since the last indexing run.
Compares the current filesystem state against the last indexed state to identify new, modified, or deleted files.
Parameters
No parameters.
Returns
Promise<CodebaseChanges> — A promise that resolves to the detected
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.codebaseIndex.checkChanges();
console.log(result);