/** * Input for the search registry files operation. The regex is sent * in the body so characters like `?`, `&`, `+`, `#` and `%` don't * need URL-encoding and aren't mangled by proxies. * */ export interface SearchRegistryFilesRequestInputV3 { /** * POSIX regular expression matched server-side against file paths. Evaluated by Postgres (`~` operator, case-sensitive). Max length 500. * */ regex: string; /** * Registry identifier (name). */ registry: string; }