feat(core): expose workspace adaptors to plugins (#21927)

This commit is contained in:
James Long 2026-04-13 13:33:13 -04:00 committed by GitHub
commit bf50d1c028
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 1744 additions and 42 deletions

View file

@ -6,8 +6,8 @@ import type { WorkspaceID } from "./schema"
export const WorkspaceTable = sqliteTable("workspace", {
id: text().$type<WorkspaceID>().primaryKey(),
type: text().notNull(),
name: text().notNull().default(""),
branch: text(),
name: text(),
directory: text(),
extra: text({ mode: "json" }),
project_id: text()