@jayesol/jayeson.model 2.0.1 → 2.1.0-beta.1202

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 (3) hide show
  1. package/README.md +15 -1
  2. package/package.json +34 -35
  3. package/changelog.md +0 -15
package/README.md CHANGED
@@ -21,4 +21,18 @@ compareTo
21
21
 
22
22
  ## 9. Add an example of the new rule to ruleCombination.ts, then follow the instructions at the top of ruleCombination.ts to generate ruleCombination.json
23
23
 
24
- ## 10. Add the checks for the new rule to FilterRuleDeserializationTest.java and run that class to verify the deserialization.
24
+ ## 10. Add the checks for the new rule to FilterRuleDeserializationTest.java and run that class to verify the deserialization.
25
+
26
+ ## CI/CD guideline
27
+
28
+ ### Publish
29
+
30
+ - Publish for non prod repo:
31
+ ```
32
+ publish: snapshot
33
+ ```
34
+
35
+ - Publish for production repo:
36
+ ```
37
+ publish: prod
38
+ ```
package/package.json CHANGED
@@ -1,35 +1,34 @@
1
- {
2
- "name": "@jayesol/jayeson.model",
3
- "version": "2.0.1",
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
- "npm": "^6.10.2",
23
- "typescript": "^2.3.3"
24
- },
25
- "devDependencies": {
26
- "@types/jasmine": "^2.5.52",
27
- "del": "^3.0.0",
28
- "glob": "^7.1.2",
29
- "gulp": "^3.9.1",
30
- "gulp-install": "^1.1.0",
31
- "gulp-jasmine": "^2.4.2",
32
- "gulp-typescript": "^3.1.6",
33
- "jasmine": "^2.6.0"
34
- }
35
- }
1
+ {
2
+ "name": "@jayesol/jayeson.model",
3
+ "version": "2.1.0-beta.1202",
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.1.0-beta.1202",
21
+ "gulp-uglify": "^3.0.0",
22
+ "typescript": "^3.9.7"
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.