Skip to content

dependabit / plugins/plugin-context7/src / Context7Config

Interface: Context7Config

Defined in: packages/plugins/plugin-context7/src/checker.ts:29

Configuration for the Context7Checker.

Config

Use When

Monitoring a library's structured documentation via the Context7 API.

Pitfalls

  • libraryId must match the exact Context7 library identifier. If the API returns 404 for a valid URL, try extracting the ID from the URL manually and providing it explicitly rather than relying on URL parsing.
  • When auth.secret is omitted, the checker makes unauthenticated requests, which may have lower rate limits or restricted access.

Properties

PropertyTypeDefined in
auth?{ secret?: string; type: "token" | "none"; }packages/plugins/plugin-context7/src/checker.ts:32
auth.secret?stringpackages/plugins/plugin-context7/src/checker.ts:34
auth.type"token" | "none"packages/plugins/plugin-context7/src/checker.ts:33
libraryId?stringpackages/plugins/plugin-context7/src/checker.ts:31
urlstringpackages/plugins/plugin-context7/src/checker.ts:30

Released under the MIT License.