alexhancock/mcp-crate-cleanup (#4885)
This commit is contained in:
@@ -2634,6 +2634,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"JsonObject": {
|
||||
"type": "object",
|
||||
"additionalProperties": true
|
||||
},
|
||||
"KillJobResponse": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
@@ -3982,7 +3986,9 @@
|
||||
"arguments"
|
||||
],
|
||||
"properties": {
|
||||
"arguments": {},
|
||||
"arguments": {
|
||||
"$ref": "#/components/schemas/JsonObject"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
@@ -348,6 +348,10 @@ export type InspectJobResponse = {
|
||||
sessionId?: string | null;
|
||||
};
|
||||
|
||||
export type JsonObject = {
|
||||
[key: string]: unknown;
|
||||
};
|
||||
|
||||
export type KillJobResponse = {
|
||||
message: string;
|
||||
};
|
||||
@@ -840,7 +844,7 @@ export type ToolAnnotations = {
|
||||
};
|
||||
|
||||
export type ToolConfirmationRequest = {
|
||||
arguments: unknown;
|
||||
arguments: JsonObject;
|
||||
id: string;
|
||||
prompt?: string | null;
|
||||
toolName: string;
|
||||
|
||||
Reference in New Issue
Block a user