@stackfactor/client-api 1.1.70 → 1.1.71
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.
|
@@ -29,15 +29,15 @@ const getTalentTransformationStepsForCurrentUser = (authToken) => {
|
|
|
29
29
|
* Set talent transformation step data
|
|
30
30
|
* @param {String} id The id of the skill to be updated
|
|
31
31
|
* @param {Object} data Data used to update the skill
|
|
32
|
-
* @param {String} token Authorization token
|
|
33
32
|
* @param {Boolean} returnAllStepsStatuses If true, return all steps statuses
|
|
33
|
+
* @param {String} token Authorization token
|
|
34
34
|
* @returns {Promise}
|
|
35
35
|
*/
|
|
36
36
|
const setTalentTransformationStepData = (
|
|
37
37
|
id,
|
|
38
38
|
data,
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
returnAllStepsStatuses,
|
|
40
|
+
token
|
|
41
41
|
) => {
|
|
42
42
|
return new Promise(function (resolve, reject) {
|
|
43
43
|
const requestData = {
|