From a43150f84c45e4333ff8c7297c02ac7f0402caeb Mon Sep 17 00:00:00 2001 From: Joaquim Cardona <111003115+imdavidbosch@users.noreply.github.com> Date: Thu, 5 Oct 2023 13:49:57 +0200 Subject: [PATCH 1/4] 2.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 164b7ec..b5b4073 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "json2video-sdk", - "version": "2.0.0", + "version": "2.0.1", "description": "SDK for creating videos programmatically using JSON2Video API", "main": "index.js", "scripts": { From e6960f98992ce85a1f2608c55e38e1bcc2f850c9 Mon Sep 17 00:00:00 2001 From: David Bosch <111003115+imdavidbosch@users.noreply.github.com> Date: Thu, 5 Oct 2023 13:54:16 +0200 Subject: [PATCH 2/4] 2.0.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b5b4073..a886673 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "json2video-sdk", - "version": "2.0.1", + "version": "2.0.3", "description": "SDK for creating videos programmatically using JSON2Video API", "main": "index.js", "scripts": { From b96159af2a08df7a9c2cbb5175f50bcd2a11f509 Mon Sep 17 00:00:00 2001 From: David Bosch <111003115+imdavidbosch@users.noreply.github.com> Date: Thu, 5 Oct 2023 13:54:33 +0200 Subject: [PATCH 3/4] 2.0.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a886673..f154f9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "json2video-sdk", - "version": "2.0.3", + "version": "2.0.4", "description": "SDK for creating videos programmatically using JSON2Video API", "main": "index.js", "scripts": { 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 4/4] 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; }