@taimos/radball-digital-api 0.0.29 → 0.0.31

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.
@@ -0,0 +1,611 @@
1
+ openapi: 3.0.1
2
+ info:
3
+ title: Cycleball EU
4
+ description: Radball Ergebnisdienst
5
+ contact:
6
+ name: Thorsten Höger
7
+ email: info@taimos.de
8
+ license:
9
+ name: free to use
10
+ version: "1.0"
11
+ servers:
12
+ - url: https://dev.cycleball.eu/api
13
+ tags:
14
+ - name: admin
15
+ - name: leagues
16
+ - name: info
17
+ paths:
18
+ '/leagues':
19
+ get:
20
+ tags:
21
+ - leagues
22
+ summary: return list of leagues
23
+ operationId: getLeagues
24
+ responses:
25
+ 200:
26
+ description: successful operation
27
+ content:
28
+ application/json:
29
+ schema:
30
+ type: array
31
+ items:
32
+ $ref: '#/components/schemas/League'
33
+ '/leagues/{oid}':
34
+ get:
35
+ tags:
36
+ - leagues
37
+ summary: get a league by its id
38
+ operationId: getLeague
39
+ parameters:
40
+ - name: oid
41
+ in: path
42
+ required: true
43
+ schema:
44
+ type: string
45
+ responses:
46
+ 200:
47
+ description: successful operation
48
+ content:
49
+ application/json:
50
+ schema:
51
+ $ref: '#/components/schemas/League'
52
+ '/leagues/{oid}/ranking':
53
+ get:
54
+ tags:
55
+ - leagues
56
+ summary: return ranking of the given league
57
+ operationId: getLeagueRanking
58
+ parameters:
59
+ - name: oid
60
+ in: path
61
+ required: true
62
+ schema:
63
+ type: string
64
+ - name: nonCompetitive
65
+ in: query
66
+ description: include non-competitive teams into ranking
67
+ schema:
68
+ type: boolean
69
+ default: false
70
+ responses:
71
+ 200:
72
+ description: successful operation
73
+ content:
74
+ application/json:
75
+ schema:
76
+ type: array
77
+ items:
78
+ $ref: '#/components/schemas/Ranking'
79
+ '/leagues/{oid}/teams':
80
+ get:
81
+ tags:
82
+ - leagues
83
+ summary: return list of teams for given league
84
+ operationId: getLeagueTeams
85
+ parameters:
86
+ - name: oid
87
+ in: path
88
+ required: true
89
+ schema:
90
+ type: string
91
+ responses:
92
+ 200:
93
+ description: successful operation
94
+ content:
95
+ application/json:
96
+ schema:
97
+ type: array
98
+ items:
99
+ $ref: '#/components/schemas/Team'
100
+ '/leagues/{oid}/matchdays':
101
+ get:
102
+ tags:
103
+ - leagues
104
+ summary: return list of matchdays for given league
105
+ operationId: getLeagueDays
106
+ parameters:
107
+ - name: oid
108
+ in: path
109
+ required: true
110
+ schema:
111
+ type: string
112
+ responses:
113
+ 200:
114
+ description: successful operation
115
+ content:
116
+ application/json:
117
+ schema:
118
+ type: array
119
+ items:
120
+ $ref: '#/components/schemas/SimpleMatchday'
121
+ post:
122
+ tags:
123
+ - leagues
124
+ summary: import matchday for given league via rbt-file
125
+ operationId: importMatchday
126
+ parameters:
127
+ - name: oid
128
+ in: path
129
+ required: true
130
+ schema:
131
+ type: string
132
+ requestBody:
133
+ content:
134
+ text/plain:
135
+ schema:
136
+ type: object
137
+ required: false
138
+ responses:
139
+ 201:
140
+ description: successful operation
141
+ content: {}
142
+ x-codegen-request-body-name: body
143
+ '/leagues/{oid}/matchdays/{dayId}':
144
+ get:
145
+ tags:
146
+ - leagues
147
+ summary: return a single matchday for given league
148
+ operationId: getLeagueDay
149
+ parameters:
150
+ - name: x-pin
151
+ in: header
152
+ - name: oid
153
+ in: path
154
+ required: true
155
+ schema:
156
+ type: string
157
+ - name: dayId
158
+ in: path
159
+ required: true
160
+ schema:
161
+ type: string
162
+ responses:
163
+ 200:
164
+ description: successful operation
165
+ content:
166
+ application/json:
167
+ schema:
168
+ $ref: '#/components/schemas/Matchday'
169
+ # '/leagues/{oid}/matchdays/{dayId}/print':
170
+ # get:
171
+ # tags:
172
+ # - leagues
173
+ # summary: return a single matchday for given league as PDF
174
+ # operationId: getLeagueDayPdf
175
+ # parameters:
176
+ # - name: oid
177
+ # in: path
178
+ # required: true
179
+ # schema:
180
+ # type: string
181
+ # - name: dayId
182
+ # in: path
183
+ # required: true
184
+ # schema:
185
+ # type: string
186
+ # responses:
187
+ # 200:
188
+ # description: successful operation
189
+ # content:
190
+ # application/pdf:
191
+ '/leagues/{oid}/matchdays/{dayId}/teams/{teamId}':
192
+ put:
193
+ tags:
194
+ - leagues
195
+ summary: update a single team of a matchday
196
+ operationId: updateMatchdayTeam
197
+ parameters:
198
+ - name: x-pin
199
+ in: header
200
+ - name: oid
201
+ in: path
202
+ required: true
203
+ schema:
204
+ type: string
205
+ - name: dayId
206
+ in: path
207
+ required: true
208
+ schema:
209
+ type: integer
210
+ - name: teamId
211
+ in: path
212
+ required: true
213
+ schema:
214
+ type: integer
215
+ requestBody:
216
+ content:
217
+ application/json:
218
+ schema:
219
+ $ref: '#/components/schemas/UpdateMatchdayTeam'
220
+ responses:
221
+ 204:
222
+ description: successful operation
223
+ 403:
224
+ description: forbidden due to invalid PIN
225
+ '/leagues/{oid}/matchdays/{dayId}/games/{gameNumber}':
226
+ put:
227
+ tags:
228
+ - leagues
229
+ summary: update a single game of a matchday
230
+ operationId: updateMatchdayGame
231
+ parameters:
232
+ - name: x-pin
233
+ in: header
234
+ - name: oid
235
+ in: path
236
+ required: true
237
+ schema:
238
+ type: string
239
+ - name: dayId
240
+ in: path
241
+ required: true
242
+ schema:
243
+ type: integer
244
+ - name: gameNumber
245
+ in: path
246
+ required: true
247
+ schema:
248
+ type: integer
249
+ requestBody:
250
+ content:
251
+ application/json:
252
+ schema:
253
+ $ref: '#/components/schemas/GameUpdateInfo'
254
+ responses:
255
+ 204:
256
+ description: successful operation
257
+ 403:
258
+ description: forbidden due to invalid PIN
259
+ '/teams':
260
+ get:
261
+ tags:
262
+ - info
263
+ summary: return list of teams
264
+ operationId: getTeams
265
+ responses:
266
+ 200:
267
+ description: successful operation
268
+ content:
269
+ application/json:
270
+ schema:
271
+ type: array
272
+ items:
273
+ $ref: '#/components/schemas/Team'
274
+ '/teams/{oid}':
275
+ get:
276
+ tags:
277
+ - info
278
+ summary: get team by its id
279
+ operationId: getTeamById
280
+ parameters:
281
+ - name: oid
282
+ in: path
283
+ required: true
284
+ schema:
285
+ type: string
286
+ responses:
287
+ 200:
288
+ description: successful operation
289
+ content:
290
+ application/json:
291
+ schema:
292
+ $ref: '#/components/schemas/Team'
293
+ /clubs:
294
+ get:
295
+ tags:
296
+ - info
297
+ summary: return list of clubs
298
+ operationId: getClubs
299
+ responses:
300
+ 200:
301
+ description: successful operation
302
+ content:
303
+ application/json:
304
+ schema:
305
+ type: array
306
+ items:
307
+ $ref: "#/components/schemas/Club"
308
+ /calendar:
309
+ get:
310
+ tags:
311
+ - info
312
+ summary: return the list of upcoming calender entries
313
+ operationId: getCalendar
314
+ responses:
315
+ 200:
316
+ description: successful operation
317
+ content:
318
+ application/json:
319
+ schema:
320
+ type: array
321
+ items:
322
+ $ref: "#/components/schemas/CalendarDate"
323
+ components:
324
+ securitySchemes:
325
+ OpenID:
326
+ type: openIdConnect
327
+ openIdConnectUrl: https://auth.cycleball.eu/.well-known/openid-configuration
328
+ schemas:
329
+ AddressWithUser:
330
+ type: object
331
+ required:
332
+ - name
333
+ - email
334
+ properties:
335
+ name:
336
+ type: string
337
+ street:
338
+ type: string
339
+ zip:
340
+ type: string
341
+ city:
342
+ type: string
343
+ phone:
344
+ type: string
345
+ email:
346
+ type: string
347
+ League:
348
+ type: object
349
+ required:
350
+ - shortName
351
+ - longName
352
+ - season
353
+ - manager
354
+ properties:
355
+ shortName:
356
+ type: string
357
+ longName:
358
+ type: string
359
+ season:
360
+ type: string
361
+ rules:
362
+ type: array
363
+ items:
364
+ type: string
365
+ hasNonCompetitive:
366
+ type: boolean
367
+ default: false
368
+ lastImport:
369
+ type: string
370
+ manager:
371
+ $ref: "#/components/schemas/AddressWithUser"
372
+ # rankStyles:
373
+ # type: array
374
+ # items:
375
+ # type: string
376
+ Team:
377
+ type: object
378
+ required:
379
+ - name
380
+ - clubName
381
+ - leagueShortName
382
+ - leagueLongName
383
+ - players
384
+ properties:
385
+ id:
386
+ type: string
387
+ name:
388
+ type: string
389
+ clubName:
390
+ type: string
391
+ leagueShortName:
392
+ type: string
393
+ leagueLongName:
394
+ type: string
395
+ nonCompetitive:
396
+ type: boolean
397
+ default: false
398
+ players:
399
+ type: array
400
+ items:
401
+ $ref: '#/components/schemas/TeamMember'
402
+ lastImport:
403
+ type: string
404
+ TeamMember:
405
+ type: object
406
+ required:
407
+ - name
408
+ properties:
409
+ name:
410
+ type: string
411
+ uciCode:
412
+ type: string
413
+ SimpleMatchday:
414
+ type: object
415
+ properties:
416
+ number:
417
+ type: integer
418
+ leagueShortName:
419
+ type: string
420
+ leagueLongName:
421
+ type: string
422
+ pin:
423
+ type: string
424
+ start:
425
+ type: string
426
+ format: date-time
427
+ end:
428
+ type: string
429
+ format: date-time
430
+ hostClub:
431
+ type: string
432
+ lastImport:
433
+ type: string
434
+ gym:
435
+ $ref: '#/components/schemas/Gym'
436
+ Gym:
437
+ type: object
438
+ properties:
439
+ name:
440
+ type: string
441
+ city:
442
+ type: string
443
+ zip:
444
+ type: string
445
+ street:
446
+ type: string
447
+ phone:
448
+ type: string
449
+ Matchday:
450
+ type: object
451
+ properties:
452
+ number:
453
+ type: integer
454
+ leagueShortName:
455
+ type: string
456
+ leagueLongName:
457
+ type: string
458
+ pin:
459
+ type: string
460
+ start:
461
+ type: string
462
+ format: date-time
463
+ end:
464
+ type: string
465
+ format: date-time
466
+ hostClub:
467
+ type: string
468
+ lastImport:
469
+ type: string
470
+ gym:
471
+ $ref: '#/components/schemas/Gym'
472
+ teams:
473
+ type: array
474
+ items:
475
+ $ref: '#/components/schemas/MatchdayTeam'
476
+ games:
477
+ type: array
478
+ items:
479
+ $ref: '#/components/schemas/Game'
480
+ comment:
481
+ type: string
482
+ Game:
483
+ type: object
484
+ properties:
485
+ number:
486
+ type: integer
487
+ teamA:
488
+ type: string
489
+ teamB:
490
+ type: string
491
+ goalsAHalf:
492
+ type: integer
493
+ goalsBHalf:
494
+ type: integer
495
+ goalsA:
496
+ type: integer
497
+ goalsB:
498
+ type: integer
499
+ bothLost:
500
+ type: boolean
501
+ default: false
502
+ state:
503
+ type: string
504
+ GameUpdateInfo:
505
+ type: object
506
+ properties:
507
+ goalsAHalf:
508
+ type: integer
509
+ goalsBHalf:
510
+ type: integer
511
+ goalsA:
512
+ type: integer
513
+ goalsB:
514
+ type: integer
515
+ bothLost:
516
+ type: boolean
517
+ default: false
518
+ state:
519
+ type: string
520
+ MatchdayTeam:
521
+ type: object
522
+ properties:
523
+ name:
524
+ type: string
525
+ present:
526
+ type: boolean
527
+ default: false
528
+ excused:
529
+ type: boolean
530
+ default: false
531
+ players:
532
+ type: array
533
+ items:
534
+ type: object
535
+ properties:
536
+ name:
537
+ type: string
538
+ uciCode:
539
+ type: string
540
+ regular:
541
+ type: boolean
542
+ UpdateMatchdayTeam:
543
+ type: object
544
+ required:
545
+ - present
546
+ - excused
547
+ - players
548
+ properties:
549
+ present:
550
+ type: boolean
551
+ excused:
552
+ type: boolean
553
+ players:
554
+ type: array
555
+ items:
556
+ type: object
557
+ properties:
558
+ name:
559
+ type: string
560
+ uciCode:
561
+ type: string
562
+ regular:
563
+ type: boolean
564
+ Ranking:
565
+ type: object
566
+ properties:
567
+ rank:
568
+ type: integer
569
+ format: int32
570
+ team:
571
+ type: string
572
+ games:
573
+ type: integer
574
+ format: int32
575
+ goalsPlus:
576
+ type: integer
577
+ format: int32
578
+ goalsMinus:
579
+ type: integer
580
+ format: int32
581
+ goalsDiff:
582
+ type: integer
583
+ format: int32
584
+ points:
585
+ type: integer
586
+ format: int32
587
+ style:
588
+ type: string
589
+ Club:
590
+ type: object
591
+ properties:
592
+ name:
593
+ type: string
594
+ city:
595
+ type: string
596
+ contact:
597
+ $ref: "#/components/schemas/AddressWithUser"
598
+ gyms:
599
+ type: array
600
+ items:
601
+ $ref: "#/components/schemas/Gym"
602
+ CalendarDate:
603
+ type: object
604
+ properties:
605
+ date:
606
+ type: string
607
+ format: date
608
+ days:
609
+ type: array
610
+ items:
611
+ $ref: "#/components/schemas/SimpleMatchday"
@@ -1 +1 @@
1
- window.navigationData = "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"
1
+ window.navigationData = "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"