og-statistics 3.0.0 → 3.0.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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "og-statistics",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -117,16 +117,18 @@ function filterIncidents(incidents) {
117
117
 
118
118
  return {
119
119
  home: {
120
- all: home,
121
120
  cards: home_cards,
122
121
  goals: home_goals,
123
122
  subs: home_subs
124
123
  },
125
124
  away: {
126
- all: away,
127
125
  cards: away_cards,
128
126
  goals: away_goals,
129
127
  subs: away_subs
128
+ },
129
+ full:{
130
+ home: home,
131
+ away: away
130
132
  }
131
133
  }
132
134