@stackfactor/client-api 1.0.58 → 1.0.60

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/exports.js CHANGED
@@ -34,7 +34,7 @@ import trainingPlan from "./lib/trainingPlans.js";
34
34
  import userInformation from "./lib/userInformation.js";
35
35
  import users from "./lib/users.js";
36
36
 
37
- const exports = {
37
+ export {
38
38
  actionNotifications,
39
39
  address,
40
40
  client,
@@ -67,5 +67,3 @@ const exports = {
67
67
  userInformation,
68
68
  users,
69
69
  };
70
-
71
- export default exports;
@@ -4,7 +4,7 @@ import utils from "./utils.js";
4
4
 
5
5
  const baseUrl = utils.getBaseUrl();
6
6
 
7
- export const client = axios.create({
7
+ const client = axios.create({
8
8
  baseURL: baseUrl,
9
9
  httpsAgent: new https.Agent({
10
10
  rejectUnauthorized: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackfactor/client-api",
3
- "version": "1.0.58",
3
+ "version": "1.0.60",
4
4
  "description": "Node.js library for the StackFactor API",
5
5
  "main": "index.js",
6
6
  "exports": {