From 5f7788f0042d50658ebc459119dd42651c3db751 Mon Sep 17 00:00:00 2001 From: Joaquim Cardona <42673539+qcardona@users.noreply.github.com> Date: Thu, 4 Apr 2024 14:43:08 +0200 Subject: [PATCH] Added new Movie properties template, variables and id --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f1bf6d5..0cedc93 100644 --- a/index.js +++ b/index.js @@ -72,7 +72,7 @@ class Scene extends Base { class Movie extends Base { constructor(...a) { super(...a); - this.properties = ['comment', 'draft', 'width', 'height', 'resolution', 'exports', 'quality', 'fps', 'cache']; + this.properties = ['comment', 'draft', 'width', 'height', 'resolution', 'exports', 'quality', 'fps', 'cache', 'template', 'variables', 'id']; this.api_url = 'https://api.json2video.com/v2/movies'; this.apikey = null; }