chore: bump api spec

This commit is contained in:
Paul Makles
2022-05-18 22:18:41 +01:00
parent 8539b39e9c
commit cee0d94b0f
3 changed files with 56 additions and 1 deletions
+37
View File
@@ -6272,6 +6272,11 @@
"type": "string",
"nullable": true
},
"original_url": {
"description": "Original direct URL",
"type": "string",
"nullable": true
},
"special": {
"description": "Remote content",
"allOf": [
@@ -6367,6 +6372,38 @@
}
}
},
{
"description": "Video",
"type": "object",
"required": [
"height",
"type",
"url",
"width"
],
"properties": {
"type": {
"type": "string",
"enum": [
"Video"
]
},
"url": {
"description": "URL to the original video",
"type": "string"
},
"width": {
"description": "Width of the video",
"type": "integer",
"format": "int"
},
"height": {
"description": "Height of the video",
"type": "integer",
"format": "int"
}
}
},
{
"description": "Text Embed",
"type": "object",