@stackfactor/client-api 1.0.7 → 1.0.8

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.
@@ -1,6 +1,6 @@
1
1
  const { axios } = require("./axios");
2
2
 
3
- export default {
3
+ module.exports = {
4
4
  axios: axios,
5
5
 
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  const axios = require("../axios");
2
2
 
3
- export default {
3
+ module.exports = {
4
4
  axios: axios,
5
5
  /**
6
6
  * Generate content
@@ -1,6 +1,6 @@
1
1
  const { axios } = require("./axios");
2
2
 
3
- export default {
3
+ module.exports = {
4
4
  /**
5
5
  * Add a new phase to an existing template
6
6
  * @param {String} templateId - the template id
@@ -1,6 +1,6 @@
1
1
  const { axios } = require("./axios");
2
2
 
3
- export default {
3
+ module.exports = {
4
4
  /**
5
5
  * Create a new release to an existing template
6
6
  * @param {string} templateId - the template id
@@ -1,6 +1,6 @@
1
1
  const { axios } = require("./axios");
2
2
 
3
- export default {
3
+ module.exports = {
4
4
  axios: axios,
5
5
 
6
6
  /**
package/lib/users.js CHANGED
@@ -1,7 +1,7 @@
1
1
  const { axios } = require("./axios");
2
2
  import { removeNullProperties } from "../components/Utils";
3
3
 
4
- export default {
4
+ module.exports = {
5
5
  axios: axios,
6
6
 
7
7
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackfactor/client-api",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Node.js library for the StackFactor API",
5
5
  "main": "index.js",
6
6
  "exports": {