feat(id): brand WorkspaceID through Drizzle and Zod schemas (#16964)

This commit is contained in:
Kit Langton 2026-03-11 19:30:17 -04:00 committed by GitHub
parent f1c3a44190
commit 16a6d6feba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
49 changed files with 205 additions and 157 deletions

View file

@ -2,13 +2,13 @@ import { describe, test, expect } from "bun:test"
import path from "path"
import { Instance } from "../../src/project/instance"
import { WebFetchTool } from "../../src/tool/webfetch"
import { SessionID } from "../../src/session/schema"
import { SessionID, MessageID } from "../../src/session/schema"
const projectRoot = path.join(__dirname, "../..")
const ctx = {
sessionID: SessionID.make("ses_test"),
messageID: "",
messageID: MessageID.make(""),
callID: "",
agent: "build",
abort: new AbortController().signal,