andy-stack_vaultkeeper-ai/Enums/FileEvent.ts
Andrew Beal 182d12173a feat: add VaultCacheService and vault monitoring capabilities
Register VaultCacheService as singleton dependency, add file event registration to VaultService for monitoring vault changes, implement listVaultContents method to retrieve all files and folders with exclusion filtering, and add comprehensive test coverage for new functionality.
2025-10-25 12:46:07 +01:00

6 lines
No EOL
116 B
TypeScript

export enum FileEvent {
Create = "create",
Modify = "modify",
Rename = "rename",
Delete = "delete"
}