80ada8f476
* lexicon: initial lexicons for video embeds in bsky app * lexicon: fix video caption file size limit * codegen * appview: stub out video embed view logic * api prerelease * api prerelease * lexicon: video upload/processing lexicons * tidy * lexicon: app.bsky.video lexicons for uploads * codegen * api prerelease * appview: present video embeds on posts * appview: snaps * changeset * appview: fix wiring of video url config
25 lines
648 B
JSON
25 lines
648 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.video.getUploadLimits",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "Get video upload limits for the authenticated user.",
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["canUpload"],
|
|
"properties": {
|
|
"canUpload": { "type": "boolean" },
|
|
"remainingDailyVideos": { "type": "integer" },
|
|
"remainingDailyBytes": { "type": "integer" },
|
|
"message": { "type": "string" },
|
|
"error": { "type": "string" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|