fix: switch consumers to service imports to break bundle cycles (#18438)

This commit is contained in:
Kit Langton 2026-03-20 16:55:46 -04:00 committed by GitHub
commit 214a6c6cf1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 20 additions and 19 deletions

View file

@ -1,8 +1,8 @@
import { sqliteTable, text, integer, index, primaryKey } from "drizzle-orm/sqlite-core"
import { ProjectTable } from "../project/project.sql"
import type { MessageV2 } from "./message-v2"
import type { Snapshot } from "../snapshot"
import type { PermissionNext } from "../permission"
import type { Snapshot } from "../snapshot/service"
import type { Permission as PermissionNext } from "../permission/service"
import type { ProjectID } from "../project/schema"
import type { SessionID, MessageID, PartID } from "./schema"
import type { WorkspaceID } from "../control-plane/schema"