MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / listRegistryCatalog

Function listRegistryCatalog

packages/cli/src/server/studioServer.ts:495–502  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

493 },
494
495 async listRegistryCatalog() {
496 const { listRegistryItems, loadAllItems } = await import("../registry/resolver.js");
497 const entries = await listRegistryItems();
498 const blockAndComponentEntries = entries.filter(
499 (e) => e.type === "hyperframes:block" || e.type === "hyperframes:component",
500 );
501 return loadAllItems(blockAndComponentEntries);
502 },
503
504 async installRegistryBlock(opts) {
505 const { resolveItemWithDependencies } = await import("../registry/resolver.js");

Callers

nothing calls this directly

Calls 2

listRegistryItemsFunction · 0.85
loadAllItemsFunction · 0.85

Tested by

no test coverage detected