The latest updates on your projects. Learn more about Vercel for GitHub.
| Project | Deployment | Actions | Updated (UTC) |
|---|---|---|---|
| docs | Jun 8, 2026 5:59pm |
Removes the Consumer section (/reference/api-reference/consumer) from the API reference.
The 4 endpoints under that section aren't really "Consumer" endpoints — the backend tags each of them with two tags:
| Endpoint | Backend tags |
|---|---|
GET /consumer/connected_accounts/{nanoid}/permissions | Consumer, Connected Accounts |
PATCH /consumer/connected_accounts/{nanoid}/permissions | Consumer, Connected Accounts |
PATCH /consumer/connected_accounts/{nanoid}/permissions/tools/{tool_slug} | Consumer, Connected Accounts |
POST /consumer/permissions/resolve | Consumer, Tool Router |
fetch-openapi.mjs keeps only the first tag, so these got grouped under Consumer, creating the section. Simply adding Consumer to IGNORED_TAGS wouldn't work — each op also carries a valid secondary tag, so it would survive (just relabeled).
scripts/fetch-openapi.mjs — new EXCLUDED_TAGS = ['Consumer'] list that drops an operation entirely when it carries an excluded tag, even if it also has a valid tag. Kept separate from IGNORED_TAGS so the ~13 endpoints that legitimately carry x-internal / CLI / User as a secondary tag (e.g. auth/session/info, CLI realtime, internal logs) are unaffected. This is the durable fix — CI's auto-fetch stays clean going forward.public/openapi.json — the 4 consumer operations removed.content/reference/api-reference/consumer/index.mdx — generated section page deleted.The endpoints are removed entirely (not regrouped under Connected Accounts / Tool Router), per intent.
scripts/validate-links.ts → 0 errors (no inbound links to the removed pages)..source regenerated cleanly; no dangling references.Note:
bun run buildcurrently fails onnextfor two pre-existing, unrelated reasons (missingsearch-insightsdep in the new Algolia search dialog; backtick-quoted YAML frontmatter insdk-reference/typescript/experimental.mdx). Both files are identical toorigin/nextand untouched by this PR.
🤖 Generated with Claude Code
The latest updates on your projects. Learn more about Vercel for GitHub.
| Project | Deployment | Actions | Updated (UTC) |
|---|---|---|---|
| docs | Jun 8, 2026 5:59pm |