@stackfactor/client-api 1.1.71 → 1.1.73
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/talentTransfromation.js +3 -3
- package/lib/utils.js +2 -0
- package/package.json +1 -1
|
@@ -27,8 +27,8 @@ const getTalentTransformationStepsForCurrentUser = (authToken) => {
|
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
29
|
* Set talent transformation step data
|
|
30
|
-
* @param {String} id The id of the
|
|
31
|
-
* @param {Object} data Data used to update the
|
|
30
|
+
* @param {String} id The id of the talent transformation step to be updated
|
|
31
|
+
* @param {Object} data Data used to update the talent transformation step
|
|
32
32
|
* @param {Boolean} returnAllStepsStatuses If true, return all steps statuses
|
|
33
33
|
* @param {String} token Authorization token
|
|
34
34
|
* @returns {Promise}
|
|
@@ -46,7 +46,7 @@ const setTalentTransformationStepData = (
|
|
|
46
46
|
returnAllStepsStatuses: returnAllStepsStatuses,
|
|
47
47
|
};
|
|
48
48
|
let confirmationRequest = client.post(
|
|
49
|
-
`api/v1/talenttransformation/
|
|
49
|
+
`api/v1/talenttransformation/setdata/`,
|
|
50
50
|
requestData,
|
|
51
51
|
{
|
|
52
52
|
headers: { authorization: token },
|
package/lib/utils.js
CHANGED