Initial Clippy

This commit is contained in:
Richard Lee
2026-04-04 13:20:29 -07:00
parent dedd1c386a
commit e6d2da4716
33 changed files with 1713 additions and 1 deletions

View File

@@ -147,6 +147,20 @@
],
"type": "object"
},
"CodexAvatarEquipParams": {
"properties": {
"avatarId": {
"type": "string"
}
},
"required": [
"avatarId"
],
"type": "object"
},
"CodexAvatarInventoryReadParams": {
"type": "object"
},
"CollaborationMode": {
"description": "Collaboration mode for a Codex session.",
"properties": {
@@ -4538,6 +4552,54 @@
"title": "Account/rateLimits/readRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"avatar/inventory/read"
],
"title": "Avatar/inventory/readRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/CodexAvatarInventoryReadParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Avatar/inventory/readRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"avatar/equip"
],
"title": "Avatar/equipRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/CodexAvatarEquipParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Avatar/equipRequest",
"type": "object"
},
{
"properties": {
"id": {