cricinfo-cli-go 0.1.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.
Files changed (121) hide show
  1. package/AGENTS.md +63 -0
  2. package/CONTRIBUTORS.md +75 -0
  3. package/LICENSE +21 -0
  4. package/Makefile +131 -0
  5. package/README.md +130 -0
  6. package/bin/cricinfo.js +44 -0
  7. package/cmd/cricinfo/main.go +15 -0
  8. package/go.mod +10 -0
  9. package/go.sum +10 -0
  10. package/internal/app/app.go +11 -0
  11. package/internal/app/app_test.go +122 -0
  12. package/internal/buildinfo/buildinfo.go +16 -0
  13. package/internal/cli/analysis.go +262 -0
  14. package/internal/cli/analysis_test.go +175 -0
  15. package/internal/cli/competitions.go +154 -0
  16. package/internal/cli/competitions_test.go +165 -0
  17. package/internal/cli/leagues.go +297 -0
  18. package/internal/cli/leagues_test.go +194 -0
  19. package/internal/cli/matches.go +403 -0
  20. package/internal/cli/matches_test.go +413 -0
  21. package/internal/cli/players.go +263 -0
  22. package/internal/cli/players_test.go +384 -0
  23. package/internal/cli/root.go +141 -0
  24. package/internal/cli/search.go +119 -0
  25. package/internal/cli/teams.go +214 -0
  26. package/internal/cli/teams_test.go +192 -0
  27. package/internal/cricinfo/analysis.go +1401 -0
  28. package/internal/cricinfo/analysis_phase15_test.go +267 -0
  29. package/internal/cricinfo/client.go +471 -0
  30. package/internal/cricinfo/client_test.go +280 -0
  31. package/internal/cricinfo/cmd/fixture-refresh/main.go +145 -0
  32. package/internal/cricinfo/competitions.go +405 -0
  33. package/internal/cricinfo/competitions_phase13_test.go +234 -0
  34. package/internal/cricinfo/coverage_ledger.go +122 -0
  35. package/internal/cricinfo/coverage_ledger_test.go +253 -0
  36. package/internal/cricinfo/decode.go +115 -0
  37. package/internal/cricinfo/decode_test.go +100 -0
  38. package/internal/cricinfo/entity_index.go +618 -0
  39. package/internal/cricinfo/entity_index_test.go +175 -0
  40. package/internal/cricinfo/fixture_matrix.go +243 -0
  41. package/internal/cricinfo/fixture_matrix_test.go +49 -0
  42. package/internal/cricinfo/fixtures_test.go +264 -0
  43. package/internal/cricinfo/historical_hydration.go +1641 -0
  44. package/internal/cricinfo/historical_phase14_test.go +542 -0
  45. package/internal/cricinfo/leagues.go +1210 -0
  46. package/internal/cricinfo/leagues_phase12_test.go +324 -0
  47. package/internal/cricinfo/live_leagues_test.go +169 -0
  48. package/internal/cricinfo/live_matches_test.go +203 -0
  49. package/internal/cricinfo/live_matrix_test.go +118 -0
  50. package/internal/cricinfo/live_players_test.go +122 -0
  51. package/internal/cricinfo/live_search_test.go +86 -0
  52. package/internal/cricinfo/live_smoke_test.go +213 -0
  53. package/internal/cricinfo/live_teams_test.go +104 -0
  54. package/internal/cricinfo/matches.go +1508 -0
  55. package/internal/cricinfo/matches_phase7_test.go +207 -0
  56. package/internal/cricinfo/matches_phase9_test.go +253 -0
  57. package/internal/cricinfo/normalize_entities.go +1727 -0
  58. package/internal/cricinfo/normalize_leagues.go +346 -0
  59. package/internal/cricinfo/players.go +1332 -0
  60. package/internal/cricinfo/players_phase10_test.go +174 -0
  61. package/internal/cricinfo/players_phase11_test.go +373 -0
  62. package/internal/cricinfo/render_contract.go +1088 -0
  63. package/internal/cricinfo/render_phase4_test.go +633 -0
  64. package/internal/cricinfo/renderer.go +1689 -0
  65. package/internal/cricinfo/resolver.go +813 -0
  66. package/internal/cricinfo/resolver_test.go +244 -0
  67. package/internal/cricinfo/teams.go +603 -0
  68. package/internal/cricinfo/teams_phase8_test.go +231 -0
  69. package/internal/cricinfo/testdata/fixtures/README.md +43 -0
  70. package/internal/cricinfo/testdata/fixtures/aux-competition-metadata/broadcasts.json +11 -0
  71. package/internal/cricinfo/testdata/fixtures/aux-competition-metadata/officials.json +150 -0
  72. package/internal/cricinfo/testdata/fixtures/details-plays/detail-110.json +157 -0
  73. package/internal/cricinfo/testdata/fixtures/details-plays/detail-52545007.json +145 -0
  74. package/internal/cricinfo/testdata/fixtures/details-plays/detail-52559021.json +143 -0
  75. package/internal/cricinfo/testdata/fixtures/details-plays/plays.json +15 -0
  76. package/internal/cricinfo/testdata/fixtures/endpoint-matrix.tsv +19 -0
  77. package/internal/cricinfo/testdata/fixtures/innings-fow-partnerships/fow-1.json +12 -0
  78. package/internal/cricinfo/testdata/fixtures/innings-fow-partnerships/fow.json +42 -0
  79. package/internal/cricinfo/testdata/fixtures/innings-fow-partnerships/innings-1-2.json +38 -0
  80. package/internal/cricinfo/testdata/fixtures/innings-fow-partnerships/partnership-1.json +31 -0
  81. package/internal/cricinfo/testdata/fixtures/innings-fow-partnerships/partnerships.json +42 -0
  82. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/calendar-offdays.json +20 -0
  83. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/calendar-ondays.json +21 -0
  84. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/calendar.json +14 -0
  85. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/season-2025.json +13 -0
  86. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/season-group-1.json +13 -0
  87. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/season-groups.json +11 -0
  88. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/season-type-1.json +13 -0
  89. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/season-types.json +11 -0
  90. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/seasons.json +30 -0
  91. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/standings-item-1.json +72 -0
  92. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/standings-root.json +3 -0
  93. package/internal/cricinfo/testdata/fixtures/leagues-seasons-standings/standings.json +15 -0
  94. package/internal/cricinfo/testdata/fixtures/matches-competitions/competition.json +460 -0
  95. package/internal/cricinfo/testdata/fixtures/matches-competitions/event-1529474.json +86 -0
  96. package/internal/cricinfo/testdata/fixtures/matches-competitions/matchcards-1527966.json +368 -0
  97. package/internal/cricinfo/testdata/fixtures/matches-competitions/situation-1529474.json +10 -0
  98. package/internal/cricinfo/testdata/fixtures/players/athlete-1361257-statistics.json +126 -0
  99. package/internal/cricinfo/testdata/fixtures/players/athlete-1361257.json +113 -0
  100. package/internal/cricinfo/testdata/fixtures/players/roster-1361257-linescores-1-1-statistics-0.json +208 -0
  101. package/internal/cricinfo/testdata/fixtures/players/roster-1361257-linescores-1-2-statistics-0.json +252 -0
  102. package/internal/cricinfo/testdata/fixtures/players/roster-1361257-linescores.json +74 -0
  103. package/internal/cricinfo/testdata/fixtures/players/roster-1361257-statistics-0.json +1008 -0
  104. package/internal/cricinfo/testdata/fixtures/root-discovery/events.json +72 -0
  105. package/internal/cricinfo/testdata/fixtures/root-discovery/root.json +28 -0
  106. package/internal/cricinfo/testdata/fixtures/team-competitor/competitor-789643.json +40 -0
  107. package/internal/cricinfo/testdata/fixtures/team-competitor/leaders-789643.json +353 -0
  108. package/internal/cricinfo/testdata/fixtures/team-competitor/records-789643.json +91 -0
  109. package/internal/cricinfo/testdata/fixtures/team-competitor/roster-1147772-object.json +231 -0
  110. package/internal/cricinfo/testdata/fixtures/team-competitor/roster-1147772.json +235 -0
  111. package/internal/cricinfo/testdata/fixtures/team-competitor/roster-789643.json +322 -0
  112. package/internal/cricinfo/testdata/fixtures/team-competitor/scores-789643.json +19 -0
  113. package/internal/cricinfo/testdata/fixtures/team-competitor/statistics-789643.json +629 -0
  114. package/internal/cricinfo/testdata/fixtures/team-competitor/team-789643-athletes.json +7 -0
  115. package/internal/cricinfo/testdata/fixtures/team-competitor/team-789643.json +67 -0
  116. package/internal/cricinfo/testdata/golden/match-empty.golden +1 -0
  117. package/internal/cricinfo/testdata/golden/match-list.golden +2 -0
  118. package/internal/cricinfo/testdata/golden/match-partial.golden +3 -0
  119. package/internal/cricinfo/types.go +54 -0
  120. package/package.json +51 -0
  121. package/scripts/postinstall.js +153 -0
