Remove mcp_macros and unused types (#3581)
This commit is contained in:
@@ -2975,31 +2975,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ToolResultSchema": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"success",
|
||||
"data"
|
||||
],
|
||||
"properties": {
|
||||
"data": {
|
||||
"type": "object"
|
||||
},
|
||||
"message": {
|
||||
"type": "string",
|
||||
"example": "Operation completed successfully",
|
||||
"nullable": true
|
||||
},
|
||||
"success": {
|
||||
"type": "boolean",
|
||||
"example": true
|
||||
}
|
||||
},
|
||||
"example": {
|
||||
"data": {},
|
||||
"success": true
|
||||
}
|
||||
},
|
||||
"UpdateScheduleRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
|
||||
@@ -763,14 +763,6 @@ export type ToolResponse = {
|
||||
};
|
||||
};
|
||||
|
||||
export type ToolResultSchema = {
|
||||
data: {
|
||||
[key: string]: unknown;
|
||||
};
|
||||
message?: string | null;
|
||||
success: boolean;
|
||||
};
|
||||
|
||||
export type UpdateScheduleRequest = {
|
||||
cron: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user