@stackfactor/client-api 1.0.62 → 1.0.63

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.
@@ -137,14 +137,9 @@ export const getSkillTemplateList = (
137
137
  */
138
138
  export const getTechnologyStacks = (token) => {
139
139
  return new Promise(function (resolve, reject) {
140
- const requestData = {};
141
- let confirmationRequest = client.get(
142
- `api/v1/skilltemplates/stacks`,
143
- requestData,
144
- {
145
- headers: { authorization: token },
146
- }
147
- );
140
+ let confirmationRequest = client.get(`api/v1/skilltemplates/stacks`, {
141
+ headers: { authorization: token },
142
+ });
148
143
  confirmationRequest
149
144
  .then((response) => {
150
145
  resolve(response.data);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackfactor/client-api",
3
- "version": "1.0.62",
3
+ "version": "1.0.63",
4
4
  "description": "Node.js library for the StackFactor API",
5
5
  "main": "index.js",
6
6
  "exports": {