@@ -0,0 +1,72 @@
1
+ {
2
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/1529471/seasons/2026/types/1/groups/1/standings/1",
3
+ "id": "1",
4
+ "name": "overall",
5
+ "displayName": "Overall Standings",
6
+ "standings": [
7
+ {
8
+ "team": {
9
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/teams/789649"
10
+ },
11
+ "records": [
12
+ {
13
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/1529471/seasons/2026/types/1/teams/789649/records/1",
14
+ "id": "1",
15
+ "name": "Total",
16
+ "stats": [
17
+ {
18
+ "name": "rank",
19
+ "type": "rank",
20
+ "value": 1,
21
+ "displayValue": "1"
22
+ },
23
+ {
24
+ "name": "matchPoints",
25
+ "type": "matchpoints",
26
+ "value": 16,
27
+ "displayValue": "16"
28
+ },
29
+ {
30
+ "name": "matchesPlayed",
31
+ "type": "matchesplayed",
32
+ "value": 1,
33
+ "displayValue": "1"
34
+ }
35
+ ]
36
+ }
37
+ ]
38
+ },
39
+ {
40
+ "team": {
41
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/teams/789651"
42
+ },
43
+ "records": [
44
+ {
45
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/1529471/seasons/2026/types/1/teams/789651/records/1",
46
+ "id": "1",
47
+ "name": "Total",
48
+ "stats": [
49
+ {
50
+ "name": "rank",
51
+ "type": "rank",
52
+ "value": 2,
53
+ "displayValue": "2"
54
+ },
55
+ {
56
+ "name": "matchPoints",
57
+ "type": "matchpoints",
58
+ "value": 14,
59
+ "displayValue": "14"
60
+ },
61
+ {
62
+ "name": "matchesPlayed",
63
+ "type": "matchesplayed",
64
+ "value": 1,
65
+ "displayValue": "1"
66
+ }
67
+ ]
68
+ }
69
+ ]
70
+ }
71
+ ]
72
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/1529471/seasons/2026/types/1/groups/1/standings"
3
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "count": 1,
3
+ "pageIndex": 1,
4
+ "pageSize": 25,
5
+ "pageCount": 1,
6
+ "items": [
7
+ {
8
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/1529471/seasons/2026/types/1/groups/1/standings/1"
9
+ }
10
+ ]
11
+ }
12
+
13
+
14
+
15
+
@@ -0,0 +1,460 @@
1
+ {
2
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474",
3
+ "id": "1529474",
4
+ "uid": "s:200~e:1529474~c:1529474",
5
+ "note": "Boost Region lead by 1 run with 9 wickets remaining",
6
+ "description": "3rd Match",
7
+ "shortDescription": "3rd Match, at Kandahar",
8
+ "date": "2026-04-09T05:30Z",
9
+ "endDate": "2026-04-12T23:59Z",
10
+ "timeValid": true,
11
+ "neutralSite": true,
12
+ "attendance": 0,
13
+ "divisionCompetition": false,
14
+ "conferenceCompetition": false,
15
+ "previewAvailable": false,
16
+ "recapAvailable": false,
17
+ "boxscoreAvailable": false,
18
+ "gamecastAvailable": false,
19
+ "playByPlayAvailable": false,
20
+ "ticketsAvailable": false,
21
+ "conversationAvailable": false,
22
+ "pickcenterAvailable": false,
23
+ "dayNight": false,
24
+ "liveAvailable": true,
25
+ "fastcastAvailable": false,
26
+ "preCommentaryAvailable": false,
27
+ "updatesOnly": false,
28
+ "limitedOvers": false,
29
+ "recent": false,
30
+ "reducedOvers": false,
31
+ "class": {
32
+ "internationalClassId": "0",
33
+ "generalClassId": "11",
34
+ "generalClassCard": "Other match",
35
+ "name": "Other matches",
36
+ "eventType": "Test"
37
+ },
38
+ "onWatchESPN": false,
39
+ "necessary": false,
40
+ "venue": {
41
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/venues/1145410",
42
+ "id": "1145410",
43
+ "fullName": "Kandahar Cricket Stadium",
44
+ "shortName": "Kandahar Cricket Stadium",
45
+ "address": {
46
+ "city": "Kandahar",
47
+ "state": "",
48
+ "zipCode": "",
49
+ "country": "Afghanistan",
50
+ "summary": "Aino Maina, Kandahar, Afghanistan Phone: +93700325731"
51
+ },
52
+ "capacity": 14000,
53
+ "grass": false,
54
+ "indoor": false,
55
+ "images": [],
56
+ "links": [
57
+ {
58
+ "language": "en",
59
+ "rel": [
60
+ "ground",
61
+ "desktop"
62
+ ],
63
+ "href": "https://www.espncricinfo.com/ci/content/ground/1145410.html",
64
+ "text": "Ground",
65
+ "shortText": "Ground",
66
+ "isExternal": false,
67
+ "isPremium": false
68
+ }
69
+ ]
70
+ },
71
+ "competitors": [
72
+ {
73
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643",
74
+ "id": "789643",
75
+ "uid": "s:200~e:1529474~c:1529474~t:789643",
76
+ "type": "team",
77
+ "order": 1,
78
+ "homeAway": "home",
79
+ "winner": false,
80
+ "score": {
81
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643/scores"
82
+ },
83
+ "team": {
84
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/events/1529474/teams/789643"
85
+ },
86
+ "linescores": {
87
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643/linescores/1"
88
+ },
89
+ "roster": {
90
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643/roster"
91
+ },
92
+ "leaders": {
93
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643/leaders"
94
+ },
95
+ "previousCompetition": {
96
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529472/competitions/1529472/competitors/789643"
97
+ },
98
+ "nextCompetition": {
99
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529476/competitions/1529476/competitors/789643"
100
+ },
101
+ "statistics": {
102
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643/statistics"
103
+ },
104
+ "record": {
105
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643/records"
106
+ }
107
+ },
108
+ {
109
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647",
110
+ "id": "789647",
111
+ "uid": "s:200~e:1529474~c:1529474~t:789647",
112
+ "type": "team",
113
+ "order": 2,
114
+ "homeAway": "away",
115
+ "winner": false,
116
+ "score": {
117
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647/scores"
118
+ },
119
+ "team": {
120
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/events/1529474/teams/789647"
121
+ },
122
+ "linescores": {
123
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647/linescores/1"
124
+ },
125
+ "roster": {
126
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647/roster"
127
+ },
128
+ "leaders": {
129
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647/leaders"
130
+ },
131
+ "previousCompetition": {
132
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/17954/events/1499363/competitions/1499363/competitors/789647"
133
+ },
134
+ "nextCompetition": {
135
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529477/competitions/1529477/competitors/789647"
136
+ },
137
+ "statistics": {
138
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647/statistics"
139
+ },
140
+ "record": {
141
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647/records"
142
+ }
143
+ }
144
+ ],
145
+ "status": {
146
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/status"
147
+ },
148
+ "details": {
149
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/details"
150
+ },
151
+ "tiebreaker": {
152
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/details?tiebreaker"
153
+ },
154
+ "officials": {
155
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/officials"
156
+ },
157
+ "odds": {
158
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/odds"
159
+ },
160
+ "matchcards": {
161
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/matchcards"
162
+ },
163
+ "broadcasts": {
164
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/broadcasts"
165
+ },
166
+ "tickets": {
167
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/tickets"
168
+ },
169
+ "notes": [
170
+ {
171
+ "href": "https://www.espncricinfo.com/ci/engine/series/index.html?season=2026",
172
+ "text": "2026",
173
+ "type": "season"
174
+ },
175
+ {
176
+ "text": "9,10,11 April 2026 (3-day match)",
177
+ "type": "matchdays"
178
+ },
179
+ {
180
+ "text": "Speen Ghar Region , elected to field first",
181
+ "type": "toss"
182
+ },
183
+ {
184
+ "text": "Samiullah Stanikzai",
185
+ "type": "livescorer"
186
+ },
187
+ {
188
+ "dayNumber": "",
189
+ "id": "752058",
190
+ "text": "Boost Region innings",
191
+ "type": "matchnote"
192
+ },
193
+ {
194
+ "dayNumber": "",
195
+ "id": "752062",
196
+ "text": "Boost Region: 50 runs in 9.5 overs (59 balls), Extras 0",
197
+ "type": "matchnote"
198
+ },
199
+ {
200
+ "dayNumber": "",
201
+ "id": "752063",
202
+ "text": "1st wicket: 50 runs in 59 balls (Fazal Haq 14, Numan Shah 36, Ex 0)",
203
+ "type": "matchnote"
204
+ },
205
+ {
206
+ "dayNumber": "",
207
+ "id": "752067",
208
+ "text": "Drinks: Boost Region - 78/2 in 17.0 overs (Fazal Haq 26, Bilal Ahmad 6)",
209
+ "type": "matchnote"
210
+ },
211
+ {
212
+ "dayNumber": "",
213
+ "id": "752071",
214
+ "text": "Boost Region: 100 runs in 19.4 overs (119 balls), Extras 1",
215
+ "type": "matchnote"
216
+ },
217
+ {
218
+ "dayNumber": "",
219
+ "id": "752078",
220
+ "text": "Boost Region: 150 runs in 27.3 overs (166 balls), Extras 5",
221
+ "type": "matchnote"
222
+ },
223
+ {
224
+ "dayNumber": "",
225
+ "id": "752081",
226
+ "text": "5th wicket: 50 runs in 54 balls (Ali Ahmad 24, Azizullah Miakhil 23, Ex 4)",
227
+ "type": "matchnote"
228
+ },
229
+ {
230
+ "dayNumber": "",
231
+ "id": "752083",
232
+ "text": "Lunch: Boost Region - 178/4 in 35.0 overs (Azizullah Miakhil 29, Ali Ahmad 43)",
233
+ "type": "matchnote"
234
+ },
235
+ {
236
+ "dayNumber": "",
237
+ "id": "752090",
238
+ "text": "Ali Ahmad: 50 off 58 balls (5 x 4, 1 x 6)",
239
+ "type": "matchnote"
240
+ },
241
+ {
242
+ "dayNumber": "",
243
+ "id": "752091",
244
+ "text": "Boost Region: 200 runs in 39.4 overs (239 balls), Extras 6",
245
+ "type": "matchnote"
246
+ },
247
+ {
248
+ "dayNumber": "",
249
+ "id": "752095",
250
+ "text": "5th wicket: 100 runs in 132 balls (Ali Ahmad 53, Azizullah Maikhil 44, Ex 5)",
251
+ "type": "matchnote"
252
+ },
253
+ {
254
+ "dayNumber": "",
255
+ "id": "752096",
256
+ "text": "Azizullah Miakhil: 50 off 64 balls (7 x 4, 1 x 6)",
257
+ "type": "matchnote"
258
+ },
259
+ {
260
+ "dayNumber": "",
261
+ "id": "752100",
262
+ "text": "Drinks: Boost Region - 230/4 in 50.0 overs (Ali Ahmad 69, Azizullah Miakhil 55)",
263
+ "type": "matchnote"
264
+ },
265
+ {
266
+ "dayNumber": "",
267
+ "id": "752103",
268
+ "text": "Boost Region: 250 runs in 54.2 overs (327 balls), Extras 7",
269
+ "type": "matchnote"
270
+ },
271
+ {
272
+ "dayNumber": "",
273
+ "id": "752105",
274
+ "text": "5th wicket: 150 runs in 205 balls (Ali Ahmad 82, Aziullah Maikhil 62, Ex 6)",
275
+ "type": "matchnote"
276
+ },
277
+ {
278
+ "dayNumber": "",
279
+ "id": "752108",
280
+ "text": "Ali Ahmad: 100 off 135 balls (10 x 4, 1 x 6)",
281
+ "type": "matchnote"
282
+ },
283
+ {
284
+ "dayNumber": "",
285
+ "id": "752111",
286
+ "text": "Tea: Boost Region - 291/7 in 64.0 overs (Abdullah 12, Zaitullah 1)",
287
+ "type": "matchnote"
288
+ },
289
+ {
290
+ "dayNumber": "",
291
+ "id": "752117",
292
+ "text": "Boost Region: 300 runs in 67.3 overs (408 balls), Extras 7",
293
+ "type": "matchnote"
294
+ },
295
+ {
296
+ "dayNumber": "",
297
+ "id": "752122",
298
+ "text": "Innings Break: Boost Region - 319/10 in 72.0 overs (Zaitullah Shaheen 18)",
299
+ "type": "matchnote"
300
+ },
301
+ {
302
+ "dayNumber": "",
303
+ "id": "752123",
304
+ "text": "Speen Ghar Region 1st innings",
305
+ "type": "matchnote"
306
+ },
307
+ {
308
+ "dayNumber": "",
309
+ "id": "752133",
310
+ "text": "Speen Ghar Region: 50 runs in 9.3 overs *59 balls), Extras 3",
311
+ "type": "matchnote"
312
+ },
313
+ {
314
+ "dayNumber": "",
315
+ "id": "752135",
316
+ "text": "15 wicket: 50 runs in 59 balls (Arshaduddin Omari 30, Usman Noori 17, Ex 3)",
317
+ "type": "matchnote"
318
+ },
319
+ {
320
+ "dayNumber": "",
321
+ "id": "752137",
322
+ "text": "End Of Day: Speen Ghar Region - 70/1 in 16.0 overs (Abuzar Safi 5, Usman Noori 31)",
323
+ "type": "matchnote"
324
+ },
325
+ {
326
+ "dayNumber": "",
327
+ "id": "752206",
328
+ "text": "Speen Ghar Region: 100 runs in 22.3 overs (138 balls), Extras 4",
329
+ "type": "matchnote"
330
+ },
331
+ {
332
+ "dayNumber": "",
333
+ "id": "752207",
334
+ "text": "2nd wicket: 50 runs in 76 balls (Usman Noori 21, Abuzar Safi 30, Ex 1)",
335
+ "type": "matchnote"
336
+ },
337
+ {
338
+ "dayNumber": "",
339
+ "id": "752210",
340
+ "text": "Usman Noori: 50 off 78 balls (7 x 4)",
341
+ "type": "matchnote"
342
+ },
343
+ {
344
+ "dayNumber": "",
345
+ "id": "752215",
346
+ "text": "Drinks: Speen Ghar Region - 142/2 in 32.0 overs (Jalat Khan 3, Usman Noori 62)",
347
+ "type": "matchnote"
348
+ },
349
+ {
350
+ "dayNumber": "",
351
+ "id": "752218",
352
+ "text": "Speen Ghar Region: 150 runs in 34.3 overs (210 balls), Extras 5",
353
+ "type": "matchnote"
354
+ },
355
+ {
356
+ "dayNumber": "",
357
+ "id": "752222",
358
+ "text": "Speen Ghar Region: 200 in 41.2 overs (251 balls), Extras 5",
359
+ "type": "matchnote"
360
+ },
361
+ {
362
+ "dayNumber": "",
363
+ "id": "752223",
364
+ "text": "Jalat Khan: 50 off 43 balls (6 x 4, 3 x 6)",
365
+ "type": "matchnote"
366
+ },
367
+ {
368
+ "dayNumber": "",
369
+ "id": "752227",
370
+ "text": "5th wicket: 50 runs in 44 balls (Jalat Khan 31, Majeed Alam 19, Ex 1)",
371
+ "type": "matchnote"
372
+ },
373
+ {
374
+ "dayNumber": "",
375
+ "id": "752230",
376
+ "text": "Drinks: Speen Ghar Region - 238/5 in 48.2 overs (Majeed Alam 21)",
377
+ "type": "matchnote"
378
+ },
379
+ {
380
+ "dayNumber": "",
381
+ "id": "752233",
382
+ "text": "Speen Ghar Region: 250 runs in 54.1 overs (328 balls), Extras 7",
383
+ "type": "matchnote"
384
+ },
385
+ {
386
+ "dayNumber": "",
387
+ "id": "752239",
388
+ "text": "Lunch: Speen Ghar Region - 265/5 in 59.0 overs (Majeed Alam 32, Shawkat Zaman 15)",
389
+ "type": "matchnote"
390
+ },
391
+ {
392
+ "dayNumber": "",
393
+ "id": "752255",
394
+ "text": "6th wicket: 50 runs in 96 balls (Majeed Alam 20, Shawkat Zaman 29, Ex 3)",
395
+ "type": "matchnote"
396
+ },
397
+ {
398
+ "dayNumber": "",
399
+ "id": "752260",
400
+ "text": "Speen Ghar Region: 300 runs in 66.4 overs (405 balls), Extras 10",
401
+ "type": "matchnote"
402
+ },
403
+ {
404
+ "dayNumber": "",
405
+ "id": "752263",
406
+ "text": "Majeed Alam: 50 off 102 balls (4 x 4)",
407
+ "type": "matchnote"
408
+ },
409
+ {
410
+ "dayNumber": "",
411
+ "id": "752270",
412
+ "text": "Tea: Speen Ghar Region - 331/7 in 77.0 overs (Qamar Shams 0, Majeed Alam 61)",
413
+ "type": "matchnote"
414
+ },
415
+ {
416
+ "dayNumber": "",
417
+ "id": "752276",
418
+ "text": "Speen Ghar Region: 350 runs in 82.2 overs (499 balls), Extras 16",
419
+ "type": "matchnote"
420
+ },
421
+ {
422
+ "dayNumber": "",
423
+ "id": "752277",
424
+ "text": "New ball Taken at 83.0 overs",
425
+ "type": "matchnote"
426
+ },
427
+ {
428
+ "dayNumber": "",
429
+ "id": "752278",
430
+ "text": "Innings Break: Speen Ghar Region - 368/10 in 84.5 overs (Amanullah 19)",
431
+ "type": "matchnote"
432
+ },
433
+ {
434
+ "dayNumber": "",
435
+ "id": "752279",
436
+ "text": "Boost Region 2nd innings",
437
+ "type": "matchnote"
438
+ },
439
+ {
440
+ "dayNumber": "",
441
+ "id": "752285",
442
+ "text": "Boost Region: 50 runs in 11.5 overs (71 balls), Extras 0",
443
+ "type": "matchnote"
444
+ },
445
+ {
446
+ "date": "Thu, 9 Apr",
447
+ "dayNumber": "1",
448
+ "id": 212144,
449
+ "text": "day 1 - Speen Ghar Region 1st innings 70/1 (Usman Noori 31*, Abuzar Safi 5*, 16 ov)",
450
+ "type": "closeofplay"
451
+ }
452
+ ],
453
+ "situation": {
454
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/situation"
455
+ }
456
+ }
457
+
458
+
459
+
460
+
@@ -0,0 +1,86 @@
1
+ {
2
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474",
3
+ "id": "1529474",
4
+ "uid": "s:200~e:1529474",
5
+ "description": "3rd Match",
6
+ "shortDescription": "3rd Match, at Kandahar",
7
+ "date": "2026-04-09T05:30Z",
8
+ "endDate": "2026-04-12T23:59Z",
9
+ "leagues": [
10
+ {
11
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138",
12
+ "id": "19138",
13
+ "name": "Ahmad Shah Abdali 3-day Tournament"
14
+ }
15
+ ],
16
+ "venues": [
17
+ {
18
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/venues/1145410",
19
+ "id": "1145410",
20
+ "fullName": "Kandahar Cricket Stadium",
21
+ "address": {
22
+ "city": "Kandahar",
23
+ "country": "Afghanistan",
24
+ "summary": "Aino Maina, Kandahar, Afghanistan"
25
+ }
26
+ }
27
+ ],
28
+ "competitions": [
29
+ {
30
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474",
31
+ "id": "1529474",
32
+ "uid": "s:200~e:1529474~c:1529474",
33
+ "description": "3rd Match",
34
+ "shortDescription": "3rd Match, at Kandahar",
35
+ "date": "2026-04-09T05:30Z",
36
+ "endDate": "2026-04-12T23:59Z",
37
+ "note": "Boost Region lead by 20 runs with 8 wickets remaining",
38
+ "status": {
39
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/status"
40
+ },
41
+ "details": {
42
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/details"
43
+ },
44
+ "venue": {
45
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/venues/1145410",
46
+ "id": "1145410",
47
+ "fullName": "Kandahar Cricket Stadium",
48
+ "address": {
49
+ "summary": "Aino Maina, Kandahar, Afghanistan"
50
+ }
51
+ },
52
+ "competitors": [
53
+ {
54
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643",
55
+ "id": "789643",
56
+ "uid": "s:200~e:1529474~c:1529474~t:789643",
57
+ "type": "team",
58
+ "order": 1,
59
+ "homeAway": "home",
60
+ "winner": false,
61
+ "score": {
62
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789643/scores"
63
+ },
64
+ "team": {
65
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/events/1529474/teams/789643"
66
+ }
67
+ },
68
+ {
69
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647",
70
+ "id": "789647",
71
+ "uid": "s:200~e:1529474~c:1529474~t:789647",
72
+ "type": "team",
73
+ "order": 2,
74
+ "homeAway": "away",
75
+ "winner": false,
76
+ "score": {
77
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/leagues/19138/events/1529474/competitions/1529474/competitors/789647/scores"
78
+ },
79
+ "team": {
80
+ "$ref": "http://core.espnuk.org/v2/sports/cricket/events/1529474/teams/789647"
81
+ }
82
+ }
83
+ ]
84
+ }
85
+ ]
86
+ }