fix(core): revert form service and mcp elicitation (#35080)

This commit is contained in:
Aiden Cline
2026-07-03 00:32:10 -05:00
committed by GitHub
parent 1de3c6e4a6
commit ef2140d121
73 changed files with 5874 additions and 5779 deletions
+5 -5
View File
@@ -1,12 +1,12 @@
import { expect, test } from "bun:test"
import type { V2SessionLogData } from "../src/v2/gen/types.gen"
import type { V2SessionHistoryData } from "../src/v2/gen/types.gen"
test("uses numeric Session log positions", () => {
test("uses numeric Session history positions", () => {
const input = {
path: { sessionID: "ses_test" },
query: { after: 1, follow: "false" },
url: "/api/session/{sessionID}/log",
} satisfies V2SessionLogData
query: { after: 1, limit: 50 },
url: "/api/session/{sessionID}/history",
} satisfies V2SessionHistoryData
expect(input.query.after).toBe(1)
})