@shakerquiz/utilities 4.0.46 → 4.0.47
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.
- package/package.json +1 -1
- package/source/codegen/autogenerated.js +182 -106
- package/source/entities/routes.js +14 -10
package/package.json
CHANGED
|
@@ -35,14 +35,11 @@ export const RouteExcessiveCardinality = Object.freeze(
|
|
|
35
35
|
'venue': '1',
|
|
36
36
|
'venue/city': '1/1',
|
|
37
37
|
'venues': 'n',
|
|
38
|
-
'venues/city': 'n/1',
|
|
39
38
|
'venues/search': 'n/1',
|
|
39
|
+
'venues/city/search': 'n/1/1',
|
|
40
40
|
'cover': '1',
|
|
41
41
|
'theme': '1',
|
|
42
42
|
'theme/cover': '1/1',
|
|
43
|
-
'themes': 'n',
|
|
44
|
-
'themes/cover': 'n/1',
|
|
45
|
-
'themes/games': 'n/n',
|
|
46
43
|
'themes/search': 'n/1',
|
|
47
44
|
'game': '1',
|
|
48
45
|
'game/status': '1/1',
|
|
@@ -58,16 +55,18 @@ export const RouteExcessiveCardinality = Object.freeze(
|
|
|
58
55
|
'game/theme': '1/1',
|
|
59
56
|
'game/theme/cover': '1/1/1',
|
|
60
57
|
'game/venue': '1/1',
|
|
61
|
-
'games': 'n',
|
|
58
|
+
'games/search': 'n/1',
|
|
62
59
|
'games/status': 'n/1',
|
|
60
|
+
'games/status/search': 'n/1/1',
|
|
63
61
|
'games/city': 'n/1',
|
|
64
|
-
'games/
|
|
65
|
-
'games/registrations/export': 'n/n/1',
|
|
62
|
+
'games/city/search': 'n/1/1',
|
|
66
63
|
'games/summary': 'n/1',
|
|
64
|
+
'games/summary/search': 'n/1/1',
|
|
67
65
|
'games/theme': 'n/1',
|
|
66
|
+
'games/theme/search': 'n/1/1',
|
|
68
67
|
'games/theme/cover': 'n/1/1',
|
|
69
68
|
'games/venue': 'n/1',
|
|
70
|
-
'games/search': 'n/1',
|
|
69
|
+
'games/venue/search': 'n/1/1',
|
|
71
70
|
'registration': '1',
|
|
72
71
|
'registration/status': '1/1',
|
|
73
72
|
'registration/creation': '1/1',
|
|
@@ -82,14 +81,19 @@ export const RouteExcessiveCardinality = Object.freeze(
|
|
|
82
81
|
'registration/game/theme/cover': '1/1/1/1',
|
|
83
82
|
'registration/game/venue': '1/1/1',
|
|
84
83
|
'registrations': 'n',
|
|
84
|
+
'registrations/search': 'n/1',
|
|
85
85
|
'registrations/status': 'n/1',
|
|
86
|
+
'registrations/status/search': 'n/1/1',
|
|
86
87
|
'registrations/lineup': 'n/1',
|
|
88
|
+
'registrations/lineup/search': 'n/1/1',
|
|
87
89
|
'registrations/city': 'n/1',
|
|
90
|
+
'registrations/city/search': 'n/1/1',
|
|
88
91
|
'registrations/game': 'n/1',
|
|
92
|
+
'registrations/game/search': 'n/1/1',
|
|
89
93
|
'registrations/game/status': 'n/1/1',
|
|
94
|
+
'registrations/game/status/search': 'n/1/1/1',
|
|
90
95
|
'registrations/game/theme': 'n/1/1',
|
|
91
|
-
'registrations/
|
|
92
|
-
'registrations/search': 'n/1',
|
|
96
|
+
'registrations/game/theme/search': 'n/1/1/1',
|
|
93
97
|
'telegram/webhook': '1/1',
|
|
94
98
|
'telegram/registration/mailing': '1/1/1',
|
|
95
99
|
'chatapp/webhook': '1/1',
|
|
@@ -135,14 +139,11 @@ export const RouteCardinality = Object.freeze(
|
|
|
135
139
|
'venue': '1',
|
|
136
140
|
'venue/city': '1/1',
|
|
137
141
|
'venues': 'n',
|
|
138
|
-
'venues/city': 'n/1',
|
|
139
142
|
'venues/search': 'n/1',
|
|
143
|
+
'venues/city/search': 'n/1',
|
|
140
144
|
'cover': '1',
|
|
141
145
|
'theme': '1',
|
|
142
146
|
'theme/cover': '1/1',
|
|
143
|
-
'themes': 'n',
|
|
144
|
-
'themes/cover': 'n/1',
|
|
145
|
-
'themes/games': 'n/n',
|
|
146
147
|
'themes/search': 'n/1',
|
|
147
148
|
'game': '1',
|
|
148
149
|
'game/status': '1/1',
|
|
@@ -158,16 +159,18 @@ export const RouteCardinality = Object.freeze(
|
|
|
158
159
|
'game/theme': '1/1',
|
|
159
160
|
'game/theme/cover': '1/1',
|
|
160
161
|
'game/venue': '1/1',
|
|
161
|
-
'games': 'n',
|
|
162
|
+
'games/search': 'n/1',
|
|
162
163
|
'games/status': 'n/1',
|
|
164
|
+
'games/status/search': 'n/1',
|
|
163
165
|
'games/city': 'n/1',
|
|
164
|
-
'games/
|
|
165
|
-
'games/registrations/export': 'n/1',
|
|
166
|
+
'games/city/search': 'n/1',
|
|
166
167
|
'games/summary': 'n/1',
|
|
168
|
+
'games/summary/search': 'n/1',
|
|
167
169
|
'games/theme': 'n/1',
|
|
170
|
+
'games/theme/search': 'n/1',
|
|
168
171
|
'games/theme/cover': 'n/1',
|
|
169
172
|
'games/venue': 'n/1',
|
|
170
|
-
'games/search': 'n/1',
|
|
173
|
+
'games/venue/search': 'n/1',
|
|
171
174
|
'registration': '1',
|
|
172
175
|
'registration/status': '1/1',
|
|
173
176
|
'registration/creation': '1/1',
|
|
@@ -182,14 +185,19 @@ export const RouteCardinality = Object.freeze(
|
|
|
182
185
|
'registration/game/theme/cover': '1/1',
|
|
183
186
|
'registration/game/venue': '1/1',
|
|
184
187
|
'registrations': 'n',
|
|
188
|
+
'registrations/search': 'n/1',
|
|
185
189
|
'registrations/status': 'n/1',
|
|
190
|
+
'registrations/status/search': 'n/1',
|
|
186
191
|
'registrations/lineup': 'n/1',
|
|
192
|
+
'registrations/lineup/search': 'n/1',
|
|
187
193
|
'registrations/city': 'n/1',
|
|
194
|
+
'registrations/city/search': 'n/1',
|
|
188
195
|
'registrations/game': 'n/1',
|
|
196
|
+
'registrations/game/search': 'n/1',
|
|
189
197
|
'registrations/game/status': 'n/1',
|
|
198
|
+
'registrations/game/status/search': 'n/1',
|
|
190
199
|
'registrations/game/theme': 'n/1',
|
|
191
|
-
'registrations/
|
|
192
|
-
'registrations/search': 'n/1',
|
|
200
|
+
'registrations/game/theme/search': 'n/1',
|
|
193
201
|
'telegram/webhook': '1/1',
|
|
194
202
|
'telegram/registration/mailing': '1/1',
|
|
195
203
|
'chatapp/webhook': '1/1',
|
|
@@ -235,14 +243,11 @@ export const RoutePathname = Object.freeze(
|
|
|
235
243
|
'venue': 'venue/:venue',
|
|
236
244
|
'venue/city': 'venue/:venue/city/:city',
|
|
237
245
|
'venues': 'venues',
|
|
238
|
-
'venues/city': 'venues/city/:city',
|
|
239
246
|
'venues/search': 'venues/search',
|
|
247
|
+
'venues/city/search': 'venues/city/:city/search',
|
|
240
248
|
'cover': 'cover/:cover',
|
|
241
249
|
'theme': 'theme/:theme',
|
|
242
250
|
'theme/cover': 'theme/:theme/cover/:cover',
|
|
243
|
-
'themes': 'themes',
|
|
244
|
-
'themes/cover': 'themes/cover/:cover',
|
|
245
|
-
'themes/games': 'themes/games',
|
|
246
251
|
'themes/search': 'themes/search',
|
|
247
252
|
'game': 'game/:game',
|
|
248
253
|
'game/status': 'game/:game/status/:status',
|
|
@@ -258,16 +263,18 @@ export const RoutePathname = Object.freeze(
|
|
|
258
263
|
'game/theme': 'game/:game/theme/:theme',
|
|
259
264
|
'game/theme/cover': 'game/:game/theme/:theme/cover/:cover',
|
|
260
265
|
'game/venue': 'game/:game/venue/:venue',
|
|
261
|
-
'games': 'games',
|
|
266
|
+
'games/search': 'games/search',
|
|
262
267
|
'games/status': 'games/status/:status',
|
|
268
|
+
'games/status/search': 'games/status/:status/search',
|
|
263
269
|
'games/city': 'games/city/:city',
|
|
264
|
-
'games/
|
|
265
|
-
'games/registrations/export': 'games/registrations/export',
|
|
270
|
+
'games/city/search': 'games/city/:city/search',
|
|
266
271
|
'games/summary': 'games/summary',
|
|
272
|
+
'games/summary/search': 'games/summary/search',
|
|
267
273
|
'games/theme': 'games/theme/:theme',
|
|
274
|
+
'games/theme/search': 'games/theme/:theme/search',
|
|
268
275
|
'games/theme/cover': 'games/theme/:theme/cover/:cover',
|
|
269
276
|
'games/venue': 'games/venue/:venue',
|
|
270
|
-
'games/search': 'games/search',
|
|
277
|
+
'games/venue/search': 'games/venue/:venue/search',
|
|
271
278
|
'registration': 'registration/:registration',
|
|
272
279
|
'registration/status': 'registration/:registration/status/:status',
|
|
273
280
|
'registration/creation': 'registration/:registration/creation',
|
|
@@ -282,14 +289,19 @@ export const RoutePathname = Object.freeze(
|
|
|
282
289
|
'registration/game/theme/cover': 'registration/:registration/game/:game/theme/:theme/cover/:cover',
|
|
283
290
|
'registration/game/venue': 'registration/:registration/game/:game/venue/:venue',
|
|
284
291
|
'registrations': 'registrations',
|
|
292
|
+
'registrations/search': 'registrations/search',
|
|
285
293
|
'registrations/status': 'registrations/status/:status',
|
|
294
|
+
'registrations/status/search': 'registrations/status/:status/search',
|
|
286
295
|
'registrations/lineup': 'registrations/lineup',
|
|
296
|
+
'registrations/lineup/search': 'registrations/lineup/search',
|
|
287
297
|
'registrations/city': 'registrations/city/:city',
|
|
298
|
+
'registrations/city/search': 'registrations/city/:city/search',
|
|
288
299
|
'registrations/game': 'registrations/game/:game',
|
|
300
|
+
'registrations/game/search': 'registrations/game/:game/search',
|
|
289
301
|
'registrations/game/status': 'registrations/game/:game/status/:status',
|
|
302
|
+
'registrations/game/status/search': 'registrations/game/:game/status/:status/search',
|
|
290
303
|
'registrations/game/theme': 'registrations/game/:game/theme/:theme',
|
|
291
|
-
'registrations/
|
|
292
|
-
'registrations/search': 'registrations/search',
|
|
304
|
+
'registrations/game/theme/search': 'registrations/game/:game/theme/:theme/search',
|
|
293
305
|
'telegram/webhook': 'telegram/webhook',
|
|
294
306
|
'telegram/registration/mailing': 'telegram/registration/:registration/mailing',
|
|
295
307
|
'chatapp/webhook': 'chatapp/webhook',
|
|
@@ -386,10 +398,10 @@ export const RouteParameters = Object.freeze(
|
|
|
386
398
|
':city',
|
|
387
399
|
],
|
|
388
400
|
'venues': [],
|
|
389
|
-
'venues/
|
|
401
|
+
'venues/search': [],
|
|
402
|
+
'venues/city/search': [
|
|
390
403
|
':city',
|
|
391
404
|
],
|
|
392
|
-
'venues/search': [],
|
|
393
405
|
'cover': [
|
|
394
406
|
':cover',
|
|
395
407
|
],
|
|
@@ -400,11 +412,6 @@ export const RouteParameters = Object.freeze(
|
|
|
400
412
|
':theme',
|
|
401
413
|
':cover',
|
|
402
414
|
],
|
|
403
|
-
'themes': [],
|
|
404
|
-
'themes/cover': [
|
|
405
|
-
':cover',
|
|
406
|
-
],
|
|
407
|
-
'themes/games': [],
|
|
408
415
|
'themes/search': [],
|
|
409
416
|
'game': [
|
|
410
417
|
':game',
|
|
@@ -459,19 +466,27 @@ export const RouteParameters = Object.freeze(
|
|
|
459
466
|
':game',
|
|
460
467
|
':venue',
|
|
461
468
|
],
|
|
462
|
-
'games': [],
|
|
469
|
+
'games/search': [],
|
|
463
470
|
'games/status': [
|
|
464
471
|
':status',
|
|
465
472
|
],
|
|
473
|
+
'games/status/search': [
|
|
474
|
+
':status',
|
|
475
|
+
],
|
|
466
476
|
'games/city': [
|
|
467
477
|
':city',
|
|
468
478
|
],
|
|
469
|
-
'games/
|
|
470
|
-
|
|
479
|
+
'games/city/search': [
|
|
480
|
+
':city',
|
|
481
|
+
],
|
|
471
482
|
'games/summary': [],
|
|
483
|
+
'games/summary/search': [],
|
|
472
484
|
'games/theme': [
|
|
473
485
|
':theme',
|
|
474
486
|
],
|
|
487
|
+
'games/theme/search': [
|
|
488
|
+
':theme',
|
|
489
|
+
],
|
|
475
490
|
'games/theme/cover': [
|
|
476
491
|
':theme',
|
|
477
492
|
':cover',
|
|
@@ -479,7 +494,9 @@ export const RouteParameters = Object.freeze(
|
|
|
479
494
|
'games/venue': [
|
|
480
495
|
':venue',
|
|
481
496
|
],
|
|
482
|
-
'games/search': [
|
|
497
|
+
'games/venue/search': [
|
|
498
|
+
':venue',
|
|
499
|
+
],
|
|
483
500
|
'registration': [
|
|
484
501
|
':registration',
|
|
485
502
|
],
|
|
@@ -530,26 +547,43 @@ export const RouteParameters = Object.freeze(
|
|
|
530
547
|
':venue',
|
|
531
548
|
],
|
|
532
549
|
'registrations': [],
|
|
550
|
+
'registrations/search': [],
|
|
533
551
|
'registrations/status': [
|
|
534
552
|
':status',
|
|
535
553
|
],
|
|
554
|
+
'registrations/status/search': [
|
|
555
|
+
':status',
|
|
556
|
+
],
|
|
536
557
|
'registrations/lineup': [],
|
|
558
|
+
'registrations/lineup/search': [],
|
|
537
559
|
'registrations/city': [
|
|
538
560
|
':city',
|
|
539
561
|
],
|
|
562
|
+
'registrations/city/search': [
|
|
563
|
+
':city',
|
|
564
|
+
],
|
|
540
565
|
'registrations/game': [
|
|
541
566
|
':game',
|
|
542
567
|
],
|
|
568
|
+
'registrations/game/search': [
|
|
569
|
+
':game',
|
|
570
|
+
],
|
|
543
571
|
'registrations/game/status': [
|
|
544
572
|
':game',
|
|
545
573
|
':status',
|
|
546
574
|
],
|
|
575
|
+
'registrations/game/status/search': [
|
|
576
|
+
':game',
|
|
577
|
+
':status',
|
|
578
|
+
],
|
|
547
579
|
'registrations/game/theme': [
|
|
548
580
|
':game',
|
|
549
581
|
':theme',
|
|
550
582
|
],
|
|
551
|
-
'registrations/
|
|
552
|
-
|
|
583
|
+
'registrations/game/theme/search': [
|
|
584
|
+
':game',
|
|
585
|
+
':theme',
|
|
586
|
+
],
|
|
553
587
|
'telegram/webhook': [],
|
|
554
588
|
'telegram/registration/mailing': [
|
|
555
589
|
':registration',
|
|
@@ -603,14 +637,11 @@ export const PathnameRoute = Object.freeze(
|
|
|
603
637
|
'venue/:venue': 'venue',
|
|
604
638
|
'venue/:venue/city/:city': 'venue/city',
|
|
605
639
|
'venues': 'venues',
|
|
606
|
-
'venues/city/:city': 'venues/city',
|
|
607
640
|
'venues/search': 'venues/search',
|
|
641
|
+
'venues/city/:city/search': 'venues/city/search',
|
|
608
642
|
'cover/:cover': 'cover',
|
|
609
643
|
'theme/:theme': 'theme',
|
|
610
644
|
'theme/:theme/cover/:cover': 'theme/cover',
|
|
611
|
-
'themes': 'themes',
|
|
612
|
-
'themes/cover/:cover': 'themes/cover',
|
|
613
|
-
'themes/games': 'themes/games',
|
|
614
645
|
'themes/search': 'themes/search',
|
|
615
646
|
'game/:game': 'game',
|
|
616
647
|
'game/:game/status/:status': 'game/status',
|
|
@@ -626,16 +657,18 @@ export const PathnameRoute = Object.freeze(
|
|
|
626
657
|
'game/:game/theme/:theme': 'game/theme',
|
|
627
658
|
'game/:game/theme/:theme/cover/:cover': 'game/theme/cover',
|
|
628
659
|
'game/:game/venue/:venue': 'game/venue',
|
|
629
|
-
'games': 'games',
|
|
660
|
+
'games/search': 'games/search',
|
|
630
661
|
'games/status/:status': 'games/status',
|
|
662
|
+
'games/status/:status/search': 'games/status/search',
|
|
631
663
|
'games/city/:city': 'games/city',
|
|
632
|
-
'games/
|
|
633
|
-
'games/registrations/export': 'games/registrations/export',
|
|
664
|
+
'games/city/:city/search': 'games/city/search',
|
|
634
665
|
'games/summary': 'games/summary',
|
|
666
|
+
'games/summary/search': 'games/summary/search',
|
|
635
667
|
'games/theme/:theme': 'games/theme',
|
|
668
|
+
'games/theme/:theme/search': 'games/theme/search',
|
|
636
669
|
'games/theme/:theme/cover/:cover': 'games/theme/cover',
|
|
637
670
|
'games/venue/:venue': 'games/venue',
|
|
638
|
-
'games/search': 'games/search',
|
|
671
|
+
'games/venue/:venue/search': 'games/venue/search',
|
|
639
672
|
'registration/:registration': 'registration',
|
|
640
673
|
'registration/:registration/status/:status': 'registration/status',
|
|
641
674
|
'registration/:registration/creation': 'registration/creation',
|
|
@@ -650,14 +683,19 @@ export const PathnameRoute = Object.freeze(
|
|
|
650
683
|
'registration/:registration/game/:game/theme/:theme/cover/:cover': 'registration/game/theme/cover',
|
|
651
684
|
'registration/:registration/game/:game/venue/:venue': 'registration/game/venue',
|
|
652
685
|
'registrations': 'registrations',
|
|
686
|
+
'registrations/search': 'registrations/search',
|
|
653
687
|
'registrations/status/:status': 'registrations/status',
|
|
688
|
+
'registrations/status/:status/search': 'registrations/status/search',
|
|
654
689
|
'registrations/lineup': 'registrations/lineup',
|
|
690
|
+
'registrations/lineup/search': 'registrations/lineup/search',
|
|
655
691
|
'registrations/city/:city': 'registrations/city',
|
|
692
|
+
'registrations/city/:city/search': 'registrations/city/search',
|
|
656
693
|
'registrations/game/:game': 'registrations/game',
|
|
694
|
+
'registrations/game/:game/search': 'registrations/game/search',
|
|
657
695
|
'registrations/game/:game/status/:status': 'registrations/game/status',
|
|
696
|
+
'registrations/game/:game/status/:status/search': 'registrations/game/status/search',
|
|
658
697
|
'registrations/game/:game/theme/:theme': 'registrations/game/theme',
|
|
659
|
-
'registrations/
|
|
660
|
-
'registrations/search': 'registrations/search',
|
|
698
|
+
'registrations/game/:game/theme/:theme/search': 'registrations/game/theme/search',
|
|
661
699
|
'telegram/webhook': 'telegram/webhook',
|
|
662
700
|
'telegram/registration/:registration/mailing': 'telegram/registration/mailing',
|
|
663
701
|
'chatapp/webhook': 'chatapp/webhook',
|
|
@@ -754,10 +792,10 @@ export const PathnameParameters = Object.freeze(
|
|
|
754
792
|
':city',
|
|
755
793
|
],
|
|
756
794
|
'venues': [],
|
|
757
|
-
'venues/
|
|
795
|
+
'venues/search': [],
|
|
796
|
+
'venues/city/:city/search': [
|
|
758
797
|
':city',
|
|
759
798
|
],
|
|
760
|
-
'venues/search': [],
|
|
761
799
|
'cover/:cover': [
|
|
762
800
|
':cover',
|
|
763
801
|
],
|
|
@@ -768,11 +806,6 @@ export const PathnameParameters = Object.freeze(
|
|
|
768
806
|
':theme',
|
|
769
807
|
':cover',
|
|
770
808
|
],
|
|
771
|
-
'themes': [],
|
|
772
|
-
'themes/cover/:cover': [
|
|
773
|
-
':cover',
|
|
774
|
-
],
|
|
775
|
-
'themes/games': [],
|
|
776
809
|
'themes/search': [],
|
|
777
810
|
'game/:game': [
|
|
778
811
|
':game',
|
|
@@ -827,19 +860,27 @@ export const PathnameParameters = Object.freeze(
|
|
|
827
860
|
':game',
|
|
828
861
|
':venue',
|
|
829
862
|
],
|
|
830
|
-
'games': [],
|
|
863
|
+
'games/search': [],
|
|
831
864
|
'games/status/:status': [
|
|
832
865
|
':status',
|
|
833
866
|
],
|
|
867
|
+
'games/status/:status/search': [
|
|
868
|
+
':status',
|
|
869
|
+
],
|
|
834
870
|
'games/city/:city': [
|
|
835
871
|
':city',
|
|
836
872
|
],
|
|
837
|
-
'games/
|
|
838
|
-
|
|
873
|
+
'games/city/:city/search': [
|
|
874
|
+
':city',
|
|
875
|
+
],
|
|
839
876
|
'games/summary': [],
|
|
877
|
+
'games/summary/search': [],
|
|
840
878
|
'games/theme/:theme': [
|
|
841
879
|
':theme',
|
|
842
880
|
],
|
|
881
|
+
'games/theme/:theme/search': [
|
|
882
|
+
':theme',
|
|
883
|
+
],
|
|
843
884
|
'games/theme/:theme/cover/:cover': [
|
|
844
885
|
':theme',
|
|
845
886
|
':cover',
|
|
@@ -847,7 +888,9 @@ export const PathnameParameters = Object.freeze(
|
|
|
847
888
|
'games/venue/:venue': [
|
|
848
889
|
':venue',
|
|
849
890
|
],
|
|
850
|
-
'games/search': [
|
|
891
|
+
'games/venue/:venue/search': [
|
|
892
|
+
':venue',
|
|
893
|
+
],
|
|
851
894
|
'registration/:registration': [
|
|
852
895
|
':registration',
|
|
853
896
|
],
|
|
@@ -898,26 +941,43 @@ export const PathnameParameters = Object.freeze(
|
|
|
898
941
|
':venue',
|
|
899
942
|
],
|
|
900
943
|
'registrations': [],
|
|
944
|
+
'registrations/search': [],
|
|
901
945
|
'registrations/status/:status': [
|
|
902
946
|
':status',
|
|
903
947
|
],
|
|
948
|
+
'registrations/status/:status/search': [
|
|
949
|
+
':status',
|
|
950
|
+
],
|
|
904
951
|
'registrations/lineup': [],
|
|
952
|
+
'registrations/lineup/search': [],
|
|
905
953
|
'registrations/city/:city': [
|
|
906
954
|
':city',
|
|
907
955
|
],
|
|
956
|
+
'registrations/city/:city/search': [
|
|
957
|
+
':city',
|
|
958
|
+
],
|
|
908
959
|
'registrations/game/:game': [
|
|
909
960
|
':game',
|
|
910
961
|
],
|
|
962
|
+
'registrations/game/:game/search': [
|
|
963
|
+
':game',
|
|
964
|
+
],
|
|
911
965
|
'registrations/game/:game/status/:status': [
|
|
912
966
|
':game',
|
|
913
967
|
':status',
|
|
914
968
|
],
|
|
969
|
+
'registrations/game/:game/status/:status/search': [
|
|
970
|
+
':game',
|
|
971
|
+
':status',
|
|
972
|
+
],
|
|
915
973
|
'registrations/game/:game/theme/:theme': [
|
|
916
974
|
':game',
|
|
917
975
|
':theme',
|
|
918
976
|
],
|
|
919
|
-
'registrations/
|
|
920
|
-
|
|
977
|
+
'registrations/game/:game/theme/:theme/search': [
|
|
978
|
+
':game',
|
|
979
|
+
':theme',
|
|
980
|
+
],
|
|
921
981
|
'telegram/webhook': [],
|
|
922
982
|
'telegram/registration/:registration/mailing': [
|
|
923
983
|
':registration',
|
|
@@ -988,14 +1048,11 @@ export const RouteBreakdown = Object.freeze(
|
|
|
988
1048
|
'venue': 'venue',
|
|
989
1049
|
'venue/city': 'venue/city',
|
|
990
1050
|
'venues': 'venue',
|
|
991
|
-
'venues/city': 'venue/city',
|
|
992
1051
|
'venues/search': 'venue/search',
|
|
1052
|
+
'venues/city/search': 'venue/city/search',
|
|
993
1053
|
'cover': 'cover',
|
|
994
1054
|
'theme': 'theme',
|
|
995
1055
|
'theme/cover': 'theme/cover',
|
|
996
|
-
'themes': 'theme',
|
|
997
|
-
'themes/cover': 'theme/cover',
|
|
998
|
-
'themes/games': 'theme/games',
|
|
999
1056
|
'themes/search': 'theme/search',
|
|
1000
1057
|
'game': 'game',
|
|
1001
1058
|
'game/status': 'game/status',
|
|
@@ -1011,16 +1068,18 @@ export const RouteBreakdown = Object.freeze(
|
|
|
1011
1068
|
'game/theme': 'game/theme',
|
|
1012
1069
|
'game/theme/cover': 'game/theme/cover',
|
|
1013
1070
|
'game/venue': 'game/venue',
|
|
1014
|
-
'games': 'game',
|
|
1071
|
+
'games/search': 'game/search',
|
|
1015
1072
|
'games/status': 'game/status',
|
|
1073
|
+
'games/status/search': 'game/status/search',
|
|
1016
1074
|
'games/city': 'game/city',
|
|
1017
|
-
'games/
|
|
1018
|
-
'games/registrations/export': 'game/registrations/export',
|
|
1075
|
+
'games/city/search': 'game/city/search',
|
|
1019
1076
|
'games/summary': 'game/summary',
|
|
1077
|
+
'games/summary/search': 'game/summary/search',
|
|
1020
1078
|
'games/theme': 'game/theme',
|
|
1079
|
+
'games/theme/search': 'game/theme/search',
|
|
1021
1080
|
'games/theme/cover': 'game/theme/cover',
|
|
1022
1081
|
'games/venue': 'game/venue',
|
|
1023
|
-
'games/search': 'game/search',
|
|
1082
|
+
'games/venue/search': 'game/venue/search',
|
|
1024
1083
|
'registration': 'registration',
|
|
1025
1084
|
'registration/status': 'registration/status',
|
|
1026
1085
|
'registration/creation': 'registration/creation',
|
|
@@ -1035,14 +1094,19 @@ export const RouteBreakdown = Object.freeze(
|
|
|
1035
1094
|
'registration/game/theme/cover': 'registration/game/theme/cover',
|
|
1036
1095
|
'registration/game/venue': 'registration/game/venue',
|
|
1037
1096
|
'registrations': 'registration',
|
|
1097
|
+
'registrations/search': 'registration/search',
|
|
1038
1098
|
'registrations/status': 'registration/status',
|
|
1099
|
+
'registrations/status/search': 'registration/status/search',
|
|
1039
1100
|
'registrations/lineup': 'registration/lineup',
|
|
1101
|
+
'registrations/lineup/search': 'registration/lineup/search',
|
|
1040
1102
|
'registrations/city': 'registration/city',
|
|
1103
|
+
'registrations/city/search': 'registration/city/search',
|
|
1041
1104
|
'registrations/game': 'registration/game',
|
|
1105
|
+
'registrations/game/search': 'registration/game/search',
|
|
1042
1106
|
'registrations/game/status': 'registration/game/status',
|
|
1107
|
+
'registrations/game/status/search': 'registration/game/status/search',
|
|
1043
1108
|
'registrations/game/theme': 'registration/game/theme',
|
|
1044
|
-
'registrations/
|
|
1045
|
-
'registrations/search': 'registration/search',
|
|
1109
|
+
'registrations/game/theme/search': 'registration/game/theme/search',
|
|
1046
1110
|
'telegram/webhook': 'telegram/webhook',
|
|
1047
1111
|
'telegram/registration/mailing': 'telegram/registration/mailing',
|
|
1048
1112
|
'chatapp/webhook': 'chatapp/webhook',
|
|
@@ -1088,14 +1152,11 @@ export const RouteRelation = Object.freeze(
|
|
|
1088
1152
|
'venue': 'venue',
|
|
1089
1153
|
'venue/city': 'venue/city',
|
|
1090
1154
|
'venues': 'venue',
|
|
1091
|
-
'venues/city': 'venue/city',
|
|
1092
1155
|
'venues/search': 'venue/search',
|
|
1156
|
+
'venues/city/search': 'city/search',
|
|
1093
1157
|
'cover': 'cover',
|
|
1094
1158
|
'theme': 'theme',
|
|
1095
1159
|
'theme/cover': 'theme/cover',
|
|
1096
|
-
'themes': 'theme',
|
|
1097
|
-
'themes/cover': 'theme/cover',
|
|
1098
|
-
'themes/games': 'theme/game',
|
|
1099
1160
|
'themes/search': 'theme/search',
|
|
1100
1161
|
'game': 'game',
|
|
1101
1162
|
'game/status': 'game/status',
|
|
@@ -1111,16 +1172,18 @@ export const RouteRelation = Object.freeze(
|
|
|
1111
1172
|
'game/theme': 'game/theme',
|
|
1112
1173
|
'game/theme/cover': 'theme/cover',
|
|
1113
1174
|
'game/venue': 'game/venue',
|
|
1114
|
-
'games': 'game',
|
|
1175
|
+
'games/search': 'game/search',
|
|
1115
1176
|
'games/status': 'game/status',
|
|
1177
|
+
'games/status/search': 'status/search',
|
|
1116
1178
|
'games/city': 'game/city',
|
|
1117
|
-
'games/
|
|
1118
|
-
'games/registrations/export': 'registration/export',
|
|
1179
|
+
'games/city/search': 'city/search',
|
|
1119
1180
|
'games/summary': 'game/summary',
|
|
1181
|
+
'games/summary/search': 'summary/search',
|
|
1120
1182
|
'games/theme': 'game/theme',
|
|
1183
|
+
'games/theme/search': 'theme/search',
|
|
1121
1184
|
'games/theme/cover': 'theme/cover',
|
|
1122
1185
|
'games/venue': 'game/venue',
|
|
1123
|
-
'games/search': '
|
|
1186
|
+
'games/venue/search': 'venue/search',
|
|
1124
1187
|
'registration': 'registration',
|
|
1125
1188
|
'registration/status': 'registration/status',
|
|
1126
1189
|
'registration/creation': 'registration/creation',
|
|
@@ -1135,14 +1198,19 @@ export const RouteRelation = Object.freeze(
|
|
|
1135
1198
|
'registration/game/theme/cover': 'theme/cover',
|
|
1136
1199
|
'registration/game/venue': 'game/venue',
|
|
1137
1200
|
'registrations': 'registration',
|
|
1201
|
+
'registrations/search': 'registration/search',
|
|
1138
1202
|
'registrations/status': 'registration/status',
|
|
1203
|
+
'registrations/status/search': 'status/search',
|
|
1139
1204
|
'registrations/lineup': 'registration/lineup',
|
|
1205
|
+
'registrations/lineup/search': 'lineup/search',
|
|
1140
1206
|
'registrations/city': 'registration/city',
|
|
1207
|
+
'registrations/city/search': 'city/search',
|
|
1141
1208
|
'registrations/game': 'registration/game',
|
|
1209
|
+
'registrations/game/search': 'game/search',
|
|
1142
1210
|
'registrations/game/status': 'game/status',
|
|
1211
|
+
'registrations/game/status/search': 'status/search',
|
|
1143
1212
|
'registrations/game/theme': 'game/theme',
|
|
1144
|
-
'registrations/
|
|
1145
|
-
'registrations/search': 'registration/search',
|
|
1213
|
+
'registrations/game/theme/search': 'theme/search',
|
|
1146
1214
|
'telegram/webhook': 'telegram/webhook',
|
|
1147
1215
|
'telegram/registration/mailing': 'registration/mailing',
|
|
1148
1216
|
'chatapp/webhook': 'chatapp/webhook',
|
|
@@ -1188,14 +1256,11 @@ export const RouteService = Object.freeze(
|
|
|
1188
1256
|
'venue': 'Venues',
|
|
1189
1257
|
'venue/city': 'Venues',
|
|
1190
1258
|
'venues': 'Venues',
|
|
1191
|
-
'venues/city': 'Venues',
|
|
1192
1259
|
'venues/search': 'Venues',
|
|
1260
|
+
'venues/city/search': 'Venues',
|
|
1193
1261
|
'cover': 'Minio',
|
|
1194
1262
|
'theme': 'Themes',
|
|
1195
1263
|
'theme/cover': 'Themes',
|
|
1196
|
-
'themes': 'Themes',
|
|
1197
|
-
'themes/cover': 'Themes',
|
|
1198
|
-
'themes/games': 'Themes',
|
|
1199
1264
|
'themes/search': 'Themes',
|
|
1200
1265
|
'game': 'Games',
|
|
1201
1266
|
'game/status': 'Games',
|
|
@@ -1211,16 +1276,18 @@ export const RouteService = Object.freeze(
|
|
|
1211
1276
|
'game/theme': 'Games',
|
|
1212
1277
|
'game/theme/cover': 'Games',
|
|
1213
1278
|
'game/venue': 'Games',
|
|
1214
|
-
'games': 'Games',
|
|
1279
|
+
'games/search': 'Games',
|
|
1215
1280
|
'games/status': 'Games',
|
|
1281
|
+
'games/status/search': 'Games',
|
|
1216
1282
|
'games/city': 'Games',
|
|
1217
|
-
'games/
|
|
1218
|
-
'games/registrations/export': 'Games',
|
|
1283
|
+
'games/city/search': 'Games',
|
|
1219
1284
|
'games/summary': 'Games',
|
|
1285
|
+
'games/summary/search': 'Games',
|
|
1220
1286
|
'games/theme': 'Games',
|
|
1287
|
+
'games/theme/search': 'Games',
|
|
1221
1288
|
'games/theme/cover': 'Games',
|
|
1222
1289
|
'games/venue': 'Games',
|
|
1223
|
-
'games/search': 'Games',
|
|
1290
|
+
'games/venue/search': 'Games',
|
|
1224
1291
|
'registration': 'Registrations',
|
|
1225
1292
|
'registration/status': 'Registrations',
|
|
1226
1293
|
'registration/creation': 'Registrations',
|
|
@@ -1235,14 +1302,19 @@ export const RouteService = Object.freeze(
|
|
|
1235
1302
|
'registration/game/theme/cover': 'Registrations',
|
|
1236
1303
|
'registration/game/venue': 'Registrations',
|
|
1237
1304
|
'registrations': 'Registrations',
|
|
1305
|
+
'registrations/search': 'Registrations',
|
|
1238
1306
|
'registrations/status': 'Registrations',
|
|
1307
|
+
'registrations/status/search': 'Registrations',
|
|
1239
1308
|
'registrations/lineup': 'Registrations',
|
|
1309
|
+
'registrations/lineup/search': 'Registrations',
|
|
1240
1310
|
'registrations/city': 'Registrations',
|
|
1311
|
+
'registrations/city/search': 'Registrations',
|
|
1241
1312
|
'registrations/game': 'Registrations',
|
|
1313
|
+
'registrations/game/search': 'Registrations',
|
|
1242
1314
|
'registrations/game/status': 'Registrations',
|
|
1315
|
+
'registrations/game/status/search': 'Registrations',
|
|
1243
1316
|
'registrations/game/theme': 'Registrations',
|
|
1244
|
-
'registrations/
|
|
1245
|
-
'registrations/search': 'Registrations',
|
|
1317
|
+
'registrations/game/theme/search': 'Registrations',
|
|
1246
1318
|
'telegram/webhook': 'Telegram',
|
|
1247
1319
|
'telegram/registration/mailing': 'Telegram',
|
|
1248
1320
|
'chatapp/webhook': 'Chatapp',
|
|
@@ -1299,8 +1371,8 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1299
1371
|
'venue',
|
|
1300
1372
|
'venue/city',
|
|
1301
1373
|
'venues',
|
|
1302
|
-
'venues/city',
|
|
1303
1374
|
'venues/search',
|
|
1375
|
+
'venues/city/search',
|
|
1304
1376
|
],
|
|
1305
1377
|
'Minio': [
|
|
1306
1378
|
'cover',
|
|
@@ -1308,9 +1380,6 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1308
1380
|
'Themes': [
|
|
1309
1381
|
'theme',
|
|
1310
1382
|
'theme/cover',
|
|
1311
|
-
'themes',
|
|
1312
|
-
'themes/cover',
|
|
1313
|
-
'themes/games',
|
|
1314
1383
|
'themes/search',
|
|
1315
1384
|
],
|
|
1316
1385
|
'Games': [
|
|
@@ -1328,16 +1397,18 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1328
1397
|
'game/theme',
|
|
1329
1398
|
'game/theme/cover',
|
|
1330
1399
|
'game/venue',
|
|
1331
|
-
'games',
|
|
1400
|
+
'games/search',
|
|
1332
1401
|
'games/status',
|
|
1402
|
+
'games/status/search',
|
|
1333
1403
|
'games/city',
|
|
1334
|
-
'games/
|
|
1335
|
-
'games/registrations/export',
|
|
1404
|
+
'games/city/search',
|
|
1336
1405
|
'games/summary',
|
|
1406
|
+
'games/summary/search',
|
|
1337
1407
|
'games/theme',
|
|
1408
|
+
'games/theme/search',
|
|
1338
1409
|
'games/theme/cover',
|
|
1339
1410
|
'games/venue',
|
|
1340
|
-
'games/search',
|
|
1411
|
+
'games/venue/search',
|
|
1341
1412
|
],
|
|
1342
1413
|
'Registrations': [
|
|
1343
1414
|
'registration',
|
|
@@ -1354,14 +1425,19 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1354
1425
|
'registration/game/theme/cover',
|
|
1355
1426
|
'registration/game/venue',
|
|
1356
1427
|
'registrations',
|
|
1428
|
+
'registrations/search',
|
|
1357
1429
|
'registrations/status',
|
|
1430
|
+
'registrations/status/search',
|
|
1358
1431
|
'registrations/lineup',
|
|
1432
|
+
'registrations/lineup/search',
|
|
1359
1433
|
'registrations/city',
|
|
1434
|
+
'registrations/city/search',
|
|
1360
1435
|
'registrations/game',
|
|
1436
|
+
'registrations/game/search',
|
|
1361
1437
|
'registrations/game/status',
|
|
1438
|
+
'registrations/game/status/search',
|
|
1362
1439
|
'registrations/game/theme',
|
|
1363
|
-
'registrations/
|
|
1364
|
-
'registrations/search',
|
|
1440
|
+
'registrations/game/theme/search',
|
|
1365
1441
|
],
|
|
1366
1442
|
'Telegram': [
|
|
1367
1443
|
'telegram/webhook',
|
|
@@ -33,14 +33,11 @@ export const Routes = Object.freeze(
|
|
|
33
33
|
'venue',
|
|
34
34
|
'venue/city',
|
|
35
35
|
'venues',
|
|
36
|
-
'venues/city',
|
|
37
36
|
'venues/search',
|
|
37
|
+
'venues/city/search',
|
|
38
38
|
'cover',
|
|
39
39
|
'theme',
|
|
40
40
|
'theme/cover',
|
|
41
|
-
'themes',
|
|
42
|
-
'themes/cover',
|
|
43
|
-
'themes/games',
|
|
44
41
|
'themes/search',
|
|
45
42
|
'game',
|
|
46
43
|
'game/status',
|
|
@@ -56,16 +53,18 @@ export const Routes = Object.freeze(
|
|
|
56
53
|
'game/theme',
|
|
57
54
|
'game/theme/cover',
|
|
58
55
|
'game/venue',
|
|
59
|
-
'games',
|
|
56
|
+
'games/search',
|
|
60
57
|
'games/status',
|
|
58
|
+
'games/status/search',
|
|
61
59
|
'games/city',
|
|
62
|
-
'games/
|
|
63
|
-
'games/registrations/export',
|
|
60
|
+
'games/city/search',
|
|
64
61
|
'games/summary',
|
|
62
|
+
'games/summary/search',
|
|
65
63
|
'games/theme',
|
|
64
|
+
'games/theme/search',
|
|
66
65
|
'games/theme/cover',
|
|
67
66
|
'games/venue',
|
|
68
|
-
'games/search',
|
|
67
|
+
'games/venue/search',
|
|
69
68
|
'registration',
|
|
70
69
|
'registration/status',
|
|
71
70
|
'registration/creation',
|
|
@@ -80,14 +79,19 @@ export const Routes = Object.freeze(
|
|
|
80
79
|
'registration/game/theme/cover',
|
|
81
80
|
'registration/game/venue',
|
|
82
81
|
'registrations',
|
|
82
|
+
'registrations/search',
|
|
83
83
|
'registrations/status',
|
|
84
|
+
'registrations/status/search',
|
|
84
85
|
'registrations/lineup',
|
|
86
|
+
'registrations/lineup/search',
|
|
85
87
|
'registrations/city',
|
|
88
|
+
'registrations/city/search',
|
|
86
89
|
'registrations/game',
|
|
90
|
+
'registrations/game/search',
|
|
87
91
|
'registrations/game/status',
|
|
92
|
+
'registrations/game/status/search',
|
|
88
93
|
'registrations/game/theme',
|
|
89
|
-
'registrations/
|
|
90
|
-
'registrations/search',
|
|
94
|
+
'registrations/game/theme/search',
|
|
91
95
|
'telegram/webhook',
|
|
92
96
|
'telegram/registration/mailing',
|
|
93
97
|
'chatapp/webhook',
|