feat(supabase): added vector search tool and updated docs (#1707)

* feat(supabase): added vector search tool and updated docs

* exclude generic webhook from docs gen

* change items to pages in meta.json for tools directory in the docs
This commit is contained in:
Waleed
2025-10-21 18:48:18 -07:00
committed by GitHub
parent ca1156a6c2
commit 4d7ebd8bcb
18 changed files with 283 additions and 9 deletions

View File

@@ -838,7 +838,7 @@ async function generateBlockDoc(blockPath: string, icons: Record<string, string>
return
}
if (blockConfig.type.includes('_trigger')) {
if (blockConfig.type.includes('_trigger') || blockConfig.type.includes('_webhook')) {
console.log(`Skipping ${blockConfig.type} - contains '_trigger'`)
return
}
@@ -1111,7 +1111,7 @@ function updateMetaJson() {
]
const metaJson = {
items,
pages: items,
}
fs.writeFileSync(metaJsonPath, JSON.stringify(metaJson, null, 2))