@@ -1091,9 +1091,6 @@ export type JSONRPCMessage = z.infer<typeof JSONRPCMessageSchema>;
1091
1091
export type EmptyResult = z . infer < typeof EmptyResultSchema > ;
1092
1092
1093
1093
/* Initialization */
1094
- export type TextContent = z . infer < typeof TextContentSchema > ;
1095
- export type ImageContent = z . infer < typeof ImageContentSchema > ;
1096
- export type SamplingMessage = z . infer < typeof SamplingMessageSchema > ;
1097
1094
export type Implementation = z . infer < typeof ImplementationSchema > ;
1098
1095
export type ClientCapabilities = z . infer < typeof ClientCapabilitiesSchema > ;
1099
1096
export type InitializeRequest = z . infer < typeof InitializeRequestSchema > ;
@@ -1145,6 +1142,10 @@ export type Prompt = z.infer<typeof PromptSchema>;
1145
1142
export type ListPromptsRequest = z . infer < typeof ListPromptsRequestSchema > ;
1146
1143
export type ListPromptsResult = z . infer < typeof ListPromptsResultSchema > ;
1147
1144
export type GetPromptRequest = z . infer < typeof GetPromptRequestSchema > ;
1145
+ export type TextContent = z . infer < typeof TextContentSchema > ;
1146
+ export type ImageContent = z . infer < typeof ImageContentSchema > ;
1147
+ export type EmbeddedResource = z . infer < typeof EmbeddedResourceSchema > ;
1148
+ export type PromptMessage = z . infer < typeof PromptMessageSchema > ;
1148
1149
export type GetPromptResult = z . infer < typeof GetPromptResultSchema > ;
1149
1150
export type PromptListChangedNotification = z . infer <
1150
1151
typeof PromptListChangedNotificationSchema
@@ -1169,6 +1170,7 @@ export type LoggingMessageNotification = z.infer<
1169
1170
> ;
1170
1171
1171
1172
/* Sampling */
1173
+ export type SamplingMessage = z . infer < typeof SamplingMessageSchema > ;
1172
1174
export type CreateMessageRequest = z . infer < typeof CreateMessageRequestSchema > ;
1173
1175
export type CreateMessageResult = z . infer < typeof CreateMessageResultSchema > ;
1174
1176
0 commit comments