From d213946a55d578af098cf6e63e9a89feac77afe1 Mon Sep 17 00:00:00 2001 From: Ommar Date: Fri, 28 Aug 2026 07:12:01 +0500 Subject: [PATCH] fix: deprecate CaptionAsset and add generating status CaptionAsset marked deprecated with successor notice to RichCaptionAsset. Render status enum/docs include generating. --- schemas/captionasset.yaml | 3 +++ schemas/responses/renderresponsedata.yaml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/schemas/captionasset.yaml b/schemas/captionasset.yaml index 115001b..e7f731d 100644 --- a/schemas/captionasset.yaml +++ b/schemas/captionasset.yaml @@ -1,5 +1,8 @@ CaptionAsset: + deprecated: true description: | + **Notice: The CaptionAsset is deprecated, use the [RichCaptionAsset](#tocs_richcaptionasset) instead.** + The CaptionAsset is used to add captions (subtitles) to a video. It uses a supplied SRT or VTT file which will be read and burnt to the video. diff --git a/schemas/responses/renderresponsedata.yaml b/schemas/responses/renderresponsedata.yaml index 1937a99..8387ea8 100644 --- a/schemas/responses/renderresponsedata.yaml +++ b/schemas/responses/renderresponsedata.yaml @@ -22,6 +22,7 @@
  • `fetching` - assets are being fetched
  • `preprocessing` - video assets are being processed for compatibility
  • `rendering` - the asset is being rendered
  • +
  • `generating` - AI/media generation is in progress
  • `saving` - the final asset is being saved to storage
  • `done` - the asset is ready to be downloaded
  • `failed` - there was an error rendering the asset
  • @@ -31,6 +32,7 @@ - fetching - preprocessing - rendering + - generating - saving - done - failed