@ccmaymay/concrete 4.15.0 → 4.15.1

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 (42) hide show
  1. package/ActiveLearnerClientService.js +249 -249
  2. package/ActiveLearnerServerService.js +642 -642
  3. package/AnnotateCommunicationService.js +696 -696
  4. package/AnnotateWithContextService.js +298 -298
  5. package/FeedbackService.js +750 -750
  6. package/FetchCommunicationService.js +709 -709
  7. package/README.md +125 -0
  8. package/ResultsServerService.js +2138 -2138
  9. package/SearchProxyService.js +962 -962
  10. package/SearchService.js +685 -685
  11. package/Service.js +373 -373
  12. package/StoreCommunicationService.js +255 -255
  13. package/SummarizationService.js +479 -479
  14. package/access_types.js +168 -168
  15. package/annotate_types.js +26 -26
  16. package/audio_types.js +110 -110
  17. package/cluster_types.js +398 -398
  18. package/communication_fu.js +432 -432
  19. package/communication_types.js +845 -845
  20. package/concrete.js +64 -64
  21. package/context_types.js +65 -65
  22. package/email_types.js +477 -477
  23. package/entities_types.js +658 -658
  24. package/ex_types.js +82 -82
  25. package/language_types.js +123 -123
  26. package/learn_types.js +207 -207
  27. package/linking_types.js +286 -286
  28. package/metadata_types.js +926 -926
  29. package/nitf_types.js +1005 -1005
  30. package/package.json +26 -5
  31. package/results_types.js +18 -18
  32. package/search_types.js +661 -661
  33. package/services_types.js +384 -384
  34. package/situations_types.js +1268 -1268
  35. package/spans_types.js +151 -151
  36. package/structure_types.js +2311 -2311
  37. package/summarization_types.js +433 -433
  38. package/tokenization_fu.js +33 -33
  39. package/tokentagging_fu.js +241 -241
  40. package/twitter_types.js +1553 -1553
  41. package/util.js +117 -117
  42. package/uuid_types.js +67 -67
package/package.json CHANGED
@@ -1,11 +1,8 @@
1
1
  {
2
2
  "name": "@ccmaymay/concrete",
3
- "version": "4.15.0",
3
+ "version": "4.15.1",
4
4
  "description": "Unofficial Node.js library for working with Concrete, a data serialization format for NLP",
5
5
  "main": "concrete.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
8
- },
9
6
  "repository": {
10
7
  "type": "git",
11
8
  "url": "git+https://github.com/ccmaymay/concrete-js.git"
@@ -19,5 +16,29 @@
19
16
  "bugs": {
20
17
  "url": "https://github.com/ccmaymay/concrete-js/issues"
21
18
  },
22
- "homepage": "https://github.com/ccmaymay/concrete-js#readme"
19
+ "homepage": "https://github.com/ccmaymay/concrete-js/blob/main/README-nodejs.md",
20
+ "dependencies": {
21
+ "thrift": "^0.15.0"
22
+ },
23
+ "devDependencies": {
24
+ "docdash": "^1.1.0",
25
+ "grunt": "^1.0.4",
26
+ "grunt-contrib-concat": "^1.0.1",
27
+ "grunt-contrib-copy": "^1.0.0",
28
+ "grunt-contrib-jshint": "^2.1.0",
29
+ "grunt-contrib-uglify": "^4.0.1",
30
+ "grunt-jsdoc": "^2.3.1",
31
+ "grunt-shell": "^3.0.1",
32
+ "is-docker": "^1.1.0",
33
+ "jasmine-core": "^3.4.0",
34
+ "karma": "^4.1.0",
35
+ "karma-chrome-launcher": "^2.2.0",
36
+ "karma-jasmine": "^2.0.1",
37
+ "karma-jasmine-jquery": "^0.1.1",
38
+ "karma-safari-launcher": "^1.0.0",
39
+ "karma-spec-reporter": "^0.0.32"
40
+ },
41
+ "scripts": {
42
+ "test": "karma start --single-run --browsers ChromeCustom --reporters spec"
43
+ }
23
44
  }
package/results_types.js CHANGED
@@ -1,18 +1,18 @@
1
- //
2
- // Autogenerated by Thrift Compiler (0.15.0)
3
- //
4
- // DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
5
- //
6
- "use strict";
7
-
8
- const thrift = require('thrift');
9
- const Thrift = thrift.Thrift;
10
- const Int64 = require('node-int64');
11
-
12
- const services_ttypes = require('./services_types');
13
- const uuid_ttypes = require('./uuid_types');
14
- const search_ttypes = require('./search_types');
15
- const communication_ttypes = require('./communication_types');
16
-
17
-
18
- const ttypes = module.exports = {};
1
+ //
2
+ // Autogenerated by Thrift Compiler (0.15.0)
3
+ //
4
+ // DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
5
+ //
6
+ "use strict";
7
+
8
+ const thrift = require('thrift');
9
+ const Thrift = thrift.Thrift;
10
+ const Int64 = require('node-int64');
11
+
12
+ const services_ttypes = require('./services_types');
13
+ const uuid_ttypes = require('./uuid_types');
14
+ const search_ttypes = require('./search_types');
15
+ const communication_ttypes = require('./communication_types');
16
+
17
+
18
+ const ttypes = module.exports = {};