Refresh Codex protocol schemas

This commit is contained in:
Codex
2026-06-23 11:20:03 +00:00
parent 595e8aee0e
commit 85326d845d
75 changed files with 11791 additions and 3800 deletions

View File

@@ -20,10 +20,15 @@
"type": "object",
"required": [
"id",
"name",
"needsAuth"
"name"
],
"properties": {
"category": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
@@ -41,12 +46,78 @@
},
"name": {
"type": "string"
},
"needsAuth": {
"type": "boolean"
}
}
},
"AppTemplateSummary": {
"type": "object",
"required": [
"materializedAppIds",
"name",
"templateId"
],
"properties": {
"canonicalConnectorId": {
"type": [
"string",
"null"
]
},
"category": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
"null"
]
},
"logoUrl": {
"type": [
"string",
"null"
]
},
"logoUrlDark": {
"type": [
"string",
"null"
]
},
"materializedAppIds": {
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"type": "string"
},
"reason": {
"anyOf": [
{
"$ref": "#/definitions/AppTemplateUnavailableReason"
},
{
"type": "null"
}
]
},
"templateId": {
"type": "string"
}
}
},
"AppTemplateUnavailableReason": {
"type": "string",
"enum": [
"NOT_CONFIGURED_FOR_WORKSPACE",
"NO_ACTIVE_WORKSPACE"
]
},
"HookEventName": {
"type": "string",
"enum": [
@@ -89,6 +160,7 @@
"PluginDetail": {
"type": "object",
"required": [
"appTemplates",
"apps",
"hooks",
"marketplaceName",
@@ -97,6 +169,12 @@
"summary"
],
"properties": {
"appTemplates": {
"type": "array",
"items": {
"$ref": "#/definitions/AppTemplateSummary"
}
},
"apps": {
"type": "array",
"items": {
@@ -134,6 +212,12 @@
"type": "string"
}
},
"shareUrl": {
"type": [
"string",
"null"
]
},
"skills": {
"type": "array",
"items": {