We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e07c470 commit 40587aaCopy full SHA for 40587aa
1 file changed
packages/core/src/shared/protocol.ts
@@ -179,7 +179,11 @@ export interface LegacyContextFields {
179
/** @deprecated Use `ctx.mcpReq.notify` */
180
sendNotification: (notification: Notification) => Promise<void>;
181
/** @deprecated Use `ctx.mcpReq.send` */
182
- sendRequest: <T extends StandardSchemaV1>(request: Request, resultSchema: T, options?: RequestOptions) => Promise<StandardSchemaV1.InferOutput<T>>;
+ sendRequest: <T extends StandardSchemaV1>(
183
+ request: Request,
184
+ resultSchema: T,
185
+ options?: RequestOptions
186
+ ) => Promise<StandardSchemaV1.InferOutput<T>>;
187
/** @deprecated Use `ctx.task?.store` */
188
taskStore?: TaskContext['store'];
189
/** @deprecated Use `ctx.task?.id` */
0 commit comments