codex: make create-api-key app-server backed

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Michael Fan
2026-04-05 18:07:48 -04:00
parent b5edeb98a0
commit 7636437244
34 changed files with 2453 additions and 254 deletions

View File

@@ -937,6 +937,54 @@
"title": "Thread/unsubscribeRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"thread/createApiKey/start"
],
"title": "Thread/createApiKey/startRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadCreateApiKeyStartParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Thread/createApiKey/startRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"thread/createApiKey/finish"
],
"title": "Thread/createApiKey/finishRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadCreateApiKeyFinishParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Thread/createApiKey/finishRequest",
"type": "object"
},
{
"properties": {
"id": {
@@ -10197,6 +10245,111 @@
"title": "ThreadCompactStartResponse",
"type": "object"
},
"ThreadCreateApiKeyFinishParams": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"threadId": {
"type": "string"
}
},
"required": [
"threadId"
],
"title": "ThreadCreateApiKeyFinishParams",
"type": "object"
},
"ThreadCreateApiKeyFinishResponse": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"defaultProjectId": {
"type": "string"
},
"defaultProjectTitle": {
"type": [
"string",
"null"
]
},
"organizationId": {
"type": "string"
},
"organizationTitle": {
"type": [
"string",
"null"
]
},
"projectApiKey": {
"type": "string"
}
},
"required": [
"defaultProjectId",
"organizationId",
"projectApiKey"
],
"title": "ThreadCreateApiKeyFinishResponse",
"type": "object"
},
"ThreadCreateApiKeyStartParams": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"threadId": {
"type": "string"
}
},
"required": [
"threadId"
],
"title": "ThreadCreateApiKeyStartParams",
"type": "object"
},
"ThreadCreateApiKeyStartResponse": {
"$schema": "http://json-schema.org/draft-07/schema#",
"oneOf": [
{
"properties": {
"status": {
"enum": [
"alreadySet"
],
"title": "AlreadySetv2::ThreadCreateApiKeyStartResponseStatus",
"type": "string"
}
},
"required": [
"status"
],
"title": "AlreadySetv2::ThreadCreateApiKeyStartResponse",
"type": "object"
},
{
"properties": {
"auth_url": {
"type": "string"
},
"callback_port": {
"format": "uint16",
"minimum": 0.0,
"type": "integer"
},
"status": {
"enum": [
"started"
],
"type": "string"
}
},
"required": [
"auth_url",
"callback_port",
"status"
],
"type": "object"
}
],
"title": "ThreadCreateApiKeyStartResponse"
},
"ThreadForkParams": {
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "There are two ways to fork a thread: 1. By thread_id: load the thread from disk by thread_id and fork it into a new thread. 2. By path: load the thread from disk by path and fork it into a new thread.\n\nIf using path, the thread_id param will be ignored.\n\nPrefer using thread_id whenever possible.",