theprogrammablemind 7.3.4-beta.9 → 7.3.5-beta.0
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/client.js +1 -1
- package/package.json +34 -34
package/client.js
CHANGED
@@ -457,7 +457,7 @@ const doWithRetries = async (n, url, data) => {
|
|
457
457
|
}
|
458
458
|
}
|
459
459
|
if (result.status >= 500 && result.status < 600) {
|
460
|
-
throw `Error ${result.status} - ${result.statusText}
|
460
|
+
throw `Error ${result.status} - ${result.statusText}.`
|
461
461
|
} if (result.status >= 404) {
|
462
462
|
throw `Error ${result.status} - ${result.statusText} - Trying it connect to ${url}`
|
463
463
|
} else {
|
package/package.json
CHANGED
@@ -1,17 +1,33 @@
|
|
1
1
|
{
|
2
|
+
"version": "7.3.5-beta.0",
|
3
|
+
"dependencies": {
|
4
|
+
"sort-json": "^2.0.0",
|
5
|
+
"base-64": "^1.0.0",
|
6
|
+
"deep-equal": "^2.0.4",
|
7
|
+
"readline": "^1.3.0",
|
8
|
+
"scriptjs": "^2.5.9",
|
9
|
+
"json-diff": "^1.0.3",
|
10
|
+
"uuid": "^8.3.2",
|
11
|
+
"underscore": "^1.13.1",
|
12
|
+
"node-fetch": "^2.6.1",
|
13
|
+
"lodash": "^4.17.20",
|
14
|
+
"json-stable-stringify": "^1.0.1",
|
15
|
+
"fs": "0.0.1-security"
|
16
|
+
},
|
17
|
+
"main": "index.js",
|
18
|
+
"name": "theprogrammablemind",
|
19
|
+
"author": "dev@thinktelligence.com",
|
20
|
+
"license": "ISC",
|
2
21
|
"scripts": {
|
3
|
-
"lint:fix": "eslint \"**/*.js\" --fix",
|
4
|
-
"to:debug": "node inspect node_modules/.bin/jest --runInBand -t NEO",
|
5
22
|
"lint": "eslint \"**/*.js\"",
|
6
|
-
"test:debug": "node inspect node_modules/.bin/jest --runInBand --config ./jest.config.json",
|
7
23
|
"tod": "node inspect node_modules/.bin/jest --runInBand -t NEO",
|
24
|
+
"test:debug": "node inspect node_modules/.bin/jest --runInBand --config ./jest.config.json",
|
25
|
+
"test": "jest --config ./jest.config.json",
|
8
26
|
"test:watch": "npm run test -- --watch",
|
27
|
+
"lint:fix": "eslint \"**/*.js\" --fix",
|
9
28
|
"to": "node node_modules/.bin/jest --runInBand -t NEO",
|
10
|
-
"
|
29
|
+
"to:debug": "node inspect node_modules/.bin/jest --runInBand -t NEO"
|
11
30
|
},
|
12
|
-
"version": "7.3.4-beta.9",
|
13
|
-
"license": "ISC",
|
14
|
-
"author": "dev@thinktelligence.com",
|
15
31
|
"keywords": [
|
16
32
|
"NLP",
|
17
33
|
"NLU",
|
@@ -21,6 +37,16 @@
|
|
21
37
|
"natural language understanding",
|
22
38
|
"chatbot"
|
23
39
|
],
|
40
|
+
"devDependencies": {
|
41
|
+
"eslint": "^7.31.0",
|
42
|
+
"eslint-plugin-promise": "^5.1.0",
|
43
|
+
"jest": "^26.6.3",
|
44
|
+
"eslint-plugin-node": "^11.1.0",
|
45
|
+
"eslint-config-standard": "^16.0.3",
|
46
|
+
"@typescript-eslint/parser": "^4.28.4",
|
47
|
+
"@typescript-eslint/eslint-plugin": "^4.28.4",
|
48
|
+
"eslint-plugin-import": "^2.23.4"
|
49
|
+
},
|
24
50
|
"files": [
|
25
51
|
"client.js",
|
26
52
|
"index.js",
|
@@ -35,31 +61,5 @@
|
|
35
61
|
"src/digraph.js",
|
36
62
|
"src/generators.js",
|
37
63
|
"src/semantics.js"
|
38
|
-
]
|
39
|
-
"name": "theprogrammablemind",
|
40
|
-
"devDependencies": {
|
41
|
-
"eslint-plugin-import": "^2.23.4",
|
42
|
-
"eslint-config-standard": "^16.0.3",
|
43
|
-
"eslint-plugin-node": "^11.1.0",
|
44
|
-
"@typescript-eslint/parser": "^4.28.4",
|
45
|
-
"jest": "^26.6.3",
|
46
|
-
"eslint-plugin-promise": "^5.1.0",
|
47
|
-
"@typescript-eslint/eslint-plugin": "^4.28.4",
|
48
|
-
"eslint": "^7.31.0"
|
49
|
-
},
|
50
|
-
"main": "index.js",
|
51
|
-
"dependencies": {
|
52
|
-
"json-stable-stringify": "^1.0.1",
|
53
|
-
"sort-json": "^2.0.0",
|
54
|
-
"deep-equal": "^2.0.4",
|
55
|
-
"readline": "^1.3.0",
|
56
|
-
"uuid": "^8.3.2",
|
57
|
-
"scriptjs": "^2.5.9",
|
58
|
-
"node-fetch": "^2.6.1",
|
59
|
-
"underscore": "^1.13.1",
|
60
|
-
"lodash": "^4.17.20",
|
61
|
-
"base-64": "^1.0.0",
|
62
|
-
"fs": "0.0.1-security",
|
63
|
-
"json-diff": "^1.0.3"
|
64
|
-
}
|
64
|
+
]
|
65
65
|
}
|