Skip to content

Commit 430dced

Browse files
committed
fix mapping type
1 parent c1e269c commit 430dced

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

example/convex/_generated/api.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import type * as http from "../http.js";
1515
import type * as ideaAgents from "../ideaAgents.js";
1616
import type * as ideas from "../ideas.js";
1717
import type * as playground from "../playground.js";
18-
import type * as updateThreadTitle from "../updateThreadTitle.js";
1918
import type * as weather from "../weather.js";
2019

2120
import type {
@@ -40,7 +39,6 @@ declare const fullApi: ApiFromModules<{
4039
ideaAgents: typeof ideaAgents;
4140
ideas: typeof ideas;
4241
playground: typeof playground;
43-
updateThreadTitle: typeof updateThreadTitle;
4442
weather: typeof weather;
4543
}>;
4644
declare const fullApiWithMounts: typeof fullApi;

src/mapping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import type {
2121
StepWithMessagesWithMetadata,
2222
} from "./validators";
2323
import type { ActionCtx, AgentComponent } from "./client/types.js";
24-
import type { RunMutationCtx } from "@convex-dev/prosemirror-sync";
24+
import type { RunMutationCtx } from "./client/types.js";
2525

2626
export type AIMessageWithoutId = Omit<AIMessage, "id">;
2727

0 commit comments

Comments
 (0)