chore: generate

This commit is contained in:
opencode-agent[bot] 2026-05-10 06:49:21 +00:00
commit 3a78fb1f42
7 changed files with 75 additions and 36 deletions

View file

@ -12010,6 +12010,36 @@
"enum": ["auto", "stretch"],
"description": "@deprecated Always uses stretch layout."
},
"ImageAttachmentConfig": {
"type": "object",
"properties": {
"auto_resize": {
"type": "boolean"
},
"max_width": {
"type": "integer",
"exclusiveMinimum": 0
},
"max_height": {
"type": "integer",
"exclusiveMinimum": 0
},
"max_base64_bytes": {
"type": "integer",
"exclusiveMinimum": 0
}
},
"additionalProperties": false
},
"AttachmentConfig": {
"type": "object",
"properties": {
"image": {
"$ref": "#/components/schemas/ImageAttachmentConfig"
}
},
"additionalProperties": false
},
"Config": {
"type": "object",
"properties": {
@ -12340,6 +12370,9 @@
"type": "boolean"
}
},
"attachment": {
"$ref": "#/components/schemas/AttachmentConfig"
},
"enterprise": {
"type": "object",
"properties": {