mirror of
https://github.com/openai/codex.git
synced 2026-09-05 15:18:41 +00:00
mcp ui collision fixes: regenerate resource read schemas
This commit is contained in:
@@ -1582,6 +1582,13 @@
|
||||
},
|
||||
"McpResourceReadParams": {
|
||||
"properties": {
|
||||
"originCallId": {
|
||||
"description": "The MCP tool call whose app context identifies the resource provider. Requires `threadId`.",
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"server": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
@@ -11941,6 +11941,13 @@
|
||||
"McpResourceReadParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"originCallId": {
|
||||
"description": "The MCP tool call whose app context identifies the resource provider. Requires `threadId`.",
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"server": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
@@ -8345,6 +8345,13 @@
|
||||
"McpResourceReadParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"originCallId": {
|
||||
"description": "The MCP tool call whose app context identifies the resource provider. Requires `threadId`.",
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"server": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
@@ -1,6 +1,13 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"originCallId": {
|
||||
"description": "The MCP tool call whose app context identifies the resource provider. Requires `threadId`.",
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"server": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
@@ -2,4 +2,8 @@
|
||||
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type McpResourceReadParams = { threadId?: string | null, server: string, uri: string, };
|
||||
export type McpResourceReadParams = { threadId?: string | null, server: string, uri: string,
|
||||
/**
|
||||
* The MCP tool call whose app context identifies the resource provider. Requires `threadId`.
|
||||
*/
|
||||
originCallId?: string | null, };
|
||||
|
||||
Reference in New Issue
Block a user