@stackfactor/client-api 1.0.99 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/skillTemplate.js +2 -1
- package/package.json +1 -1
package/lib/skillTemplate.js
CHANGED
|
@@ -250,7 +250,7 @@ export const setTemplateTags = (id, tags, token) => {
|
|
|
250
250
|
* @param {String} token Authorization token
|
|
251
251
|
* @returns {Promise}
|
|
252
252
|
*/
|
|
253
|
-
export const
|
|
253
|
+
export const validateTemplate = (id, token) => {
|
|
254
254
|
return new Promise(function (resolve, reject) {
|
|
255
255
|
const requestData = {
|
|
256
256
|
data: data,
|
|
@@ -312,6 +312,7 @@ const skillTemplate = {
|
|
|
312
312
|
publishTemplate,
|
|
313
313
|
setTemplateInformation,
|
|
314
314
|
setTemplateTags,
|
|
315
|
+
validateTemplate,
|
|
315
316
|
watchSkillTemplate,
|
|
316
317
|
};
|
|
317
318
|
|