chore: generate
This commit is contained in:
parent
85ce6a5f95
commit
3a78fb1f42
7 changed files with 75 additions and 36 deletions
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue