import type { ScopeInfo } from '../schemas/ScopeInfo'; /** * A single entity file path in a repo that no webhook is tracking, paired with the owning scope of the file. The scope tells the caller where to create or extend a webhook. */ export interface UntrackedFilePath { /** * Entity file path in the repository. */ file_path?: string; scope?: ScopeInfo; }