Skip to content

Commit 611c0a0

Browse files
committed
✨ release 0.3.8
1 parent dc75fda commit 611c0a0

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ renderforest.deleteProject(payload)
208208
### Delete Specific Project Videos
209209

210210
Deletes specific project videos.
211-
The quality parameter is optional. If you want to delete only a single quality video, you have to specify quality parameter, otherwise all quality videos of the project will be deleted.
211+
The quality parameter is optional.
212+
IMPORTANT: If you want to delete only a single quality video, you have to specify quality parameter, otherwise all quality videos of the project will be deleted.
212213
```js
213214
const Renderforest = require('@renderforest/sdk-node')
214215

examples/projects/delete-project-videos.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const renderforest = new Renderforest({ signKey: '<signKey>', clientId: -1 })
1212

1313
const payload = {
1414
projectId: 5000658,
15-
quality: 360
15+
quality: 360 // optional argument
1616
}
1717
renderforest.deleteProjectVideos(payload)
1818
.then(console.log) // handle the success

examples/projects/render-project.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const renderforest = new Renderforest({ signKey: '<signKey>', clientId: -1 })
1313
const payload = {
1414
projectId: 5000658,
1515
quality: 360,
16-
watermark: 'watermarkURL'
16+
watermark: 'https://example.com/watermark.png' // optional argument
1717
}
1818
renderforest.renderProject(payload)
1919
.then(console.log) // handle the success

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@renderforest/sdk-node",
33
"description": "Renderforest SDK for Node.js",
4-
"version": "0.3.7",
4+
"version": "0.3.8",
55
"author": "RenderForest LLC",
66
"bugs": {
77
"url": "https://github.com/renderforest/renderforest-sdk-node/issues"

0 commit comments

Comments
 (0)