@itutoring/itutoring_application_js_api 1.20.2 → 1.20.3

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/index.d.ts CHANGED
@@ -54,6 +54,8 @@ import InquiryContactInfo from "./objects/InquiryContactInfo";
54
54
  import InquiryAdditionalInfo from "./objects/InquiryAdditionalInfo";
55
55
  import PlainInquiryInfo from "./objects/PlainInquiryInfo";
56
56
 
57
+ import { InitializeDebugConsole } from "./debugConsole";
58
+
57
59
  import
58
60
  {
59
61
  BookReturn,
@@ -69,6 +71,8 @@ export
69
71
  {
70
72
  APIController,
71
73
  CookiesManager,
74
+
75
+ InitializeDebugConsole,
72
76
 
73
77
  CustomerAuth,
74
78
  CustomerPortal,
package/index.js CHANGED
@@ -52,6 +52,8 @@ import InquiryContactInfo from "./objects/InquiryContactInfo";
52
52
  import InquiryAdditionalInfo from "./objects/InquiryAdditionalInfo";
53
53
  import PlainInquiryInfo from "./objects/PlainInquiryInfo";
54
54
 
55
+ import { InitializeDebugConsole } from "./debugConsole";
56
+
55
57
  import
56
58
  {
57
59
  BookReturn,
@@ -68,6 +70,8 @@ export
68
70
  APIController,
69
71
  CookiesManager,
70
72
 
73
+ InitializeDebugConsole,
74
+
71
75
  CustomerAuth,
72
76
  CustomerPortal,
73
77
  SubjectManager,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.20.2",
3
+ "version": "1.20.3",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -0,0 +1,26 @@
1
+ var path = require('path');
2
+ module.exports = {
3
+ output: {
4
+ path: path.resolve(__dirname, 'build'),
5
+ filename: 'index.js',
6
+ libraryTarget: 'commonjs2'
7
+ },
8
+ module: {
9
+ rules: [
10
+ {
11
+ test: /\.js$/,
12
+ include: path.resolve(__dirname, 'src'),
13
+ exclude: /(node_modules|bower_components|build)/,
14
+ use: {
15
+ loader: 'babel-loader',
16
+ options: {
17
+ presets: ['env']
18
+ }
19
+ }
20
+ }
21
+ ]
22
+ },
23
+ externals: {
24
+ 'react': 'commonjs react'
25
+ }
26
+ };