@jayesol/jayeson.model 2.0.1 → 2.1.0-beta.1205
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/package.json +34 -35
- package/changelog.md +0 -15
package/package.json
CHANGED
|
@@ -1,35 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@jayesol/jayeson.model",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Javascript implementation for jayeson.model library",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"types": "lib/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "gulp test",
|
|
9
|
-
"prepare": "gulp dist"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git"
|
|
13
|
-
},
|
|
14
|
-
"keywords": [
|
|
15
|
-
"model"
|
|
16
|
-
],
|
|
17
|
-
"author": "",
|
|
18
|
-
"license": "ISC",
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@jayesol/jayeson.lib.record": "^2.0.0",
|
|
21
|
-
"gulp-uglify": "^3.0.0",
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"gulp": "^
|
|
30
|
-
"gulp-
|
|
31
|
-
"gulp-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@jayesol/jayeson.model",
|
|
3
|
+
"version": "2.1.0-beta.1205",
|
|
4
|
+
"description": "Javascript implementation for jayeson.model library",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "gulp test",
|
|
9
|
+
"prepare": "gulp dist"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"model"
|
|
16
|
+
],
|
|
17
|
+
"author": "",
|
|
18
|
+
"license": "ISC",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@jayesol/jayeson.lib.record": "^2.0.0",
|
|
21
|
+
"gulp-uglify": "^3.0.0",
|
|
22
|
+
"typescript": "^2.3.3"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/jasmine": "^2.5.52",
|
|
26
|
+
"del": "^3.0.0",
|
|
27
|
+
"glob": "^7.1.2",
|
|
28
|
+
"gulp": "^4.0.2",
|
|
29
|
+
"gulp-install": "^1.1.0",
|
|
30
|
+
"gulp-jasmine": "^2.4.2",
|
|
31
|
+
"gulp-typescript": "^3.1.6",
|
|
32
|
+
"jasmine": "^2.6.0"
|
|
33
|
+
}
|
|
34
|
+
}
|
package/changelog.md
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# v2.2.0
|
|
2
|
-
* Refactor the model project to make it use dependency injection
|
|
3
|
-
* Remove unnecessary interface methods, making the model simpler and more straight forward
|
|
4
|
-
* Remove complicated DataAdapter and BetSubmitter discovery. Everything is done through Guice now, giving application
|
|
5
|
-
more familiar way to provides Adapter and Submitter to their models.
|
|
6
|
-
* Separate the project into three source sets:
|
|
7
|
-
* main - contains the api
|
|
8
|
-
* adapter - contains a basic implementation of the feed adapter
|
|
9
|
-
* filter - contains a set of filter used for filtering soccer data
|
|
10
|
-
|
|
11
|
-
## Important notes:
|
|
12
|
-
The data filtered using the ```filter``` source sets is not suitable to be refiltered as the soccer event
|
|
13
|
-
produced by the filtering process doesn't support a full set of functionalities as specified by the ```SoccerEvent```
|
|
14
|
-
interface from ```jayeson.lib.record```. Using methods such as ```hasSportbook``` on the event produced from
|
|
15
|
-
the filters will throw unsupported operation exception.
|