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 0b9e42f6f7
commit 64b5036b99
34 changed files with 2453 additions and 253 deletions

View File

@@ -0,0 +1,46 @@
{
"$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": {
"authUrl": {
"type": "string"
},
"callbackPort": {
"format": "uint16",
"minimum": 0.0,
"type": "integer"
},
"status": {
"enum": [
"started"
],
"type": "string"
}
},
"required": [
"authUrl",
"callbackPort",
"status"
],
"type": "object"
}
],
"title": "ThreadCreateApiKeyStartResponse"
}