Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/adapters/hono/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export function objectStackMiddleware(kernel: ObjectKernel) {
/**
* Creates a full-featured Hono app with all ObjectStack route dispatchers.
*
* Only routes that need framework-specific handling (auth service, GraphQL
* raw result, discovery wrapper) are registered explicitly.
* Only routes that need framework-specific handling (auth service,
* discovery wrapper) are registered explicitly.
* All other routes (meta, data, packages, analytics, automation, i18n, ui,
* openapi, custom endpoints, and any future routes) are handled by a
* catch-all that delegates to `HttpDispatcher.dispatch()`.
Expand Down
2 changes: 1 addition & 1 deletion packages/spec/src/data/object.zod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export const ObjectCapabilities = strictObject({
/** Enable global search indexing */
searchable: z.boolean().default(true).describe('Index records for global search'),

/** Enable REST/GraphQL API access */
/** Enable REST/MCP API access */
apiEnabled: z.boolean().default(true).describe('Expose object via automatic APIs'),

/**
Expand Down
Loading