We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
getRenderingStatus
1 parent 3b2569c commit fb6d5ddCopy full SHA for fb6d5dd
lib/resources/projects.js
@@ -153,6 +153,11 @@ const renderProject = (projectId, params) => {
153
return Api.authorizedRequest(options)
154
}
155
156
+/**
157
+ * @param {Function} callback - The callback function for handling render status result.
158
+ */
159
+const getRenderingStatus = (callback) => Api.socketConnection(callback)
160
+
161
module.exports = {
162
getProject,
163
addProject,
@@ -163,5 +168,6 @@ module.exports = {
168
deleteProjectVideos,
164
169
applyTemplatePresetOnProject,
165
170
duplicateProject,
166
- renderProject
171
+ renderProject,
172
+ getRenderingStatus
167
173
0 commit comments