@taimos/radball-digital-api 0.0.29 → 0.0.30
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"
|
|
@@ -0,0 +1,674 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
export interface paths {
|
|
6
|
+
"/leagues": {
|
|
7
|
+
parameters: {
|
|
8
|
+
query?: never;
|
|
9
|
+
header?: never;
|
|
10
|
+
path?: never;
|
|
11
|
+
cookie?: never;
|
|
12
|
+
};
|
|
13
|
+
/** return list of leagues */
|
|
14
|
+
get: operations["getLeagues"];
|
|
15
|
+
put?: never;
|
|
16
|
+
post?: never;
|
|
17
|
+
delete?: never;
|
|
18
|
+
options?: never;
|
|
19
|
+
head?: never;
|
|
20
|
+
patch?: never;
|
|
21
|
+
trace?: never;
|
|
22
|
+
};
|
|
23
|
+
"/leagues/{oid}": {
|
|
24
|
+
parameters: {
|
|
25
|
+
query?: never;
|
|
26
|
+
header?: never;
|
|
27
|
+
path?: never;
|
|
28
|
+
cookie?: never;
|
|
29
|
+
};
|
|
30
|
+
/** get a league by its id */
|
|
31
|
+
get: operations["getLeague"];
|
|
32
|
+
put?: never;
|
|
33
|
+
post?: never;
|
|
34
|
+
delete?: never;
|
|
35
|
+
options?: never;
|
|
36
|
+
head?: never;
|
|
37
|
+
patch?: never;
|
|
38
|
+
trace?: never;
|
|
39
|
+
};
|
|
40
|
+
"/leagues/{oid}/ranking": {
|
|
41
|
+
parameters: {
|
|
42
|
+
query?: never;
|
|
43
|
+
header?: never;
|
|
44
|
+
path?: never;
|
|
45
|
+
cookie?: never;
|
|
46
|
+
};
|
|
47
|
+
/** return ranking of the given league */
|
|
48
|
+
get: operations["getLeagueRanking"];
|
|
49
|
+
put?: never;
|
|
50
|
+
post?: never;
|
|
51
|
+
delete?: never;
|
|
52
|
+
options?: never;
|
|
53
|
+
head?: never;
|
|
54
|
+
patch?: never;
|
|
55
|
+
trace?: never;
|
|
56
|
+
};
|
|
57
|
+
"/leagues/{oid}/teams": {
|
|
58
|
+
parameters: {
|
|
59
|
+
query?: never;
|
|
60
|
+
header?: never;
|
|
61
|
+
path?: never;
|
|
62
|
+
cookie?: never;
|
|
63
|
+
};
|
|
64
|
+
/** return list of teams for given league */
|
|
65
|
+
get: operations["getLeagueTeams"];
|
|
66
|
+
put?: never;
|
|
67
|
+
post?: never;
|
|
68
|
+
delete?: never;
|
|
69
|
+
options?: never;
|
|
70
|
+
head?: never;
|
|
71
|
+
patch?: never;
|
|
72
|
+
trace?: never;
|
|
73
|
+
};
|
|
74
|
+
"/leagues/{oid}/matchdays": {
|
|
75
|
+
parameters: {
|
|
76
|
+
query?: never;
|
|
77
|
+
header?: never;
|
|
78
|
+
path?: never;
|
|
79
|
+
cookie?: never;
|
|
80
|
+
};
|
|
81
|
+
/** return list of matchdays for given league */
|
|
82
|
+
get: operations["getLeagueDays"];
|
|
83
|
+
put?: never;
|
|
84
|
+
/** import matchday for given league via rbt-file */
|
|
85
|
+
post: operations["importMatchday"];
|
|
86
|
+
delete?: never;
|
|
87
|
+
options?: never;
|
|
88
|
+
head?: never;
|
|
89
|
+
patch?: never;
|
|
90
|
+
trace?: never;
|
|
91
|
+
};
|
|
92
|
+
"/leagues/{oid}/matchdays/{dayId}": {
|
|
93
|
+
parameters: {
|
|
94
|
+
query?: never;
|
|
95
|
+
header?: never;
|
|
96
|
+
path?: never;
|
|
97
|
+
cookie?: never;
|
|
98
|
+
};
|
|
99
|
+
/** return a single matchday for given league */
|
|
100
|
+
get: operations["getLeagueDay"];
|
|
101
|
+
put?: never;
|
|
102
|
+
post?: never;
|
|
103
|
+
delete?: never;
|
|
104
|
+
options?: never;
|
|
105
|
+
head?: never;
|
|
106
|
+
patch?: never;
|
|
107
|
+
trace?: never;
|
|
108
|
+
};
|
|
109
|
+
"/leagues/{oid}/matchdays/{dayId}/teams/{teamId}": {
|
|
110
|
+
parameters: {
|
|
111
|
+
query?: never;
|
|
112
|
+
header?: never;
|
|
113
|
+
path?: never;
|
|
114
|
+
cookie?: never;
|
|
115
|
+
};
|
|
116
|
+
get?: never;
|
|
117
|
+
/** update a single team of a matchday */
|
|
118
|
+
put: operations["updateMatchdayTeam"];
|
|
119
|
+
post?: never;
|
|
120
|
+
delete?: never;
|
|
121
|
+
options?: never;
|
|
122
|
+
head?: never;
|
|
123
|
+
patch?: never;
|
|
124
|
+
trace?: never;
|
|
125
|
+
};
|
|
126
|
+
"/leagues/{oid}/matchdays/{dayId}/games/{gameNumber}": {
|
|
127
|
+
parameters: {
|
|
128
|
+
query?: never;
|
|
129
|
+
header?: never;
|
|
130
|
+
path?: never;
|
|
131
|
+
cookie?: never;
|
|
132
|
+
};
|
|
133
|
+
get?: never;
|
|
134
|
+
/** update a single game of a matchday */
|
|
135
|
+
put: operations["updateMatchdayGame"];
|
|
136
|
+
post?: never;
|
|
137
|
+
delete?: never;
|
|
138
|
+
options?: never;
|
|
139
|
+
head?: never;
|
|
140
|
+
patch?: never;
|
|
141
|
+
trace?: never;
|
|
142
|
+
};
|
|
143
|
+
"/teams": {
|
|
144
|
+
parameters: {
|
|
145
|
+
query?: never;
|
|
146
|
+
header?: never;
|
|
147
|
+
path?: never;
|
|
148
|
+
cookie?: never;
|
|
149
|
+
};
|
|
150
|
+
/** return list of teams */
|
|
151
|
+
get: operations["getTeams"];
|
|
152
|
+
put?: never;
|
|
153
|
+
post?: never;
|
|
154
|
+
delete?: never;
|
|
155
|
+
options?: never;
|
|
156
|
+
head?: never;
|
|
157
|
+
patch?: never;
|
|
158
|
+
trace?: never;
|
|
159
|
+
};
|
|
160
|
+
"/teams/{oid}": {
|
|
161
|
+
parameters: {
|
|
162
|
+
query?: never;
|
|
163
|
+
header?: never;
|
|
164
|
+
path?: never;
|
|
165
|
+
cookie?: never;
|
|
166
|
+
};
|
|
167
|
+
/** get team by its id */
|
|
168
|
+
get: operations["getTeamById"];
|
|
169
|
+
put?: never;
|
|
170
|
+
post?: never;
|
|
171
|
+
delete?: never;
|
|
172
|
+
options?: never;
|
|
173
|
+
head?: never;
|
|
174
|
+
patch?: never;
|
|
175
|
+
trace?: never;
|
|
176
|
+
};
|
|
177
|
+
"/clubs": {
|
|
178
|
+
parameters: {
|
|
179
|
+
query?: never;
|
|
180
|
+
header?: never;
|
|
181
|
+
path?: never;
|
|
182
|
+
cookie?: never;
|
|
183
|
+
};
|
|
184
|
+
/** return list of clubs */
|
|
185
|
+
get: operations["getClubs"];
|
|
186
|
+
put?: never;
|
|
187
|
+
post?: never;
|
|
188
|
+
delete?: never;
|
|
189
|
+
options?: never;
|
|
190
|
+
head?: never;
|
|
191
|
+
patch?: never;
|
|
192
|
+
trace?: never;
|
|
193
|
+
};
|
|
194
|
+
"/calendar": {
|
|
195
|
+
parameters: {
|
|
196
|
+
query?: never;
|
|
197
|
+
header?: never;
|
|
198
|
+
path?: never;
|
|
199
|
+
cookie?: never;
|
|
200
|
+
};
|
|
201
|
+
/** return the list of upcoming calender entries */
|
|
202
|
+
get: operations["getCalendar"];
|
|
203
|
+
put?: never;
|
|
204
|
+
post?: never;
|
|
205
|
+
delete?: never;
|
|
206
|
+
options?: never;
|
|
207
|
+
head?: never;
|
|
208
|
+
patch?: never;
|
|
209
|
+
trace?: never;
|
|
210
|
+
};
|
|
211
|
+
}
|
|
212
|
+
export type webhooks = Record<string, never>;
|
|
213
|
+
export interface components {
|
|
214
|
+
schemas: {
|
|
215
|
+
AddressWithUser: {
|
|
216
|
+
name: string;
|
|
217
|
+
street?: string;
|
|
218
|
+
zip?: string;
|
|
219
|
+
city?: string;
|
|
220
|
+
phone?: string;
|
|
221
|
+
email: string;
|
|
222
|
+
};
|
|
223
|
+
League: {
|
|
224
|
+
shortName: string;
|
|
225
|
+
longName: string;
|
|
226
|
+
season: string;
|
|
227
|
+
rules?: string[];
|
|
228
|
+
/** @default false */
|
|
229
|
+
hasNonCompetitive: boolean;
|
|
230
|
+
lastImport?: string;
|
|
231
|
+
manager: components["schemas"]["AddressWithUser"];
|
|
232
|
+
};
|
|
233
|
+
Team: {
|
|
234
|
+
id?: string;
|
|
235
|
+
name: string;
|
|
236
|
+
clubName: string;
|
|
237
|
+
leagueShortName: string;
|
|
238
|
+
leagueLongName: string;
|
|
239
|
+
/** @default false */
|
|
240
|
+
nonCompetitive: boolean;
|
|
241
|
+
players: components["schemas"]["TeamMember"][];
|
|
242
|
+
lastImport?: string;
|
|
243
|
+
};
|
|
244
|
+
TeamMember: {
|
|
245
|
+
name: string;
|
|
246
|
+
uciCode?: string;
|
|
247
|
+
};
|
|
248
|
+
SimpleMatchday: {
|
|
249
|
+
number?: number;
|
|
250
|
+
leagueShortName?: string;
|
|
251
|
+
leagueLongName?: string;
|
|
252
|
+
pin?: string;
|
|
253
|
+
/** Format: date-time */
|
|
254
|
+
start?: string;
|
|
255
|
+
/** Format: date-time */
|
|
256
|
+
end?: string;
|
|
257
|
+
hostClub?: string;
|
|
258
|
+
lastImport?: string;
|
|
259
|
+
gym?: components["schemas"]["Gym"];
|
|
260
|
+
};
|
|
261
|
+
Gym: {
|
|
262
|
+
name?: string;
|
|
263
|
+
city?: string;
|
|
264
|
+
zip?: string;
|
|
265
|
+
street?: string;
|
|
266
|
+
phone?: string;
|
|
267
|
+
};
|
|
268
|
+
Matchday: {
|
|
269
|
+
number?: number;
|
|
270
|
+
leagueShortName?: string;
|
|
271
|
+
leagueLongName?: string;
|
|
272
|
+
pin?: string;
|
|
273
|
+
/** Format: date-time */
|
|
274
|
+
start?: string;
|
|
275
|
+
/** Format: date-time */
|
|
276
|
+
end?: string;
|
|
277
|
+
hostClub?: string;
|
|
278
|
+
lastImport?: string;
|
|
279
|
+
gym?: components["schemas"]["Gym"];
|
|
280
|
+
teams?: components["schemas"]["MatchdayTeam"][];
|
|
281
|
+
games?: components["schemas"]["Game"][];
|
|
282
|
+
comment?: string;
|
|
283
|
+
};
|
|
284
|
+
Game: {
|
|
285
|
+
number?: number;
|
|
286
|
+
teamA?: string;
|
|
287
|
+
teamB?: string;
|
|
288
|
+
goalsAHalf?: number;
|
|
289
|
+
goalsBHalf?: number;
|
|
290
|
+
goalsA?: number;
|
|
291
|
+
goalsB?: number;
|
|
292
|
+
/** @default false */
|
|
293
|
+
bothLost: boolean;
|
|
294
|
+
state?: string;
|
|
295
|
+
};
|
|
296
|
+
GameUpdateInfo: {
|
|
297
|
+
goalsAHalf?: number;
|
|
298
|
+
goalsBHalf?: number;
|
|
299
|
+
goalsA?: number;
|
|
300
|
+
goalsB?: number;
|
|
301
|
+
/** @default false */
|
|
302
|
+
bothLost: boolean;
|
|
303
|
+
state?: string;
|
|
304
|
+
};
|
|
305
|
+
MatchdayTeam: {
|
|
306
|
+
name?: string;
|
|
307
|
+
/** @default false */
|
|
308
|
+
present: boolean;
|
|
309
|
+
/** @default false */
|
|
310
|
+
excused: boolean;
|
|
311
|
+
players?: {
|
|
312
|
+
name?: string;
|
|
313
|
+
uciCode?: string;
|
|
314
|
+
regular?: boolean;
|
|
315
|
+
}[];
|
|
316
|
+
};
|
|
317
|
+
UpdateMatchdayTeam: {
|
|
318
|
+
present: boolean;
|
|
319
|
+
excused: boolean;
|
|
320
|
+
players: {
|
|
321
|
+
name?: string;
|
|
322
|
+
uciCode?: string;
|
|
323
|
+
regular?: boolean;
|
|
324
|
+
}[];
|
|
325
|
+
};
|
|
326
|
+
Ranking: {
|
|
327
|
+
/** Format: int32 */
|
|
328
|
+
rank?: number;
|
|
329
|
+
team?: string;
|
|
330
|
+
/** Format: int32 */
|
|
331
|
+
games?: number;
|
|
332
|
+
/** Format: int32 */
|
|
333
|
+
goalsPlus?: number;
|
|
334
|
+
/** Format: int32 */
|
|
335
|
+
goalsMinus?: number;
|
|
336
|
+
/** Format: int32 */
|
|
337
|
+
goalsDiff?: number;
|
|
338
|
+
/** Format: int32 */
|
|
339
|
+
points?: number;
|
|
340
|
+
style?: string;
|
|
341
|
+
};
|
|
342
|
+
Club: {
|
|
343
|
+
name?: string;
|
|
344
|
+
city?: string;
|
|
345
|
+
contact?: components["schemas"]["AddressWithUser"];
|
|
346
|
+
gyms?: components["schemas"]["Gym"][];
|
|
347
|
+
};
|
|
348
|
+
CalendarDate: {
|
|
349
|
+
/** Format: date */
|
|
350
|
+
date?: string;
|
|
351
|
+
days?: components["schemas"]["SimpleMatchday"][];
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
responses: never;
|
|
355
|
+
parameters: never;
|
|
356
|
+
requestBodies: never;
|
|
357
|
+
headers: never;
|
|
358
|
+
pathItems: never;
|
|
359
|
+
}
|
|
360
|
+
export type $defs = Record<string, never>;
|
|
361
|
+
export interface operations {
|
|
362
|
+
getLeagues: {
|
|
363
|
+
parameters: {
|
|
364
|
+
query?: never;
|
|
365
|
+
header?: never;
|
|
366
|
+
path?: never;
|
|
367
|
+
cookie?: never;
|
|
368
|
+
};
|
|
369
|
+
requestBody?: never;
|
|
370
|
+
responses: {
|
|
371
|
+
/** @description successful operation */
|
|
372
|
+
200: {
|
|
373
|
+
headers: {
|
|
374
|
+
[name: string]: unknown;
|
|
375
|
+
};
|
|
376
|
+
content: {
|
|
377
|
+
"application/json": components["schemas"]["League"][];
|
|
378
|
+
};
|
|
379
|
+
};
|
|
380
|
+
};
|
|
381
|
+
};
|
|
382
|
+
getLeague: {
|
|
383
|
+
parameters: {
|
|
384
|
+
query?: never;
|
|
385
|
+
header?: never;
|
|
386
|
+
path: {
|
|
387
|
+
oid: string;
|
|
388
|
+
};
|
|
389
|
+
cookie?: never;
|
|
390
|
+
};
|
|
391
|
+
requestBody?: never;
|
|
392
|
+
responses: {
|
|
393
|
+
/** @description successful operation */
|
|
394
|
+
200: {
|
|
395
|
+
headers: {
|
|
396
|
+
[name: string]: unknown;
|
|
397
|
+
};
|
|
398
|
+
content: {
|
|
399
|
+
"application/json": components["schemas"]["League"];
|
|
400
|
+
};
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
getLeagueRanking: {
|
|
405
|
+
parameters: {
|
|
406
|
+
query?: {
|
|
407
|
+
/** @description include non-competitive teams into ranking */
|
|
408
|
+
nonCompetitive?: boolean;
|
|
409
|
+
};
|
|
410
|
+
header?: never;
|
|
411
|
+
path: {
|
|
412
|
+
oid: string;
|
|
413
|
+
};
|
|
414
|
+
cookie?: never;
|
|
415
|
+
};
|
|
416
|
+
requestBody?: never;
|
|
417
|
+
responses: {
|
|
418
|
+
/** @description successful operation */
|
|
419
|
+
200: {
|
|
420
|
+
headers: {
|
|
421
|
+
[name: string]: unknown;
|
|
422
|
+
};
|
|
423
|
+
content: {
|
|
424
|
+
"application/json": components["schemas"]["Ranking"][];
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
getLeagueTeams: {
|
|
430
|
+
parameters: {
|
|
431
|
+
query?: never;
|
|
432
|
+
header?: never;
|
|
433
|
+
path: {
|
|
434
|
+
oid: string;
|
|
435
|
+
};
|
|
436
|
+
cookie?: never;
|
|
437
|
+
};
|
|
438
|
+
requestBody?: never;
|
|
439
|
+
responses: {
|
|
440
|
+
/** @description successful operation */
|
|
441
|
+
200: {
|
|
442
|
+
headers: {
|
|
443
|
+
[name: string]: unknown;
|
|
444
|
+
};
|
|
445
|
+
content: {
|
|
446
|
+
"application/json": components["schemas"]["Team"][];
|
|
447
|
+
};
|
|
448
|
+
};
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
getLeagueDays: {
|
|
452
|
+
parameters: {
|
|
453
|
+
query?: never;
|
|
454
|
+
header?: never;
|
|
455
|
+
path: {
|
|
456
|
+
oid: string;
|
|
457
|
+
};
|
|
458
|
+
cookie?: never;
|
|
459
|
+
};
|
|
460
|
+
requestBody?: never;
|
|
461
|
+
responses: {
|
|
462
|
+
/** @description successful operation */
|
|
463
|
+
200: {
|
|
464
|
+
headers: {
|
|
465
|
+
[name: string]: unknown;
|
|
466
|
+
};
|
|
467
|
+
content: {
|
|
468
|
+
"application/json": components["schemas"]["SimpleMatchday"][];
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
};
|
|
473
|
+
importMatchday: {
|
|
474
|
+
parameters: {
|
|
475
|
+
query?: never;
|
|
476
|
+
header?: never;
|
|
477
|
+
path: {
|
|
478
|
+
oid: string;
|
|
479
|
+
};
|
|
480
|
+
cookie?: never;
|
|
481
|
+
};
|
|
482
|
+
requestBody?: {
|
|
483
|
+
content: {
|
|
484
|
+
"text/plain": Record<string, never>;
|
|
485
|
+
};
|
|
486
|
+
};
|
|
487
|
+
responses: {
|
|
488
|
+
/** @description successful operation */
|
|
489
|
+
201: {
|
|
490
|
+
headers: {
|
|
491
|
+
[name: string]: unknown;
|
|
492
|
+
};
|
|
493
|
+
content?: never;
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
getLeagueDay: {
|
|
498
|
+
parameters: {
|
|
499
|
+
query?: never;
|
|
500
|
+
header?: {
|
|
501
|
+
"x-pin"?: string;
|
|
502
|
+
};
|
|
503
|
+
path: {
|
|
504
|
+
oid: string;
|
|
505
|
+
dayId: string;
|
|
506
|
+
};
|
|
507
|
+
cookie?: never;
|
|
508
|
+
};
|
|
509
|
+
requestBody?: never;
|
|
510
|
+
responses: {
|
|
511
|
+
/** @description successful operation */
|
|
512
|
+
200: {
|
|
513
|
+
headers: {
|
|
514
|
+
[name: string]: unknown;
|
|
515
|
+
};
|
|
516
|
+
content: {
|
|
517
|
+
"application/json": components["schemas"]["Matchday"];
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
updateMatchdayTeam: {
|
|
523
|
+
parameters: {
|
|
524
|
+
query?: never;
|
|
525
|
+
header?: {
|
|
526
|
+
"x-pin"?: string;
|
|
527
|
+
};
|
|
528
|
+
path: {
|
|
529
|
+
oid: string;
|
|
530
|
+
dayId: number;
|
|
531
|
+
teamId: number;
|
|
532
|
+
};
|
|
533
|
+
cookie?: never;
|
|
534
|
+
};
|
|
535
|
+
requestBody?: {
|
|
536
|
+
content: {
|
|
537
|
+
"application/json": components["schemas"]["UpdateMatchdayTeam"];
|
|
538
|
+
};
|
|
539
|
+
};
|
|
540
|
+
responses: {
|
|
541
|
+
/** @description successful operation */
|
|
542
|
+
204: {
|
|
543
|
+
headers: {
|
|
544
|
+
[name: string]: unknown;
|
|
545
|
+
};
|
|
546
|
+
content?: never;
|
|
547
|
+
};
|
|
548
|
+
/** @description forbidden due to invalid PIN */
|
|
549
|
+
403: {
|
|
550
|
+
headers: {
|
|
551
|
+
[name: string]: unknown;
|
|
552
|
+
};
|
|
553
|
+
content?: never;
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
updateMatchdayGame: {
|
|
558
|
+
parameters: {
|
|
559
|
+
query?: never;
|
|
560
|
+
header?: {
|
|
561
|
+
"x-pin"?: string;
|
|
562
|
+
};
|
|
563
|
+
path: {
|
|
564
|
+
oid: string;
|
|
565
|
+
dayId: number;
|
|
566
|
+
gameNumber: number;
|
|
567
|
+
};
|
|
568
|
+
cookie?: never;
|
|
569
|
+
};
|
|
570
|
+
requestBody?: {
|
|
571
|
+
content: {
|
|
572
|
+
"application/json": components["schemas"]["GameUpdateInfo"];
|
|
573
|
+
};
|
|
574
|
+
};
|
|
575
|
+
responses: {
|
|
576
|
+
/** @description successful operation */
|
|
577
|
+
204: {
|
|
578
|
+
headers: {
|
|
579
|
+
[name: string]: unknown;
|
|
580
|
+
};
|
|
581
|
+
content?: never;
|
|
582
|
+
};
|
|
583
|
+
/** @description forbidden due to invalid PIN */
|
|
584
|
+
403: {
|
|
585
|
+
headers: {
|
|
586
|
+
[name: string]: unknown;
|
|
587
|
+
};
|
|
588
|
+
content?: never;
|
|
589
|
+
};
|
|
590
|
+
};
|
|
591
|
+
};
|
|
592
|
+
getTeams: {
|
|
593
|
+
parameters: {
|
|
594
|
+
query?: never;
|
|
595
|
+
header?: never;
|
|
596
|
+
path?: never;
|
|
597
|
+
cookie?: never;
|
|
598
|
+
};
|
|
599
|
+
requestBody?: never;
|
|
600
|
+
responses: {
|
|
601
|
+
/** @description successful operation */
|
|
602
|
+
200: {
|
|
603
|
+
headers: {
|
|
604
|
+
[name: string]: unknown;
|
|
605
|
+
};
|
|
606
|
+
content: {
|
|
607
|
+
"application/json": components["schemas"]["Team"][];
|
|
608
|
+
};
|
|
609
|
+
};
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
getTeamById: {
|
|
613
|
+
parameters: {
|
|
614
|
+
query?: never;
|
|
615
|
+
header?: never;
|
|
616
|
+
path: {
|
|
617
|
+
oid: string;
|
|
618
|
+
};
|
|
619
|
+
cookie?: never;
|
|
620
|
+
};
|
|
621
|
+
requestBody?: never;
|
|
622
|
+
responses: {
|
|
623
|
+
/** @description successful operation */
|
|
624
|
+
200: {
|
|
625
|
+
headers: {
|
|
626
|
+
[name: string]: unknown;
|
|
627
|
+
};
|
|
628
|
+
content: {
|
|
629
|
+
"application/json": components["schemas"]["Team"];
|
|
630
|
+
};
|
|
631
|
+
};
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
getClubs: {
|
|
635
|
+
parameters: {
|
|
636
|
+
query?: never;
|
|
637
|
+
header?: never;
|
|
638
|
+
path?: never;
|
|
639
|
+
cookie?: never;
|
|
640
|
+
};
|
|
641
|
+
requestBody?: never;
|
|
642
|
+
responses: {
|
|
643
|
+
/** @description successful operation */
|
|
644
|
+
200: {
|
|
645
|
+
headers: {
|
|
646
|
+
[name: string]: unknown;
|
|
647
|
+
};
|
|
648
|
+
content: {
|
|
649
|
+
"application/json": components["schemas"]["Club"][];
|
|
650
|
+
};
|
|
651
|
+
};
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
getCalendar: {
|
|
655
|
+
parameters: {
|
|
656
|
+
query?: never;
|
|
657
|
+
header?: never;
|
|
658
|
+
path?: never;
|
|
659
|
+
cookie?: never;
|
|
660
|
+
};
|
|
661
|
+
requestBody?: never;
|
|
662
|
+
responses: {
|
|
663
|
+
/** @description successful operation */
|
|
664
|
+
200: {
|
|
665
|
+
headers: {
|
|
666
|
+
[name: string]: unknown;
|
|
667
|
+
};
|
|
668
|
+
content: {
|
|
669
|
+
"application/json": components["schemas"]["CalendarDate"][];
|
|
670
|
+
};
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
};
|
|
674
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by openapi-typescript.
|
|
4
|
+
* Do not make direct changes to the file.
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzdC5jeWNsZWJhbGwubW9kZWwuZ2VuZXJhdGVkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2dlbmVyYXRlZC9yZXN0LmN5Y2xlYmFsbC5tb2RlbC5nZW5lcmF0ZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBOzs7R0FHRyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogVGhpcyBmaWxlIHdhcyBhdXRvLWdlbmVyYXRlZCBieSBvcGVuYXBpLXR5cGVzY3JpcHQuXG4gKiBEbyBub3QgbWFrZSBkaXJlY3QgY2hhbmdlcyB0byB0aGUgZmlsZS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIHBhdGhzIHtcbiAgICBcIi9sZWFndWVzXCI6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiBuZXZlcjtcbiAgICAgICAgICAgIGhlYWRlcj86IG5ldmVyO1xuICAgICAgICAgICAgcGF0aD86IG5ldmVyO1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIC8qKiByZXR1cm4gbGlzdCBvZiBsZWFndWVzICovXG4gICAgICAgIGdldDogb3BlcmF0aW9uc1tcImdldExlYWd1ZXNcIl07XG4gICAgICAgIHB1dD86IG5ldmVyO1xuICAgICAgICBwb3N0PzogbmV2ZXI7XG4gICAgICAgIGRlbGV0ZT86IG5ldmVyO1xuICAgICAgICBvcHRpb25zPzogbmV2ZXI7XG4gICAgICAgIGhlYWQ/OiBuZXZlcjtcbiAgICAgICAgcGF0Y2g/OiBuZXZlcjtcbiAgICAgICAgdHJhY2U/OiBuZXZlcjtcbiAgICB9O1xuICAgIFwiL2xlYWd1ZXMve29pZH1cIjoge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoPzogbmV2ZXI7XG4gICAgICAgICAgICBjb29raWU/OiBuZXZlcjtcbiAgICAgICAgfTtcbiAgICAgICAgLyoqIGdldCBhIGxlYWd1ZSBieSBpdHMgaWQgKi9cbiAgICAgICAgZ2V0OiBvcGVyYXRpb25zW1wiZ2V0TGVhZ3VlXCJdO1xuICAgICAgICBwdXQ/OiBuZXZlcjtcbiAgICAgICAgcG9zdD86IG5ldmVyO1xuICAgICAgICBkZWxldGU/OiBuZXZlcjtcbiAgICAgICAgb3B0aW9ucz86IG5ldmVyO1xuICAgICAgICBoZWFkPzogbmV2ZXI7XG4gICAgICAgIHBhdGNoPzogbmV2ZXI7XG4gICAgICAgIHRyYWNlPzogbmV2ZXI7XG4gICAgfTtcbiAgICBcIi9sZWFndWVzL3tvaWR9L3JhbmtpbmdcIjoge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoPzogbmV2ZXI7XG4gICAgICAgICAgICBjb29raWU/OiBuZXZlcjtcbiAgICAgICAgfTtcbiAgICAgICAgLyoqIHJldHVybiByYW5raW5nIG9mIHRoZSBnaXZlbiBsZWFndWUgKi9cbiAgICAgICAgZ2V0OiBvcGVyYXRpb25zW1wiZ2V0TGVhZ3VlUmFua2luZ1wiXTtcbiAgICAgICAgcHV0PzogbmV2ZXI7XG4gICAgICAgIHBvc3Q/OiBuZXZlcjtcbiAgICAgICAgZGVsZXRlPzogbmV2ZXI7XG4gICAgICAgIG9wdGlvbnM/OiBuZXZlcjtcbiAgICAgICAgaGVhZD86IG5ldmVyO1xuICAgICAgICBwYXRjaD86IG5ldmVyO1xuICAgICAgICB0cmFjZT86IG5ldmVyO1xuICAgIH07XG4gICAgXCIvbGVhZ3Vlcy97b2lkfS90ZWFtc1wiOiB7XG4gICAgICAgIHBhcmFtZXRlcnM6IHtcbiAgICAgICAgICAgIHF1ZXJ5PzogbmV2ZXI7XG4gICAgICAgICAgICBoZWFkZXI/OiBuZXZlcjtcbiAgICAgICAgICAgIHBhdGg/OiBuZXZlcjtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICAvKiogcmV0dXJuIGxpc3Qgb2YgdGVhbXMgZm9yIGdpdmVuIGxlYWd1ZSAqL1xuICAgICAgICBnZXQ6IG9wZXJhdGlvbnNbXCJnZXRMZWFndWVUZWFtc1wiXTtcbiAgICAgICAgcHV0PzogbmV2ZXI7XG4gICAgICAgIHBvc3Q/OiBuZXZlcjtcbiAgICAgICAgZGVsZXRlPzogbmV2ZXI7XG4gICAgICAgIG9wdGlvbnM/OiBuZXZlcjtcbiAgICAgICAgaGVhZD86IG5ldmVyO1xuICAgICAgICBwYXRjaD86IG5ldmVyO1xuICAgICAgICB0cmFjZT86IG5ldmVyO1xuICAgIH07XG4gICAgXCIvbGVhZ3Vlcy97b2lkfS9tYXRjaGRheXNcIjoge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoPzogbmV2ZXI7XG4gICAgICAgICAgICBjb29raWU/OiBuZXZlcjtcbiAgICAgICAgfTtcbiAgICAgICAgLyoqIHJldHVybiBsaXN0IG9mIG1hdGNoZGF5cyBmb3IgZ2l2ZW4gbGVhZ3VlICovXG4gICAgICAgIGdldDogb3BlcmF0aW9uc1tcImdldExlYWd1ZURheXNcIl07XG4gICAgICAgIHB1dD86IG5ldmVyO1xuICAgICAgICAvKiogaW1wb3J0IG1hdGNoZGF5IGZvciBnaXZlbiBsZWFndWUgdmlhIHJidC1maWxlICovXG4gICAgICAgIHBvc3Q6IG9wZXJhdGlvbnNbXCJpbXBvcnRNYXRjaGRheVwiXTtcbiAgICAgICAgZGVsZXRlPzogbmV2ZXI7XG4gICAgICAgIG9wdGlvbnM/OiBuZXZlcjtcbiAgICAgICAgaGVhZD86IG5ldmVyO1xuICAgICAgICBwYXRjaD86IG5ldmVyO1xuICAgICAgICB0cmFjZT86IG5ldmVyO1xuICAgIH07XG4gICAgXCIvbGVhZ3Vlcy97b2lkfS9tYXRjaGRheXMve2RheUlkfVwiOiB7XG4gICAgICAgIHBhcmFtZXRlcnM6IHtcbiAgICAgICAgICAgIHF1ZXJ5PzogbmV2ZXI7XG4gICAgICAgICAgICBoZWFkZXI/OiBuZXZlcjtcbiAgICAgICAgICAgIHBhdGg/OiBuZXZlcjtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICAvKiogcmV0dXJuIGEgc2luZ2xlIG1hdGNoZGF5IGZvciBnaXZlbiBsZWFndWUgKi9cbiAgICAgICAgZ2V0OiBvcGVyYXRpb25zW1wiZ2V0TGVhZ3VlRGF5XCJdO1xuICAgICAgICBwdXQ/OiBuZXZlcjtcbiAgICAgICAgcG9zdD86IG5ldmVyO1xuICAgICAgICBkZWxldGU/OiBuZXZlcjtcbiAgICAgICAgb3B0aW9ucz86IG5ldmVyO1xuICAgICAgICBoZWFkPzogbmV2ZXI7XG4gICAgICAgIHBhdGNoPzogbmV2ZXI7XG4gICAgICAgIHRyYWNlPzogbmV2ZXI7XG4gICAgfTtcbiAgICBcIi9sZWFndWVzL3tvaWR9L21hdGNoZGF5cy97ZGF5SWR9L3RlYW1zL3t0ZWFtSWR9XCI6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiBuZXZlcjtcbiAgICAgICAgICAgIGhlYWRlcj86IG5ldmVyO1xuICAgICAgICAgICAgcGF0aD86IG5ldmVyO1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIGdldD86IG5ldmVyO1xuICAgICAgICAvKiogdXBkYXRlIGEgc2luZ2xlIHRlYW0gb2YgYSBtYXRjaGRheSAqL1xuICAgICAgICBwdXQ6IG9wZXJhdGlvbnNbXCJ1cGRhdGVNYXRjaGRheVRlYW1cIl07XG4gICAgICAgIHBvc3Q/OiBuZXZlcjtcbiAgICAgICAgZGVsZXRlPzogbmV2ZXI7XG4gICAgICAgIG9wdGlvbnM/OiBuZXZlcjtcbiAgICAgICAgaGVhZD86IG5ldmVyO1xuICAgICAgICBwYXRjaD86IG5ldmVyO1xuICAgICAgICB0cmFjZT86IG5ldmVyO1xuICAgIH07XG4gICAgXCIvbGVhZ3Vlcy97b2lkfS9tYXRjaGRheXMve2RheUlkfS9nYW1lcy97Z2FtZU51bWJlcn1cIjoge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoPzogbmV2ZXI7XG4gICAgICAgICAgICBjb29raWU/OiBuZXZlcjtcbiAgICAgICAgfTtcbiAgICAgICAgZ2V0PzogbmV2ZXI7XG4gICAgICAgIC8qKiB1cGRhdGUgYSBzaW5nbGUgZ2FtZSBvZiBhIG1hdGNoZGF5ICovXG4gICAgICAgIHB1dDogb3BlcmF0aW9uc1tcInVwZGF0ZU1hdGNoZGF5R2FtZVwiXTtcbiAgICAgICAgcG9zdD86IG5ldmVyO1xuICAgICAgICBkZWxldGU/OiBuZXZlcjtcbiAgICAgICAgb3B0aW9ucz86IG5ldmVyO1xuICAgICAgICBoZWFkPzogbmV2ZXI7XG4gICAgICAgIHBhdGNoPzogbmV2ZXI7XG4gICAgICAgIHRyYWNlPzogbmV2ZXI7XG4gICAgfTtcbiAgICBcIi90ZWFtc1wiOiB7XG4gICAgICAgIHBhcmFtZXRlcnM6IHtcbiAgICAgICAgICAgIHF1ZXJ5PzogbmV2ZXI7XG4gICAgICAgICAgICBoZWFkZXI/OiBuZXZlcjtcbiAgICAgICAgICAgIHBhdGg/OiBuZXZlcjtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICAvKiogcmV0dXJuIGxpc3Qgb2YgdGVhbXMgKi9cbiAgICAgICAgZ2V0OiBvcGVyYXRpb25zW1wiZ2V0VGVhbXNcIl07XG4gICAgICAgIHB1dD86IG5ldmVyO1xuICAgICAgICBwb3N0PzogbmV2ZXI7XG4gICAgICAgIGRlbGV0ZT86IG5ldmVyO1xuICAgICAgICBvcHRpb25zPzogbmV2ZXI7XG4gICAgICAgIGhlYWQ/OiBuZXZlcjtcbiAgICAgICAgcGF0Y2g/OiBuZXZlcjtcbiAgICAgICAgdHJhY2U/OiBuZXZlcjtcbiAgICB9O1xuICAgIFwiL3RlYW1zL3tvaWR9XCI6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiBuZXZlcjtcbiAgICAgICAgICAgIGhlYWRlcj86IG5ldmVyO1xuICAgICAgICAgICAgcGF0aD86IG5ldmVyO1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIC8qKiBnZXQgdGVhbSBieSBpdHMgaWQgKi9cbiAgICAgICAgZ2V0OiBvcGVyYXRpb25zW1wiZ2V0VGVhbUJ5SWRcIl07XG4gICAgICAgIHB1dD86IG5ldmVyO1xuICAgICAgICBwb3N0PzogbmV2ZXI7XG4gICAgICAgIGRlbGV0ZT86IG5ldmVyO1xuICAgICAgICBvcHRpb25zPzogbmV2ZXI7XG4gICAgICAgIGhlYWQ/OiBuZXZlcjtcbiAgICAgICAgcGF0Y2g/OiBuZXZlcjtcbiAgICAgICAgdHJhY2U/OiBuZXZlcjtcbiAgICB9O1xuICAgIFwiL2NsdWJzXCI6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiBuZXZlcjtcbiAgICAgICAgICAgIGhlYWRlcj86IG5ldmVyO1xuICAgICAgICAgICAgcGF0aD86IG5ldmVyO1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIC8qKiByZXR1cm4gbGlzdCBvZiBjbHVicyAqL1xuICAgICAgICBnZXQ6IG9wZXJhdGlvbnNbXCJnZXRDbHVic1wiXTtcbiAgICAgICAgcHV0PzogbmV2ZXI7XG4gICAgICAgIHBvc3Q/OiBuZXZlcjtcbiAgICAgICAgZGVsZXRlPzogbmV2ZXI7XG4gICAgICAgIG9wdGlvbnM/OiBuZXZlcjtcbiAgICAgICAgaGVhZD86IG5ldmVyO1xuICAgICAgICBwYXRjaD86IG5ldmVyO1xuICAgICAgICB0cmFjZT86IG5ldmVyO1xuICAgIH07XG4gICAgXCIvY2FsZW5kYXJcIjoge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoPzogbmV2ZXI7XG4gICAgICAgICAgICBjb29raWU/OiBuZXZlcjtcbiAgICAgICAgfTtcbiAgICAgICAgLyoqIHJldHVybiB0aGUgbGlzdCBvZiB1cGNvbWluZyBjYWxlbmRlciBlbnRyaWVzICovXG4gICAgICAgIGdldDogb3BlcmF0aW9uc1tcImdldENhbGVuZGFyXCJdO1xuICAgICAgICBwdXQ/OiBuZXZlcjtcbiAgICAgICAgcG9zdD86IG5ldmVyO1xuICAgICAgICBkZWxldGU/OiBuZXZlcjtcbiAgICAgICAgb3B0aW9ucz86IG5ldmVyO1xuICAgICAgICBoZWFkPzogbmV2ZXI7XG4gICAgICAgIHBhdGNoPzogbmV2ZXI7XG4gICAgICAgIHRyYWNlPzogbmV2ZXI7XG4gICAgfTtcbn1cbmV4cG9ydCB0eXBlIHdlYmhvb2tzID0gUmVjb3JkPHN0cmluZywgbmV2ZXI+O1xuZXhwb3J0IGludGVyZmFjZSBjb21wb25lbnRzIHtcbiAgICBzY2hlbWFzOiB7XG4gICAgICAgIEFkZHJlc3NXaXRoVXNlcjoge1xuICAgICAgICAgICAgbmFtZTogc3RyaW5nO1xuICAgICAgICAgICAgc3RyZWV0Pzogc3RyaW5nO1xuICAgICAgICAgICAgemlwPzogc3RyaW5nO1xuICAgICAgICAgICAgY2l0eT86IHN0cmluZztcbiAgICAgICAgICAgIHBob25lPzogc3RyaW5nO1xuICAgICAgICAgICAgZW1haWw6IHN0cmluZztcbiAgICAgICAgfTtcbiAgICAgICAgTGVhZ3VlOiB7XG4gICAgICAgICAgICBzaG9ydE5hbWU6IHN0cmluZztcbiAgICAgICAgICAgIGxvbmdOYW1lOiBzdHJpbmc7XG4gICAgICAgICAgICBzZWFzb246IHN0cmluZztcbiAgICAgICAgICAgIHJ1bGVzPzogc3RyaW5nW107XG4gICAgICAgICAgICAvKiogQGRlZmF1bHQgZmFsc2UgKi9cbiAgICAgICAgICAgIGhhc05vbkNvbXBldGl0aXZlOiBib29sZWFuO1xuICAgICAgICAgICAgbGFzdEltcG9ydD86IHN0cmluZztcbiAgICAgICAgICAgIG1hbmFnZXI6IGNvbXBvbmVudHNbXCJzY2hlbWFzXCJdW1wiQWRkcmVzc1dpdGhVc2VyXCJdO1xuICAgICAgICB9O1xuICAgICAgICBUZWFtOiB7XG4gICAgICAgICAgICBpZD86IHN0cmluZztcbiAgICAgICAgICAgIG5hbWU6IHN0cmluZztcbiAgICAgICAgICAgIGNsdWJOYW1lOiBzdHJpbmc7XG4gICAgICAgICAgICBsZWFndWVTaG9ydE5hbWU6IHN0cmluZztcbiAgICAgICAgICAgIGxlYWd1ZUxvbmdOYW1lOiBzdHJpbmc7XG4gICAgICAgICAgICAvKiogQGRlZmF1bHQgZmFsc2UgKi9cbiAgICAgICAgICAgIG5vbkNvbXBldGl0aXZlOiBib29sZWFuO1xuICAgICAgICAgICAgcGxheWVyczogY29tcG9uZW50c1tcInNjaGVtYXNcIl1bXCJUZWFtTWVtYmVyXCJdW107XG4gICAgICAgICAgICBsYXN0SW1wb3J0Pzogc3RyaW5nO1xuICAgICAgICB9O1xuICAgICAgICBUZWFtTWVtYmVyOiB7XG4gICAgICAgICAgICBuYW1lOiBzdHJpbmc7XG4gICAgICAgICAgICB1Y2lDb2RlPzogc3RyaW5nO1xuICAgICAgICB9O1xuICAgICAgICBTaW1wbGVNYXRjaGRheToge1xuICAgICAgICAgICAgbnVtYmVyPzogbnVtYmVyO1xuICAgICAgICAgICAgbGVhZ3VlU2hvcnROYW1lPzogc3RyaW5nO1xuICAgICAgICAgICAgbGVhZ3VlTG9uZ05hbWU/OiBzdHJpbmc7XG4gICAgICAgICAgICBwaW4/OiBzdHJpbmc7XG4gICAgICAgICAgICAvKiogRm9ybWF0OiBkYXRlLXRpbWUgKi9cbiAgICAgICAgICAgIHN0YXJ0Pzogc3RyaW5nO1xuICAgICAgICAgICAgLyoqIEZvcm1hdDogZGF0ZS10aW1lICovXG4gICAgICAgICAgICBlbmQ/OiBzdHJpbmc7XG4gICAgICAgICAgICBob3N0Q2x1Yj86IHN0cmluZztcbiAgICAgICAgICAgIGxhc3RJbXBvcnQ/OiBzdHJpbmc7XG4gICAgICAgICAgICBneW0/OiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIkd5bVwiXTtcbiAgICAgICAgfTtcbiAgICAgICAgR3ltOiB7XG4gICAgICAgICAgICBuYW1lPzogc3RyaW5nO1xuICAgICAgICAgICAgY2l0eT86IHN0cmluZztcbiAgICAgICAgICAgIHppcD86IHN0cmluZztcbiAgICAgICAgICAgIHN0cmVldD86IHN0cmluZztcbiAgICAgICAgICAgIHBob25lPzogc3RyaW5nO1xuICAgICAgICB9O1xuICAgICAgICBNYXRjaGRheToge1xuICAgICAgICAgICAgbnVtYmVyPzogbnVtYmVyO1xuICAgICAgICAgICAgbGVhZ3VlU2hvcnROYW1lPzogc3RyaW5nO1xuICAgICAgICAgICAgbGVhZ3VlTG9uZ05hbWU/OiBzdHJpbmc7XG4gICAgICAgICAgICBwaW4/OiBzdHJpbmc7XG4gICAgICAgICAgICAvKiogRm9ybWF0OiBkYXRlLXRpbWUgKi9cbiAgICAgICAgICAgIHN0YXJ0Pzogc3RyaW5nO1xuICAgICAgICAgICAgLyoqIEZvcm1hdDogZGF0ZS10aW1lICovXG4gICAgICAgICAgICBlbmQ/OiBzdHJpbmc7XG4gICAgICAgICAgICBob3N0Q2x1Yj86IHN0cmluZztcbiAgICAgICAgICAgIGxhc3RJbXBvcnQ/OiBzdHJpbmc7XG4gICAgICAgICAgICBneW0/OiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIkd5bVwiXTtcbiAgICAgICAgICAgIHRlYW1zPzogY29tcG9uZW50c1tcInNjaGVtYXNcIl1bXCJNYXRjaGRheVRlYW1cIl1bXTtcbiAgICAgICAgICAgIGdhbWVzPzogY29tcG9uZW50c1tcInNjaGVtYXNcIl1bXCJHYW1lXCJdW107XG4gICAgICAgICAgICBjb21tZW50Pzogc3RyaW5nO1xuICAgICAgICB9O1xuICAgICAgICBHYW1lOiB7XG4gICAgICAgICAgICBudW1iZXI/OiBudW1iZXI7XG4gICAgICAgICAgICB0ZWFtQT86IHN0cmluZztcbiAgICAgICAgICAgIHRlYW1CPzogc3RyaW5nO1xuICAgICAgICAgICAgZ29hbHNBSGFsZj86IG51bWJlcjtcbiAgICAgICAgICAgIGdvYWxzQkhhbGY/OiBudW1iZXI7XG4gICAgICAgICAgICBnb2Fsc0E/OiBudW1iZXI7XG4gICAgICAgICAgICBnb2Fsc0I/OiBudW1iZXI7XG4gICAgICAgICAgICAvKiogQGRlZmF1bHQgZmFsc2UgKi9cbiAgICAgICAgICAgIGJvdGhMb3N0OiBib29sZWFuO1xuICAgICAgICAgICAgc3RhdGU/OiBzdHJpbmc7XG4gICAgICAgIH07XG4gICAgICAgIEdhbWVVcGRhdGVJbmZvOiB7XG4gICAgICAgICAgICBnb2Fsc0FIYWxmPzogbnVtYmVyO1xuICAgICAgICAgICAgZ29hbHNCSGFsZj86IG51bWJlcjtcbiAgICAgICAgICAgIGdvYWxzQT86IG51bWJlcjtcbiAgICAgICAgICAgIGdvYWxzQj86IG51bWJlcjtcbiAgICAgICAgICAgIC8qKiBAZGVmYXVsdCBmYWxzZSAqL1xuICAgICAgICAgICAgYm90aExvc3Q6IGJvb2xlYW47XG4gICAgICAgICAgICBzdGF0ZT86IHN0cmluZztcbiAgICAgICAgfTtcbiAgICAgICAgTWF0Y2hkYXlUZWFtOiB7XG4gICAgICAgICAgICBuYW1lPzogc3RyaW5nO1xuICAgICAgICAgICAgLyoqIEBkZWZhdWx0IGZhbHNlICovXG4gICAgICAgICAgICBwcmVzZW50OiBib29sZWFuO1xuICAgICAgICAgICAgLyoqIEBkZWZhdWx0IGZhbHNlICovXG4gICAgICAgICAgICBleGN1c2VkOiBib29sZWFuO1xuICAgICAgICAgICAgcGxheWVycz86IHtcbiAgICAgICAgICAgICAgICBuYW1lPzogc3RyaW5nO1xuICAgICAgICAgICAgICAgIHVjaUNvZGU/OiBzdHJpbmc7XG4gICAgICAgICAgICAgICAgcmVndWxhcj86IGJvb2xlYW47XG4gICAgICAgICAgICB9W107XG4gICAgICAgIH07XG4gICAgICAgIFVwZGF0ZU1hdGNoZGF5VGVhbToge1xuICAgICAgICAgICAgcHJlc2VudDogYm9vbGVhbjtcbiAgICAgICAgICAgIGV4Y3VzZWQ6IGJvb2xlYW47XG4gICAgICAgICAgICBwbGF5ZXJzOiB7XG4gICAgICAgICAgICAgICAgbmFtZT86IHN0cmluZztcbiAgICAgICAgICAgICAgICB1Y2lDb2RlPzogc3RyaW5nO1xuICAgICAgICAgICAgICAgIHJlZ3VsYXI/OiBib29sZWFuO1xuICAgICAgICAgICAgfVtdO1xuICAgICAgICB9O1xuICAgICAgICBSYW5raW5nOiB7XG4gICAgICAgICAgICAvKiogRm9ybWF0OiBpbnQzMiAqL1xuICAgICAgICAgICAgcmFuaz86IG51bWJlcjtcbiAgICAgICAgICAgIHRlYW0/OiBzdHJpbmc7XG4gICAgICAgICAgICAvKiogRm9ybWF0OiBpbnQzMiAqL1xuICAgICAgICAgICAgZ2FtZXM/OiBudW1iZXI7XG4gICAgICAgICAgICAvKiogRm9ybWF0OiBpbnQzMiAqL1xuICAgICAgICAgICAgZ29hbHNQbHVzPzogbnVtYmVyO1xuICAgICAgICAgICAgLyoqIEZvcm1hdDogaW50MzIgKi9cbiAgICAgICAgICAgIGdvYWxzTWludXM/OiBudW1iZXI7XG4gICAgICAgICAgICAvKiogRm9ybWF0OiBpbnQzMiAqL1xuICAgICAgICAgICAgZ29hbHNEaWZmPzogbnVtYmVyO1xuICAgICAgICAgICAgLyoqIEZvcm1hdDogaW50MzIgKi9cbiAgICAgICAgICAgIHBvaW50cz86IG51bWJlcjtcbiAgICAgICAgICAgIHN0eWxlPzogc3RyaW5nO1xuICAgICAgICB9O1xuICAgICAgICBDbHViOiB7XG4gICAgICAgICAgICBuYW1lPzogc3RyaW5nO1xuICAgICAgICAgICAgY2l0eT86IHN0cmluZztcbiAgICAgICAgICAgIGNvbnRhY3Q/OiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIkFkZHJlc3NXaXRoVXNlclwiXTtcbiAgICAgICAgICAgIGd5bXM/OiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIkd5bVwiXVtdO1xuICAgICAgICB9O1xuICAgICAgICBDYWxlbmRhckRhdGU6IHtcbiAgICAgICAgICAgIC8qKiBGb3JtYXQ6IGRhdGUgKi9cbiAgICAgICAgICAgIGRhdGU/OiBzdHJpbmc7XG4gICAgICAgICAgICBkYXlzPzogY29tcG9uZW50c1tcInNjaGVtYXNcIl1bXCJTaW1wbGVNYXRjaGRheVwiXVtdO1xuICAgICAgICB9O1xuICAgIH07XG4gICAgcmVzcG9uc2VzOiBuZXZlcjtcbiAgICBwYXJhbWV0ZXJzOiBuZXZlcjtcbiAgICByZXF1ZXN0Qm9kaWVzOiBuZXZlcjtcbiAgICBoZWFkZXJzOiBuZXZlcjtcbiAgICBwYXRoSXRlbXM6IG5ldmVyO1xufVxuZXhwb3J0IHR5cGUgJGRlZnMgPSBSZWNvcmQ8c3RyaW5nLCBuZXZlcj47XG5leHBvcnQgaW50ZXJmYWNlIG9wZXJhdGlvbnMge1xuICAgIGdldExlYWd1ZXM6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiBuZXZlcjtcbiAgICAgICAgICAgIGhlYWRlcj86IG5ldmVyO1xuICAgICAgICAgICAgcGF0aD86IG5ldmVyO1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIHJlcXVlc3RCb2R5PzogbmV2ZXI7XG4gICAgICAgIHJlc3BvbnNlczoge1xuICAgICAgICAgICAgLyoqIEBkZXNjcmlwdGlvbiBzdWNjZXNzZnVsIG9wZXJhdGlvbiAqL1xuICAgICAgICAgICAgMjAwOiB7XG4gICAgICAgICAgICAgICAgaGVhZGVyczoge1xuICAgICAgICAgICAgICAgICAgICBbbmFtZTogc3RyaW5nXTogdW5rbm93bjtcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgICAgIGNvbnRlbnQ6IHtcbiAgICAgICAgICAgICAgICAgICAgXCJhcHBsaWNhdGlvbi9qc29uXCI6IGNvbXBvbmVudHNbXCJzY2hlbWFzXCJdW1wiTGVhZ3VlXCJdW107XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIH07XG4gICAgICAgIH07XG4gICAgfTtcbiAgICBnZXRMZWFndWU6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiBuZXZlcjtcbiAgICAgICAgICAgIGhlYWRlcj86IG5ldmVyO1xuICAgICAgICAgICAgcGF0aDoge1xuICAgICAgICAgICAgICAgIG9pZDogc3RyaW5nO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICByZXF1ZXN0Qm9keT86IG5ldmVyO1xuICAgICAgICByZXNwb25zZXM6IHtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gc3VjY2Vzc2Z1bCBvcGVyYXRpb24gKi9cbiAgICAgICAgICAgIDIwMDoge1xuICAgICAgICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgICAgICAgICAgW25hbWU6IHN0cmluZ106IHVua25vd247XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICBjb250ZW50OiB7XG4gICAgICAgICAgICAgICAgICAgIFwiYXBwbGljYXRpb24vanNvblwiOiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIkxlYWd1ZVwiXTtcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgfTtcbiAgICAgICAgfTtcbiAgICB9O1xuICAgIGdldExlYWd1ZVJhbmtpbmc6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiB7XG4gICAgICAgICAgICAgICAgLyoqIEBkZXNjcmlwdGlvbiBpbmNsdWRlIG5vbi1jb21wZXRpdGl2ZSB0ZWFtcyBpbnRvIHJhbmtpbmcgKi9cbiAgICAgICAgICAgICAgICBub25Db21wZXRpdGl2ZT86IGJvb2xlYW47XG4gICAgICAgICAgICB9O1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoOiB7XG4gICAgICAgICAgICAgICAgb2lkOiBzdHJpbmc7XG4gICAgICAgICAgICB9O1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIHJlcXVlc3RCb2R5PzogbmV2ZXI7XG4gICAgICAgIHJlc3BvbnNlczoge1xuICAgICAgICAgICAgLyoqIEBkZXNjcmlwdGlvbiBzdWNjZXNzZnVsIG9wZXJhdGlvbiAqL1xuICAgICAgICAgICAgMjAwOiB7XG4gICAgICAgICAgICAgICAgaGVhZGVyczoge1xuICAgICAgICAgICAgICAgICAgICBbbmFtZTogc3RyaW5nXTogdW5rbm93bjtcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgICAgIGNvbnRlbnQ6IHtcbiAgICAgICAgICAgICAgICAgICAgXCJhcHBsaWNhdGlvbi9qc29uXCI6IGNvbXBvbmVudHNbXCJzY2hlbWFzXCJdW1wiUmFua2luZ1wiXVtdO1xuICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICB9O1xuICAgICAgICB9O1xuICAgIH07XG4gICAgZ2V0TGVhZ3VlVGVhbXM6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiBuZXZlcjtcbiAgICAgICAgICAgIGhlYWRlcj86IG5ldmVyO1xuICAgICAgICAgICAgcGF0aDoge1xuICAgICAgICAgICAgICAgIG9pZDogc3RyaW5nO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICByZXF1ZXN0Qm9keT86IG5ldmVyO1xuICAgICAgICByZXNwb25zZXM6IHtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gc3VjY2Vzc2Z1bCBvcGVyYXRpb24gKi9cbiAgICAgICAgICAgIDIwMDoge1xuICAgICAgICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgICAgICAgICAgW25hbWU6IHN0cmluZ106IHVua25vd247XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICBjb250ZW50OiB7XG4gICAgICAgICAgICAgICAgICAgIFwiYXBwbGljYXRpb24vanNvblwiOiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIlRlYW1cIl1bXTtcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgfTtcbiAgICAgICAgfTtcbiAgICB9O1xuICAgIGdldExlYWd1ZURheXM6IHtcbiAgICAgICAgcGFyYW1ldGVyczoge1xuICAgICAgICAgICAgcXVlcnk/OiBuZXZlcjtcbiAgICAgICAgICAgIGhlYWRlcj86IG5ldmVyO1xuICAgICAgICAgICAgcGF0aDoge1xuICAgICAgICAgICAgICAgIG9pZDogc3RyaW5nO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICByZXF1ZXN0Qm9keT86IG5ldmVyO1xuICAgICAgICByZXNwb25zZXM6IHtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gc3VjY2Vzc2Z1bCBvcGVyYXRpb24gKi9cbiAgICAgICAgICAgIDIwMDoge1xuICAgICAgICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgICAgICAgICAgW25hbWU6IHN0cmluZ106IHVua25vd247XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICBjb250ZW50OiB7XG4gICAgICAgICAgICAgICAgICAgIFwiYXBwbGljYXRpb24vanNvblwiOiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIlNpbXBsZU1hdGNoZGF5XCJdW107XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIH07XG4gICAgICAgIH07XG4gICAgfTtcbiAgICBpbXBvcnRNYXRjaGRheToge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoOiB7XG4gICAgICAgICAgICAgICAgb2lkOiBzdHJpbmc7XG4gICAgICAgICAgICB9O1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIHJlcXVlc3RCb2R5Pzoge1xuICAgICAgICAgICAgY29udGVudDoge1xuICAgICAgICAgICAgICAgIFwidGV4dC9wbGFpblwiOiBSZWNvcmQ8c3RyaW5nLCBuZXZlcj47XG4gICAgICAgICAgICB9O1xuICAgICAgICB9O1xuICAgICAgICByZXNwb25zZXM6IHtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gc3VjY2Vzc2Z1bCBvcGVyYXRpb24gKi9cbiAgICAgICAgICAgIDIwMToge1xuICAgICAgICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgICAgICAgICAgW25hbWU6IHN0cmluZ106IHVua25vd247XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICBjb250ZW50PzogbmV2ZXI7XG4gICAgICAgICAgICB9O1xuICAgICAgICB9O1xuICAgIH07XG4gICAgZ2V0TGVhZ3VlRGF5OiB7XG4gICAgICAgIHBhcmFtZXRlcnM6IHtcbiAgICAgICAgICAgIHF1ZXJ5PzogbmV2ZXI7XG4gICAgICAgICAgICBoZWFkZXI/OiB7XG4gICAgICAgICAgICAgICAgXCJ4LXBpblwiPzogc3RyaW5nO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIHBhdGg6IHtcbiAgICAgICAgICAgICAgICBvaWQ6IHN0cmluZztcbiAgICAgICAgICAgICAgICBkYXlJZDogc3RyaW5nO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICByZXF1ZXN0Qm9keT86IG5ldmVyO1xuICAgICAgICByZXNwb25zZXM6IHtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gc3VjY2Vzc2Z1bCBvcGVyYXRpb24gKi9cbiAgICAgICAgICAgIDIwMDoge1xuICAgICAgICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgICAgICAgICAgW25hbWU6IHN0cmluZ106IHVua25vd247XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICBjb250ZW50OiB7XG4gICAgICAgICAgICAgICAgICAgIFwiYXBwbGljYXRpb24vanNvblwiOiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIk1hdGNoZGF5XCJdO1xuICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICB9O1xuICAgICAgICB9O1xuICAgIH07XG4gICAgdXBkYXRlTWF0Y2hkYXlUZWFtOiB7XG4gICAgICAgIHBhcmFtZXRlcnM6IHtcbiAgICAgICAgICAgIHF1ZXJ5PzogbmV2ZXI7XG4gICAgICAgICAgICBoZWFkZXI/OiB7XG4gICAgICAgICAgICAgICAgXCJ4LXBpblwiPzogc3RyaW5nO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIHBhdGg6IHtcbiAgICAgICAgICAgICAgICBvaWQ6IHN0cmluZztcbiAgICAgICAgICAgICAgICBkYXlJZDogbnVtYmVyO1xuICAgICAgICAgICAgICAgIHRlYW1JZDogbnVtYmVyO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICByZXF1ZXN0Qm9keT86IHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IHtcbiAgICAgICAgICAgICAgICBcImFwcGxpY2F0aW9uL2pzb25cIjogY29tcG9uZW50c1tcInNjaGVtYXNcIl1bXCJVcGRhdGVNYXRjaGRheVRlYW1cIl07XG4gICAgICAgICAgICB9O1xuICAgICAgICB9O1xuICAgICAgICByZXNwb25zZXM6IHtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gc3VjY2Vzc2Z1bCBvcGVyYXRpb24gKi9cbiAgICAgICAgICAgIDIwNDoge1xuICAgICAgICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgICAgICAgICAgW25hbWU6IHN0cmluZ106IHVua25vd247XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICBjb250ZW50PzogbmV2ZXI7XG4gICAgICAgICAgICB9O1xuICAgICAgICAgICAgLyoqIEBkZXNjcmlwdGlvbiBmb3JiaWRkZW4gZHVlIHRvIGludmFsaWQgUElOICovXG4gICAgICAgICAgICA0MDM6IHtcbiAgICAgICAgICAgICAgICBoZWFkZXJzOiB7XG4gICAgICAgICAgICAgICAgICAgIFtuYW1lOiBzdHJpbmddOiB1bmtub3duO1xuICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICAgICAgY29udGVudD86IG5ldmVyO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgfTtcbiAgICB9O1xuICAgIHVwZGF0ZU1hdGNoZGF5R2FtZToge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzoge1xuICAgICAgICAgICAgICAgIFwieC1waW5cIj86IHN0cmluZztcbiAgICAgICAgICAgIH07XG4gICAgICAgICAgICBwYXRoOiB7XG4gICAgICAgICAgICAgICAgb2lkOiBzdHJpbmc7XG4gICAgICAgICAgICAgICAgZGF5SWQ6IG51bWJlcjtcbiAgICAgICAgICAgICAgICBnYW1lTnVtYmVyOiBudW1iZXI7XG4gICAgICAgICAgICB9O1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIHJlcXVlc3RCb2R5Pzoge1xuICAgICAgICAgICAgY29udGVudDoge1xuICAgICAgICAgICAgICAgIFwiYXBwbGljYXRpb24vanNvblwiOiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIkdhbWVVcGRhdGVJbmZvXCJdO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgfTtcbiAgICAgICAgcmVzcG9uc2VzOiB7XG4gICAgICAgICAgICAvKiogQGRlc2NyaXB0aW9uIHN1Y2Nlc3NmdWwgb3BlcmF0aW9uICovXG4gICAgICAgICAgICAyMDQ6IHtcbiAgICAgICAgICAgICAgICBoZWFkZXJzOiB7XG4gICAgICAgICAgICAgICAgICAgIFtuYW1lOiBzdHJpbmddOiB1bmtub3duO1xuICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICAgICAgY29udGVudD86IG5ldmVyO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gZm9yYmlkZGVuIGR1ZSB0byBpbnZhbGlkIFBJTiAqL1xuICAgICAgICAgICAgNDAzOiB7XG4gICAgICAgICAgICAgICAgaGVhZGVyczoge1xuICAgICAgICAgICAgICAgICAgICBbbmFtZTogc3RyaW5nXTogdW5rbm93bjtcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgICAgIGNvbnRlbnQ/OiBuZXZlcjtcbiAgICAgICAgICAgIH07XG4gICAgICAgIH07XG4gICAgfTtcbiAgICBnZXRUZWFtczoge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoPzogbmV2ZXI7XG4gICAgICAgICAgICBjb29raWU/OiBuZXZlcjtcbiAgICAgICAgfTtcbiAgICAgICAgcmVxdWVzdEJvZHk/OiBuZXZlcjtcbiAgICAgICAgcmVzcG9uc2VzOiB7XG4gICAgICAgICAgICAvKiogQGRlc2NyaXB0aW9uIHN1Y2Nlc3NmdWwgb3BlcmF0aW9uICovXG4gICAgICAgICAgICAyMDA6IHtcbiAgICAgICAgICAgICAgICBoZWFkZXJzOiB7XG4gICAgICAgICAgICAgICAgICAgIFtuYW1lOiBzdHJpbmddOiB1bmtub3duO1xuICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICAgICAgY29udGVudDoge1xuICAgICAgICAgICAgICAgICAgICBcImFwcGxpY2F0aW9uL2pzb25cIjogY29tcG9uZW50c1tcInNjaGVtYXNcIl1bXCJUZWFtXCJdW107XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIH07XG4gICAgICAgIH07XG4gICAgfTtcbiAgICBnZXRUZWFtQnlJZDoge1xuICAgICAgICBwYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgICBxdWVyeT86IG5ldmVyO1xuICAgICAgICAgICAgaGVhZGVyPzogbmV2ZXI7XG4gICAgICAgICAgICBwYXRoOiB7XG4gICAgICAgICAgICAgICAgb2lkOiBzdHJpbmc7XG4gICAgICAgICAgICB9O1xuICAgICAgICAgICAgY29va2llPzogbmV2ZXI7XG4gICAgICAgIH07XG4gICAgICAgIHJlcXVlc3RCb2R5PzogbmV2ZXI7XG4gICAgICAgIHJlc3BvbnNlczoge1xuICAgICAgICAgICAgLyoqIEBkZXNjcmlwdGlvbiBzdWNjZXNzZnVsIG9wZXJhdGlvbiAqL1xuICAgICAgICAgICAgMjAwOiB7XG4gICAgICAgICAgICAgICAgaGVhZGVyczoge1xuICAgICAgICAgICAgICAgICAgICBbbmFtZTogc3RyaW5nXTogdW5rbm93bjtcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgICAgIGNvbnRlbnQ6IHtcbiAgICAgICAgICAgICAgICAgICAgXCJhcHBsaWNhdGlvbi9qc29uXCI6IGNvbXBvbmVudHNbXCJzY2hlbWFzXCJdW1wiVGVhbVwiXTtcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgfTtcbiAgICAgICAgfTtcbiAgICB9O1xuICAgIGdldENsdWJzOiB7XG4gICAgICAgIHBhcmFtZXRlcnM6IHtcbiAgICAgICAgICAgIHF1ZXJ5PzogbmV2ZXI7XG4gICAgICAgICAgICBoZWFkZXI/OiBuZXZlcjtcbiAgICAgICAgICAgIHBhdGg/OiBuZXZlcjtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICByZXF1ZXN0Qm9keT86IG5ldmVyO1xuICAgICAgICByZXNwb25zZXM6IHtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gc3VjY2Vzc2Z1bCBvcGVyYXRpb24gKi9cbiAgICAgICAgICAgIDIwMDoge1xuICAgICAgICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgICAgICAgICAgW25hbWU6IHN0cmluZ106IHVua25vd247XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICBjb250ZW50OiB7XG4gICAgICAgICAgICAgICAgICAgIFwiYXBwbGljYXRpb24vanNvblwiOiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIkNsdWJcIl1bXTtcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgfTtcbiAgICAgICAgfTtcbiAgICB9O1xuICAgIGdldENhbGVuZGFyOiB7XG4gICAgICAgIHBhcmFtZXRlcnM6IHtcbiAgICAgICAgICAgIHF1ZXJ5PzogbmV2ZXI7XG4gICAgICAgICAgICBoZWFkZXI/OiBuZXZlcjtcbiAgICAgICAgICAgIHBhdGg/OiBuZXZlcjtcbiAgICAgICAgICAgIGNvb2tpZT86IG5ldmVyO1xuICAgICAgICB9O1xuICAgICAgICByZXF1ZXN0Qm9keT86IG5ldmVyO1xuICAgICAgICByZXNwb25zZXM6IHtcbiAgICAgICAgICAgIC8qKiBAZGVzY3JpcHRpb24gc3VjY2Vzc2Z1bCBvcGVyYXRpb24gKi9cbiAgICAgICAgICAgIDIwMDoge1xuICAgICAgICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgICAgICAgICAgW25hbWU6IHN0cmluZ106IHVua25vd247XG4gICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICBjb250ZW50OiB7XG4gICAgICAgICAgICAgICAgICAgIFwiYXBwbGljYXRpb24vanNvblwiOiBjb21wb25lbnRzW1wic2NoZW1hc1wiXVtcIkNhbGVuZGFyRGF0ZVwiXVtdO1xuICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICB9O1xuICAgICAgICB9O1xuICAgIH07XG59XG4iXX0=
|
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"eslint": "npx projen eslint",
|
|
17
17
|
"generate:api:graphql": "npx projen generate:api:graphql",
|
|
18
18
|
"generate:api:rest": "npx projen generate:api:rest",
|
|
19
|
+
"generate:api:restCB": "npx projen generate:api:restCB",
|
|
19
20
|
"package": "npx projen package",
|
|
20
21
|
"post-compile": "npx projen post-compile",
|
|
21
22
|
"post-upgrade": "npx projen post-upgrade",
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
"publishConfig": {
|
|
74
75
|
"access": "public"
|
|
75
76
|
},
|
|
76
|
-
"version": "0.0.
|
|
77
|
+
"version": "0.0.30",
|
|
77
78
|
"jest": {
|
|
78
79
|
"coverageProvider": "v8",
|
|
79
80
|
"moduleNameMapper": {
|