@stackfactor/client-api 1.0.21 → 1.0.23

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.
Files changed (2) hide show
  1. package/index.js +3 -6
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -3,6 +3,7 @@ const axios = require("./lib/axios");
3
3
  const address = require("./lib/address");
4
4
  const config = require("./lib/config");
5
5
  const constants = require("./lib/constants");
6
+ const contentGenerator = require("./lib/integrations/contentGenerator");
6
7
  const dashboard = require("./lib/dashboard");
7
8
  const departmentTraingPlans = require("./lib/departmentTrainingPlans");
8
9
  const integration = require("./lib/integration");
@@ -17,9 +18,6 @@ const skillAssessment = require("./lib/skillAssessments");
17
18
  const skillAssessmentTestingSession = require("./lib/skillAssessmentTestingSession");
18
19
  const skillTemplate = require("./lib/skillTemplate");
19
20
  const team = require("./lib/teams");
20
- // const templateDocument = require("./lib/templateDocument");
21
- // const templatePhase = require("./lib/templatePhase");
22
- // const templateRelease = require("./lib/templateRelease");
23
21
  const templates = require("./lib/templates");
24
22
  const tenant = require("./lib/tenants");
25
23
  const trainingPlanTemplate = require("./lib/trainingPlanTemplate");
@@ -30,7 +28,9 @@ const users = require("./lib/users");
30
28
  module.exports = {
31
29
  actionNotifications,
32
30
  address,
31
+ axios,
33
32
  config,
33
+ contentGenerator,
34
34
  dashboard,
35
35
  errorToString: axios.errorToString,
36
36
  getErrorType: axios.getErrorType,
@@ -51,9 +51,6 @@ module.exports = {
51
51
  skillAssessmentTestingSession,
52
52
  skillTemplate,
53
53
  team,
54
- // templateDocument,
55
- // templatePhase,
56
- // templateRelease,
57
54
  templates,
58
55
  tenant,
59
56
  trainingPlanTemplate,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackfactor/client-api",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "Node.js library for the StackFactor API",
5
5
  "main": "index.js",
6
6
  "exports": {