2
0

🐛 Improve bot libs mount in prod env

This commit is contained in:
Baptiste Arnaud
2023-02-21 08:28:36 +01:00
parent 46bf25a580
commit 907cad8050
11 changed files with 78 additions and 71 deletions

View File

@@ -335,7 +335,12 @@
"type": "string"
},
"height": {
"type": "number"
"anyOf": [
{
"type": "number"
},
{}
]
}
},
"required": [
@@ -3386,19 +3391,26 @@
]
},
"content": {
"type": "object",
"properties": {
"url": {
"type": "string"
"allOf": [
{
"type": "object",
"properties": {
"url": {
"type": "string"
}
},
"additionalProperties": false
},
"height": {
"type": "number"
{
"type": "object",
"properties": {
"height": {
"type": "number"
}
},
"additionalProperties": false
}
},
"required": [
"height"
],
"additionalProperties": false
]
}
},
"required": [