@shakerquiz/utilities 4.0.46 → 4.0.48

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "4.0.46",
4
+ "version": "4.0.48",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -2,8 +2,6 @@
2
2
 
3
3
  export const RouteExcessiveCardinality = Object.freeze(
4
4
  /** @type {const} */ ({
5
- 'role': '1',
6
- 'roles': 'n',
7
5
  'user': '1',
8
6
  'user/password': '1/1',
9
7
  'user/role': '1/1',
@@ -13,7 +11,15 @@ export const RouteExcessiveCardinality = Object.freeze(
13
11
  'users/password': 'n/1',
14
12
  'users/role': 'n/1',
15
13
  'users/cities': 'n/n',
14
+ 'role': '1',
15
+ 'roles': 'n',
16
16
  'checkin': '1',
17
+ 'country': '1',
18
+ 'countries': 'n',
19
+ 'currency': '1',
20
+ 'currencies': 'n',
21
+ 'timezone': '1',
22
+ 'timezones': 'n',
17
23
  'cities': 'n',
18
24
  'cities/country': 'n/1',
19
25
  'cities/currency': 'n/1',
@@ -26,23 +32,13 @@ export const RouteExcessiveCardinality = Object.freeze(
26
32
  'city/timezone': '1/1',
27
33
  'city/venue': '1/1',
28
34
  'city/venues': '1/n',
29
- 'country': '1',
30
- 'countries': 'n',
31
- 'currency': '1',
32
- 'currencies': 'n',
33
- 'timezone': '1',
34
- 'timezones': 'n',
35
35
  'venue': '1',
36
36
  'venue/city': '1/1',
37
- 'venues': 'n',
38
- 'venues/city': 'n/1',
39
37
  'venues/search': 'n/1',
38
+ 'venues/city/search': 'n/1/1',
40
39
  'cover': '1',
41
40
  'theme': '1',
42
41
  'theme/cover': '1/1',
43
- 'themes': 'n',
44
- 'themes/cover': 'n/1',
45
- 'themes/games': 'n/n',
46
42
  'themes/search': 'n/1',
47
43
  'game': '1',
48
44
  'game/status': '1/1',
@@ -58,16 +54,13 @@ export const RouteExcessiveCardinality = Object.freeze(
58
54
  'game/theme': '1/1',
59
55
  'game/theme/cover': '1/1/1',
60
56
  'game/venue': '1/1',
61
- 'games': 'n',
62
- 'games/status': 'n/1',
63
- 'games/city': 'n/1',
64
- 'games/registrations': 'n/n',
65
- 'games/registrations/export': 'n/n/1',
66
- 'games/summary': 'n/1',
67
- 'games/theme': 'n/1',
68
- 'games/theme/cover': 'n/1/1',
69
- 'games/venue': 'n/1',
70
57
  'games/search': 'n/1',
58
+ 'games/status/search': 'n/1/1',
59
+ 'games/city/search': 'n/1/1',
60
+ 'games/summary/search': 'n/1/1',
61
+ 'games/theme/search': 'n/1/1',
62
+ 'games/theme/cover/search': 'n/1/1/1',
63
+ 'games/venue/search': 'n/1/1',
71
64
  'registration': '1',
72
65
  'registration/status': '1/1',
73
66
  'registration/creation': '1/1',
@@ -81,15 +74,13 @@ export const RouteExcessiveCardinality = Object.freeze(
81
74
  'registration/game/theme': '1/1/1',
82
75
  'registration/game/theme/cover': '1/1/1/1',
83
76
  'registration/game/venue': '1/1/1',
84
- 'registrations': 'n',
85
- 'registrations/status': 'n/1',
86
- 'registrations/lineup': 'n/1',
87
- 'registrations/city': 'n/1',
88
- 'registrations/game': 'n/1',
89
- 'registrations/game/status': 'n/1/1',
90
- 'registrations/game/theme': 'n/1/1',
91
- 'registrations/export': 'n/1',
92
77
  'registrations/search': 'n/1',
78
+ 'registrations/status/search': 'n/1/1',
79
+ 'registrations/lineup/search': 'n/1/1',
80
+ 'registrations/city/search': 'n/1/1',
81
+ 'registrations/game/search': 'n/1/1',
82
+ 'registrations/game/status/search': 'n/1/1/1',
83
+ 'registrations/game/theme/search': 'n/1/1/1',
93
84
  'telegram/webhook': '1/1',
94
85
  'telegram/registration/mailing': '1/1/1',
95
86
  'chatapp/webhook': '1/1',
@@ -102,8 +93,6 @@ export const RouteExcessiveCardinality = Object.freeze(
102
93
 
103
94
  export const RouteCardinality = Object.freeze(
104
95
  /** @type {const} */ ({
105
- 'role': '1',
106
- 'roles': 'n',
107
96
  'user': '1',
108
97
  'user/password': '1/1',
109
98
  'user/role': '1/1',
@@ -113,7 +102,15 @@ export const RouteCardinality = Object.freeze(
113
102
  'users/password': 'n/1',
114
103
  'users/role': 'n/1',
115
104
  'users/cities': 'n/n',
105
+ 'role': '1',
106
+ 'roles': 'n',
116
107
  'checkin': '1',
108
+ 'country': '1',
109
+ 'countries': 'n',
110
+ 'currency': '1',
111
+ 'currencies': 'n',
112
+ 'timezone': '1',
113
+ 'timezones': 'n',
117
114
  'cities': 'n',
118
115
  'cities/country': 'n/1',
119
116
  'cities/currency': 'n/1',
@@ -126,23 +123,13 @@ export const RouteCardinality = Object.freeze(
126
123
  'city/timezone': '1/1',
127
124
  'city/venue': '1/1',
128
125
  'city/venues': '1/n',
129
- 'country': '1',
130
- 'countries': 'n',
131
- 'currency': '1',
132
- 'currencies': 'n',
133
- 'timezone': '1',
134
- 'timezones': 'n',
135
126
  'venue': '1',
136
127
  'venue/city': '1/1',
137
- 'venues': 'n',
138
- 'venues/city': 'n/1',
139
128
  'venues/search': 'n/1',
129
+ 'venues/city/search': 'n/1',
140
130
  'cover': '1',
141
131
  'theme': '1',
142
132
  'theme/cover': '1/1',
143
- 'themes': 'n',
144
- 'themes/cover': 'n/1',
145
- 'themes/games': 'n/n',
146
133
  'themes/search': 'n/1',
147
134
  'game': '1',
148
135
  'game/status': '1/1',
@@ -158,16 +145,13 @@ export const RouteCardinality = Object.freeze(
158
145
  'game/theme': '1/1',
159
146
  'game/theme/cover': '1/1',
160
147
  'game/venue': '1/1',
161
- 'games': 'n',
162
- 'games/status': 'n/1',
163
- 'games/city': 'n/1',
164
- 'games/registrations': 'n/n',
165
- 'games/registrations/export': 'n/1',
166
- 'games/summary': 'n/1',
167
- 'games/theme': 'n/1',
168
- 'games/theme/cover': 'n/1',
169
- 'games/venue': 'n/1',
170
148
  'games/search': 'n/1',
149
+ 'games/status/search': 'n/1',
150
+ 'games/city/search': 'n/1',
151
+ 'games/summary/search': 'n/1',
152
+ 'games/theme/search': 'n/1',
153
+ 'games/theme/cover/search': 'n/1',
154
+ 'games/venue/search': 'n/1',
171
155
  'registration': '1',
172
156
  'registration/status': '1/1',
173
157
  'registration/creation': '1/1',
@@ -181,15 +165,13 @@ export const RouteCardinality = Object.freeze(
181
165
  'registration/game/theme': '1/1',
182
166
  'registration/game/theme/cover': '1/1',
183
167
  'registration/game/venue': '1/1',
184
- 'registrations': 'n',
185
- 'registrations/status': 'n/1',
186
- 'registrations/lineup': 'n/1',
187
- 'registrations/city': 'n/1',
188
- 'registrations/game': 'n/1',
189
- 'registrations/game/status': 'n/1',
190
- 'registrations/game/theme': 'n/1',
191
- 'registrations/export': 'n/1',
192
168
  'registrations/search': 'n/1',
169
+ 'registrations/status/search': 'n/1',
170
+ 'registrations/lineup/search': 'n/1',
171
+ 'registrations/city/search': 'n/1',
172
+ 'registrations/game/search': 'n/1',
173
+ 'registrations/game/status/search': 'n/1',
174
+ 'registrations/game/theme/search': 'n/1',
193
175
  'telegram/webhook': '1/1',
194
176
  'telegram/registration/mailing': '1/1',
195
177
  'chatapp/webhook': '1/1',
@@ -202,8 +184,6 @@ export const RouteCardinality = Object.freeze(
202
184
 
203
185
  export const RoutePathname = Object.freeze(
204
186
  /** @type {const} */ ({
205
- 'role': 'role/:role',
206
- 'roles': 'roles',
207
187
  'user': 'user/:user',
208
188
  'user/password': 'user/:user/password',
209
189
  'user/role': 'user/:user/role/:role',
@@ -213,7 +193,15 @@ export const RoutePathname = Object.freeze(
213
193
  'users/password': 'users/password',
214
194
  'users/role': 'users/role/:role',
215
195
  'users/cities': 'users/cities',
196
+ 'role': 'role/:role',
197
+ 'roles': 'roles',
216
198
  'checkin': 'checkin',
199
+ 'country': 'country/:country',
200
+ 'countries': 'countries',
201
+ 'currency': 'currency/:currency',
202
+ 'currencies': 'currencies',
203
+ 'timezone': 'timezone/:timezone',
204
+ 'timezones': 'timezones',
217
205
  'cities': 'cities',
218
206
  'cities/country': 'cities/country/:country',
219
207
  'cities/currency': 'cities/currency/:currency',
@@ -226,23 +214,13 @@ export const RoutePathname = Object.freeze(
226
214
  'city/timezone': 'city/:city/timezone/:timezone',
227
215
  'city/venue': 'city/:city/venue/:venue',
228
216
  'city/venues': 'city/:city/venues',
229
- 'country': 'country/:country',
230
- 'countries': 'countries',
231
- 'currency': 'currency/:currency',
232
- 'currencies': 'currencies',
233
- 'timezone': 'timezone/:timezone',
234
- 'timezones': 'timezones',
235
217
  'venue': 'venue/:venue',
236
218
  'venue/city': 'venue/:venue/city/:city',
237
- 'venues': 'venues',
238
- 'venues/city': 'venues/city/:city',
239
219
  'venues/search': 'venues/search',
220
+ 'venues/city/search': 'venues/city/:city/search',
240
221
  'cover': 'cover/:cover',
241
222
  'theme': 'theme/:theme',
242
223
  'theme/cover': 'theme/:theme/cover/:cover',
243
- 'themes': 'themes',
244
- 'themes/cover': 'themes/cover/:cover',
245
- 'themes/games': 'themes/games',
246
224
  'themes/search': 'themes/search',
247
225
  'game': 'game/:game',
248
226
  'game/status': 'game/:game/status/:status',
@@ -258,16 +236,13 @@ export const RoutePathname = Object.freeze(
258
236
  'game/theme': 'game/:game/theme/:theme',
259
237
  'game/theme/cover': 'game/:game/theme/:theme/cover/:cover',
260
238
  'game/venue': 'game/:game/venue/:venue',
261
- 'games': 'games',
262
- 'games/status': 'games/status/:status',
263
- 'games/city': 'games/city/:city',
264
- 'games/registrations': 'games/registrations',
265
- 'games/registrations/export': 'games/registrations/export',
266
- 'games/summary': 'games/summary',
267
- 'games/theme': 'games/theme/:theme',
268
- 'games/theme/cover': 'games/theme/:theme/cover/:cover',
269
- 'games/venue': 'games/venue/:venue',
270
239
  'games/search': 'games/search',
240
+ 'games/status/search': 'games/status/:status/search',
241
+ 'games/city/search': 'games/city/:city/search',
242
+ 'games/summary/search': 'games/summary/search',
243
+ 'games/theme/search': 'games/theme/:theme/search',
244
+ 'games/theme/cover/search': 'games/theme/:theme/cover/:cover/search',
245
+ 'games/venue/search': 'games/venue/:venue/search',
271
246
  'registration': 'registration/:registration',
272
247
  'registration/status': 'registration/:registration/status/:status',
273
248
  'registration/creation': 'registration/:registration/creation',
@@ -281,15 +256,13 @@ export const RoutePathname = Object.freeze(
281
256
  'registration/game/theme': 'registration/:registration/game/:game/theme/:theme',
282
257
  'registration/game/theme/cover': 'registration/:registration/game/:game/theme/:theme/cover/:cover',
283
258
  'registration/game/venue': 'registration/:registration/game/:game/venue/:venue',
284
- 'registrations': 'registrations',
285
- 'registrations/status': 'registrations/status/:status',
286
- 'registrations/lineup': 'registrations/lineup',
287
- 'registrations/city': 'registrations/city/:city',
288
- 'registrations/game': 'registrations/game/:game',
289
- 'registrations/game/status': 'registrations/game/:game/status/:status',
290
- 'registrations/game/theme': 'registrations/game/:game/theme/:theme',
291
- 'registrations/export': 'registrations/export',
292
259
  'registrations/search': 'registrations/search',
260
+ 'registrations/status/search': 'registrations/status/:status/search',
261
+ 'registrations/lineup/search': 'registrations/lineup/search',
262
+ 'registrations/city/search': 'registrations/city/:city/search',
263
+ 'registrations/game/search': 'registrations/game/:game/search',
264
+ 'registrations/game/status/search': 'registrations/game/:game/status/:status/search',
265
+ 'registrations/game/theme/search': 'registrations/game/:game/theme/:theme/search',
293
266
  'telegram/webhook': 'telegram/webhook',
294
267
  'telegram/registration/mailing': 'telegram/registration/:registration/mailing',
295
268
  'chatapp/webhook': 'chatapp/webhook',
@@ -302,10 +275,6 @@ export const RoutePathname = Object.freeze(
302
275
 
303
276
  export const RouteParameters = Object.freeze(
304
277
  /** @type {const} */ ({
305
- 'role': [
306
- ':role',
307
- ],
308
- 'roles': [],
309
278
  'user': [
310
279
  ':user',
311
280
  ],
@@ -329,7 +298,23 @@ export const RouteParameters = Object.freeze(
329
298
  ':role',
330
299
  ],
331
300
  'users/cities': [],
301
+ 'role': [
302
+ ':role',
303
+ ],
304
+ 'roles': [],
332
305
  'checkin': [],
306
+ 'country': [
307
+ ':country',
308
+ ],
309
+ 'countries': [],
310
+ 'currency': [
311
+ ':currency',
312
+ ],
313
+ 'currencies': [],
314
+ 'timezone': [
315
+ ':timezone',
316
+ ],
317
+ 'timezones': [],
333
318
  'cities': [],
334
319
  'cities/country': [
335
320
  ':country',
@@ -366,18 +351,6 @@ export const RouteParameters = Object.freeze(
366
351
  'city/venues': [
367
352
  ':city',
368
353
  ],
369
- 'country': [
370
- ':country',
371
- ],
372
- 'countries': [],
373
- 'currency': [
374
- ':currency',
375
- ],
376
- 'currencies': [],
377
- 'timezone': [
378
- ':timezone',
379
- ],
380
- 'timezones': [],
381
354
  'venue': [
382
355
  ':venue',
383
356
  ],
@@ -385,11 +358,10 @@ export const RouteParameters = Object.freeze(
385
358
  ':venue',
386
359
  ':city',
387
360
  ],
388
- 'venues': [],
389
- 'venues/city': [
361
+ 'venues/search': [],
362
+ 'venues/city/search': [
390
363
  ':city',
391
364
  ],
392
- 'venues/search': [],
393
365
  'cover': [
394
366
  ':cover',
395
367
  ],
@@ -400,11 +372,6 @@ export const RouteParameters = Object.freeze(
400
372
  ':theme',
401
373
  ':cover',
402
374
  ],
403
- 'themes': [],
404
- 'themes/cover': [
405
- ':cover',
406
- ],
407
- 'themes/games': [],
408
375
  'themes/search': [],
409
376
  'game': [
410
377
  ':game',
@@ -459,27 +426,24 @@ export const RouteParameters = Object.freeze(
459
426
  ':game',
460
427
  ':venue',
461
428
  ],
462
- 'games': [],
463
- 'games/status': [
429
+ 'games/search': [],
430
+ 'games/status/search': [
464
431
  ':status',
465
432
  ],
466
- 'games/city': [
433
+ 'games/city/search': [
467
434
  ':city',
468
435
  ],
469
- 'games/registrations': [],
470
- 'games/registrations/export': [],
471
- 'games/summary': [],
472
- 'games/theme': [
436
+ 'games/summary/search': [],
437
+ 'games/theme/search': [
473
438
  ':theme',
474
439
  ],
475
- 'games/theme/cover': [
440
+ 'games/theme/cover/search': [
476
441
  ':theme',
477
442
  ':cover',
478
443
  ],
479
- 'games/venue': [
444
+ 'games/venue/search': [
480
445
  ':venue',
481
446
  ],
482
- 'games/search': [],
483
447
  'registration': [
484
448
  ':registration',
485
449
  ],
@@ -529,27 +493,25 @@ export const RouteParameters = Object.freeze(
529
493
  ':game',
530
494
  ':venue',
531
495
  ],
532
- 'registrations': [],
533
- 'registrations/status': [
496
+ 'registrations/search': [],
497
+ 'registrations/status/search': [
534
498
  ':status',
535
499
  ],
536
- 'registrations/lineup': [],
537
- 'registrations/city': [
500
+ 'registrations/lineup/search': [],
501
+ 'registrations/city/search': [
538
502
  ':city',
539
503
  ],
540
- 'registrations/game': [
504
+ 'registrations/game/search': [
541
505
  ':game',
542
506
  ],
543
- 'registrations/game/status': [
507
+ 'registrations/game/status/search': [
544
508
  ':game',
545
509
  ':status',
546
510
  ],
547
- 'registrations/game/theme': [
511
+ 'registrations/game/theme/search': [
548
512
  ':game',
549
513
  ':theme',
550
514
  ],
551
- 'registrations/export': [],
552
- 'registrations/search': [],
553
515
  'telegram/webhook': [],
554
516
  'telegram/registration/mailing': [
555
517
  ':registration',
@@ -570,8 +532,6 @@ export const RouteParameters = Object.freeze(
570
532
 
571
533
  export const PathnameRoute = Object.freeze(
572
534
  /** @type {const} */ ({
573
- 'role/:role': 'role',
574
- 'roles': 'roles',
575
535
  'user/:user': 'user',
576
536
  'user/:user/password': 'user/password',
577
537
  'user/:user/role/:role': 'user/role',
@@ -581,7 +541,15 @@ export const PathnameRoute = Object.freeze(
581
541
  'users/password': 'users/password',
582
542
  'users/role/:role': 'users/role',
583
543
  'users/cities': 'users/cities',
544
+ 'role/:role': 'role',
545
+ 'roles': 'roles',
584
546
  'checkin': 'checkin',
547
+ 'country/:country': 'country',
548
+ 'countries': 'countries',
549
+ 'currency/:currency': 'currency',
550
+ 'currencies': 'currencies',
551
+ 'timezone/:timezone': 'timezone',
552
+ 'timezones': 'timezones',
585
553
  'cities': 'cities',
586
554
  'cities/country/:country': 'cities/country',
587
555
  'cities/currency/:currency': 'cities/currency',
@@ -594,23 +562,13 @@ export const PathnameRoute = Object.freeze(
594
562
  'city/:city/timezone/:timezone': 'city/timezone',
595
563
  'city/:city/venue/:venue': 'city/venue',
596
564
  'city/:city/venues': 'city/venues',
597
- 'country/:country': 'country',
598
- 'countries': 'countries',
599
- 'currency/:currency': 'currency',
600
- 'currencies': 'currencies',
601
- 'timezone/:timezone': 'timezone',
602
- 'timezones': 'timezones',
603
565
  'venue/:venue': 'venue',
604
566
  'venue/:venue/city/:city': 'venue/city',
605
- 'venues': 'venues',
606
- 'venues/city/:city': 'venues/city',
607
567
  'venues/search': 'venues/search',
568
+ 'venues/city/:city/search': 'venues/city/search',
608
569
  'cover/:cover': 'cover',
609
570
  'theme/:theme': 'theme',
610
571
  'theme/:theme/cover/:cover': 'theme/cover',
611
- 'themes': 'themes',
612
- 'themes/cover/:cover': 'themes/cover',
613
- 'themes/games': 'themes/games',
614
572
  'themes/search': 'themes/search',
615
573
  'game/:game': 'game',
616
574
  'game/:game/status/:status': 'game/status',
@@ -626,16 +584,13 @@ export const PathnameRoute = Object.freeze(
626
584
  'game/:game/theme/:theme': 'game/theme',
627
585
  'game/:game/theme/:theme/cover/:cover': 'game/theme/cover',
628
586
  'game/:game/venue/:venue': 'game/venue',
629
- 'games': 'games',
630
- 'games/status/:status': 'games/status',
631
- 'games/city/:city': 'games/city',
632
- 'games/registrations': 'games/registrations',
633
- 'games/registrations/export': 'games/registrations/export',
634
- 'games/summary': 'games/summary',
635
- 'games/theme/:theme': 'games/theme',
636
- 'games/theme/:theme/cover/:cover': 'games/theme/cover',
637
- 'games/venue/:venue': 'games/venue',
638
587
  'games/search': 'games/search',
588
+ 'games/status/:status/search': 'games/status/search',
589
+ 'games/city/:city/search': 'games/city/search',
590
+ 'games/summary/search': 'games/summary/search',
591
+ 'games/theme/:theme/search': 'games/theme/search',
592
+ 'games/theme/:theme/cover/:cover/search': 'games/theme/cover/search',
593
+ 'games/venue/:venue/search': 'games/venue/search',
639
594
  'registration/:registration': 'registration',
640
595
  'registration/:registration/status/:status': 'registration/status',
641
596
  'registration/:registration/creation': 'registration/creation',
@@ -649,15 +604,13 @@ export const PathnameRoute = Object.freeze(
649
604
  'registration/:registration/game/:game/theme/:theme': 'registration/game/theme',
650
605
  'registration/:registration/game/:game/theme/:theme/cover/:cover': 'registration/game/theme/cover',
651
606
  'registration/:registration/game/:game/venue/:venue': 'registration/game/venue',
652
- 'registrations': 'registrations',
653
- 'registrations/status/:status': 'registrations/status',
654
- 'registrations/lineup': 'registrations/lineup',
655
- 'registrations/city/:city': 'registrations/city',
656
- 'registrations/game/:game': 'registrations/game',
657
- 'registrations/game/:game/status/:status': 'registrations/game/status',
658
- 'registrations/game/:game/theme/:theme': 'registrations/game/theme',
659
- 'registrations/export': 'registrations/export',
660
607
  'registrations/search': 'registrations/search',
608
+ 'registrations/status/:status/search': 'registrations/status/search',
609
+ 'registrations/lineup/search': 'registrations/lineup/search',
610
+ 'registrations/city/:city/search': 'registrations/city/search',
611
+ 'registrations/game/:game/search': 'registrations/game/search',
612
+ 'registrations/game/:game/status/:status/search': 'registrations/game/status/search',
613
+ 'registrations/game/:game/theme/:theme/search': 'registrations/game/theme/search',
661
614
  'telegram/webhook': 'telegram/webhook',
662
615
  'telegram/registration/:registration/mailing': 'telegram/registration/mailing',
663
616
  'chatapp/webhook': 'chatapp/webhook',
@@ -670,10 +623,6 @@ export const PathnameRoute = Object.freeze(
670
623
 
671
624
  export const PathnameParameters = Object.freeze(
672
625
  /** @type {const} */ ({
673
- 'role/:role': [
674
- ':role',
675
- ],
676
- 'roles': [],
677
626
  'user/:user': [
678
627
  ':user',
679
628
  ],
@@ -697,7 +646,23 @@ export const PathnameParameters = Object.freeze(
697
646
  ':role',
698
647
  ],
699
648
  'users/cities': [],
649
+ 'role/:role': [
650
+ ':role',
651
+ ],
652
+ 'roles': [],
700
653
  'checkin': [],
654
+ 'country/:country': [
655
+ ':country',
656
+ ],
657
+ 'countries': [],
658
+ 'currency/:currency': [
659
+ ':currency',
660
+ ],
661
+ 'currencies': [],
662
+ 'timezone/:timezone': [
663
+ ':timezone',
664
+ ],
665
+ 'timezones': [],
701
666
  'cities': [],
702
667
  'cities/country/:country': [
703
668
  ':country',
@@ -734,18 +699,6 @@ export const PathnameParameters = Object.freeze(
734
699
  'city/:city/venues': [
735
700
  ':city',
736
701
  ],
737
- 'country/:country': [
738
- ':country',
739
- ],
740
- 'countries': [],
741
- 'currency/:currency': [
742
- ':currency',
743
- ],
744
- 'currencies': [],
745
- 'timezone/:timezone': [
746
- ':timezone',
747
- ],
748
- 'timezones': [],
749
702
  'venue/:venue': [
750
703
  ':venue',
751
704
  ],
@@ -753,11 +706,10 @@ export const PathnameParameters = Object.freeze(
753
706
  ':venue',
754
707
  ':city',
755
708
  ],
756
- 'venues': [],
757
- 'venues/city/:city': [
709
+ 'venues/search': [],
710
+ 'venues/city/:city/search': [
758
711
  ':city',
759
712
  ],
760
- 'venues/search': [],
761
713
  'cover/:cover': [
762
714
  ':cover',
763
715
  ],
@@ -768,11 +720,6 @@ export const PathnameParameters = Object.freeze(
768
720
  ':theme',
769
721
  ':cover',
770
722
  ],
771
- 'themes': [],
772
- 'themes/cover/:cover': [
773
- ':cover',
774
- ],
775
- 'themes/games': [],
776
723
  'themes/search': [],
777
724
  'game/:game': [
778
725
  ':game',
@@ -827,27 +774,24 @@ export const PathnameParameters = Object.freeze(
827
774
  ':game',
828
775
  ':venue',
829
776
  ],
830
- 'games': [],
831
- 'games/status/:status': [
777
+ 'games/search': [],
778
+ 'games/status/:status/search': [
832
779
  ':status',
833
780
  ],
834
- 'games/city/:city': [
781
+ 'games/city/:city/search': [
835
782
  ':city',
836
783
  ],
837
- 'games/registrations': [],
838
- 'games/registrations/export': [],
839
- 'games/summary': [],
840
- 'games/theme/:theme': [
784
+ 'games/summary/search': [],
785
+ 'games/theme/:theme/search': [
841
786
  ':theme',
842
787
  ],
843
- 'games/theme/:theme/cover/:cover': [
788
+ 'games/theme/:theme/cover/:cover/search': [
844
789
  ':theme',
845
790
  ':cover',
846
791
  ],
847
- 'games/venue/:venue': [
792
+ 'games/venue/:venue/search': [
848
793
  ':venue',
849
794
  ],
850
- 'games/search': [],
851
795
  'registration/:registration': [
852
796
  ':registration',
853
797
  ],
@@ -897,27 +841,25 @@ export const PathnameParameters = Object.freeze(
897
841
  ':game',
898
842
  ':venue',
899
843
  ],
900
- 'registrations': [],
901
- 'registrations/status/:status': [
844
+ 'registrations/search': [],
845
+ 'registrations/status/:status/search': [
902
846
  ':status',
903
847
  ],
904
- 'registrations/lineup': [],
905
- 'registrations/city/:city': [
848
+ 'registrations/lineup/search': [],
849
+ 'registrations/city/:city/search': [
906
850
  ':city',
907
851
  ],
908
- 'registrations/game/:game': [
852
+ 'registrations/game/:game/search': [
909
853
  ':game',
910
854
  ],
911
- 'registrations/game/:game/status/:status': [
855
+ 'registrations/game/:game/status/:status/search': [
912
856
  ':game',
913
857
  ':status',
914
858
  ],
915
- 'registrations/game/:game/theme/:theme': [
859
+ 'registrations/game/:game/theme/:theme/search': [
916
860
  ':game',
917
861
  ':theme',
918
862
  ],
919
- 'registrations/export': [],
920
- 'registrations/search': [],
921
863
  'telegram/webhook': [],
922
864
  'telegram/registration/:registration/mailing': [
923
865
  ':registration',
@@ -955,8 +897,6 @@ export const ParameterPattern = Object.freeze(
955
897
 
956
898
  export const RouteBreakdown = Object.freeze(
957
899
  /** @type {const} */ ({
958
- 'role': 'role',
959
- 'roles': 'role',
960
900
  'user': 'user',
961
901
  'user/password': 'user/password',
962
902
  'user/role': 'user/role',
@@ -966,7 +906,15 @@ export const RouteBreakdown = Object.freeze(
966
906
  'users/password': 'user/password',
967
907
  'users/role': 'user/role',
968
908
  'users/cities': 'user/cities',
909
+ 'role': 'role',
910
+ 'roles': 'role',
969
911
  'checkin': 'checkin',
912
+ 'country': 'country',
913
+ 'countries': 'country',
914
+ 'currency': 'currency',
915
+ 'currencies': 'currency',
916
+ 'timezone': 'timezone',
917
+ 'timezones': 'timezone',
970
918
  'cities': 'city',
971
919
  'cities/country': 'city/country',
972
920
  'cities/currency': 'city/currency',
@@ -979,23 +927,13 @@ export const RouteBreakdown = Object.freeze(
979
927
  'city/timezone': 'city/timezone',
980
928
  'city/venue': 'city/venue',
981
929
  'city/venues': 'city/venues',
982
- 'country': 'country',
983
- 'countries': 'country',
984
- 'currency': 'currency',
985
- 'currencies': 'currency',
986
- 'timezone': 'timezone',
987
- 'timezones': 'timezone',
988
930
  'venue': 'venue',
989
931
  'venue/city': 'venue/city',
990
- 'venues': 'venue',
991
- 'venues/city': 'venue/city',
992
932
  'venues/search': 'venue/search',
933
+ 'venues/city/search': 'venue/city/search',
993
934
  'cover': 'cover',
994
935
  'theme': 'theme',
995
936
  'theme/cover': 'theme/cover',
996
- 'themes': 'theme',
997
- 'themes/cover': 'theme/cover',
998
- 'themes/games': 'theme/games',
999
937
  'themes/search': 'theme/search',
1000
938
  'game': 'game',
1001
939
  'game/status': 'game/status',
@@ -1011,16 +949,13 @@ export const RouteBreakdown = Object.freeze(
1011
949
  'game/theme': 'game/theme',
1012
950
  'game/theme/cover': 'game/theme/cover',
1013
951
  'game/venue': 'game/venue',
1014
- 'games': 'game',
1015
- 'games/status': 'game/status',
1016
- 'games/city': 'game/city',
1017
- 'games/registrations': 'game/registrations',
1018
- 'games/registrations/export': 'game/registrations/export',
1019
- 'games/summary': 'game/summary',
1020
- 'games/theme': 'game/theme',
1021
- 'games/theme/cover': 'game/theme/cover',
1022
- 'games/venue': 'game/venue',
1023
952
  'games/search': 'game/search',
953
+ 'games/status/search': 'game/status/search',
954
+ 'games/city/search': 'game/city/search',
955
+ 'games/summary/search': 'game/summary/search',
956
+ 'games/theme/search': 'game/theme/search',
957
+ 'games/theme/cover/search': 'game/theme/cover/search',
958
+ 'games/venue/search': 'game/venue/search',
1024
959
  'registration': 'registration',
1025
960
  'registration/status': 'registration/status',
1026
961
  'registration/creation': 'registration/creation',
@@ -1034,15 +969,13 @@ export const RouteBreakdown = Object.freeze(
1034
969
  'registration/game/theme': 'registration/game/theme',
1035
970
  'registration/game/theme/cover': 'registration/game/theme/cover',
1036
971
  'registration/game/venue': 'registration/game/venue',
1037
- 'registrations': 'registration',
1038
- 'registrations/status': 'registration/status',
1039
- 'registrations/lineup': 'registration/lineup',
1040
- 'registrations/city': 'registration/city',
1041
- 'registrations/game': 'registration/game',
1042
- 'registrations/game/status': 'registration/game/status',
1043
- 'registrations/game/theme': 'registration/game/theme',
1044
- 'registrations/export': 'registration/export',
1045
972
  'registrations/search': 'registration/search',
973
+ 'registrations/status/search': 'registration/status/search',
974
+ 'registrations/lineup/search': 'registration/lineup/search',
975
+ 'registrations/city/search': 'registration/city/search',
976
+ 'registrations/game/search': 'registration/game/search',
977
+ 'registrations/game/status/search': 'registration/game/status/search',
978
+ 'registrations/game/theme/search': 'registration/game/theme/search',
1046
979
  'telegram/webhook': 'telegram/webhook',
1047
980
  'telegram/registration/mailing': 'telegram/registration/mailing',
1048
981
  'chatapp/webhook': 'chatapp/webhook',
@@ -1055,8 +988,6 @@ export const RouteBreakdown = Object.freeze(
1055
988
 
1056
989
  export const RouteRelation = Object.freeze(
1057
990
  /** @type {const} */ ({
1058
- 'role': 'role',
1059
- 'roles': 'role',
1060
991
  'user': 'user',
1061
992
  'user/password': 'user/password',
1062
993
  'user/role': 'user/role',
@@ -1066,7 +997,15 @@ export const RouteRelation = Object.freeze(
1066
997
  'users/password': 'user/password',
1067
998
  'users/role': 'user/role',
1068
999
  'users/cities': 'user/city',
1000
+ 'role': 'role',
1001
+ 'roles': 'role',
1069
1002
  'checkin': 'checkin',
1003
+ 'country': 'country',
1004
+ 'countries': 'country',
1005
+ 'currency': 'currency',
1006
+ 'currencies': 'currency',
1007
+ 'timezone': 'timezone',
1008
+ 'timezones': 'timezone',
1070
1009
  'cities': 'city',
1071
1010
  'cities/country': 'city/country',
1072
1011
  'cities/currency': 'city/currency',
@@ -1079,23 +1018,13 @@ export const RouteRelation = Object.freeze(
1079
1018
  'city/timezone': 'city/timezone',
1080
1019
  'city/venue': 'city/venue',
1081
1020
  'city/venues': 'city/venue',
1082
- 'country': 'country',
1083
- 'countries': 'country',
1084
- 'currency': 'currency',
1085
- 'currencies': 'currency',
1086
- 'timezone': 'timezone',
1087
- 'timezones': 'timezone',
1088
1021
  'venue': 'venue',
1089
1022
  'venue/city': 'venue/city',
1090
- 'venues': 'venue',
1091
- 'venues/city': 'venue/city',
1092
1023
  'venues/search': 'venue/search',
1024
+ 'venues/city/search': 'city/search',
1093
1025
  'cover': 'cover',
1094
1026
  'theme': 'theme',
1095
1027
  'theme/cover': 'theme/cover',
1096
- 'themes': 'theme',
1097
- 'themes/cover': 'theme/cover',
1098
- 'themes/games': 'theme/game',
1099
1028
  'themes/search': 'theme/search',
1100
1029
  'game': 'game',
1101
1030
  'game/status': 'game/status',
@@ -1111,16 +1040,13 @@ export const RouteRelation = Object.freeze(
1111
1040
  'game/theme': 'game/theme',
1112
1041
  'game/theme/cover': 'theme/cover',
1113
1042
  'game/venue': 'game/venue',
1114
- 'games': 'game',
1115
- 'games/status': 'game/status',
1116
- 'games/city': 'game/city',
1117
- 'games/registrations': 'game/registration',
1118
- 'games/registrations/export': 'registration/export',
1119
- 'games/summary': 'game/summary',
1120
- 'games/theme': 'game/theme',
1121
- 'games/theme/cover': 'theme/cover',
1122
- 'games/venue': 'game/venue',
1123
1043
  'games/search': 'game/search',
1044
+ 'games/status/search': 'status/search',
1045
+ 'games/city/search': 'city/search',
1046
+ 'games/summary/search': 'summary/search',
1047
+ 'games/theme/search': 'theme/search',
1048
+ 'games/theme/cover/search': 'cover/search',
1049
+ 'games/venue/search': 'venue/search',
1124
1050
  'registration': 'registration',
1125
1051
  'registration/status': 'registration/status',
1126
1052
  'registration/creation': 'registration/creation',
@@ -1134,15 +1060,13 @@ export const RouteRelation = Object.freeze(
1134
1060
  'registration/game/theme': 'game/theme',
1135
1061
  'registration/game/theme/cover': 'theme/cover',
1136
1062
  'registration/game/venue': 'game/venue',
1137
- 'registrations': 'registration',
1138
- 'registrations/status': 'registration/status',
1139
- 'registrations/lineup': 'registration/lineup',
1140
- 'registrations/city': 'registration/city',
1141
- 'registrations/game': 'registration/game',
1142
- 'registrations/game/status': 'game/status',
1143
- 'registrations/game/theme': 'game/theme',
1144
- 'registrations/export': 'registration/export',
1145
1063
  'registrations/search': 'registration/search',
1064
+ 'registrations/status/search': 'status/search',
1065
+ 'registrations/lineup/search': 'lineup/search',
1066
+ 'registrations/city/search': 'city/search',
1067
+ 'registrations/game/search': 'game/search',
1068
+ 'registrations/game/status/search': 'status/search',
1069
+ 'registrations/game/theme/search': 'theme/search',
1146
1070
  'telegram/webhook': 'telegram/webhook',
1147
1071
  'telegram/registration/mailing': 'registration/mailing',
1148
1072
  'chatapp/webhook': 'chatapp/webhook',
@@ -1155,8 +1079,6 @@ export const RouteRelation = Object.freeze(
1155
1079
 
1156
1080
  export const RouteService = Object.freeze(
1157
1081
  /** @type {const} */ ({
1158
- 'role': 'Roles',
1159
- 'roles': 'Roles',
1160
1082
  'user': 'Users',
1161
1083
  'user/password': 'Users',
1162
1084
  'user/role': 'Users',
@@ -1166,7 +1088,15 @@ export const RouteService = Object.freeze(
1166
1088
  'users/password': 'Users',
1167
1089
  'users/role': 'Users',
1168
1090
  'users/cities': 'Users',
1091
+ 'role': 'Roles',
1092
+ 'roles': 'Roles',
1169
1093
  'checkin': 'Checkin',
1094
+ 'country': 'Locations',
1095
+ 'countries': 'Locations',
1096
+ 'currency': 'Locations',
1097
+ 'currencies': 'Locations',
1098
+ 'timezone': 'Locations',
1099
+ 'timezones': 'Locations',
1170
1100
  'cities': 'Cities',
1171
1101
  'cities/country': 'Cities',
1172
1102
  'cities/currency': 'Cities',
@@ -1179,23 +1109,13 @@ export const RouteService = Object.freeze(
1179
1109
  'city/timezone': 'Cities',
1180
1110
  'city/venue': 'Cities',
1181
1111
  'city/venues': 'Cities',
1182
- 'country': 'Locations',
1183
- 'countries': 'Locations',
1184
- 'currency': 'Locations',
1185
- 'currencies': 'Locations',
1186
- 'timezone': 'Locations',
1187
- 'timezones': 'Locations',
1188
1112
  'venue': 'Venues',
1189
1113
  'venue/city': 'Venues',
1190
- 'venues': 'Venues',
1191
- 'venues/city': 'Venues',
1192
1114
  'venues/search': 'Venues',
1115
+ 'venues/city/search': 'Venues',
1193
1116
  'cover': 'Minio',
1194
1117
  'theme': 'Themes',
1195
1118
  'theme/cover': 'Themes',
1196
- 'themes': 'Themes',
1197
- 'themes/cover': 'Themes',
1198
- 'themes/games': 'Themes',
1199
1119
  'themes/search': 'Themes',
1200
1120
  'game': 'Games',
1201
1121
  'game/status': 'Games',
@@ -1211,16 +1131,13 @@ export const RouteService = Object.freeze(
1211
1131
  'game/theme': 'Games',
1212
1132
  'game/theme/cover': 'Games',
1213
1133
  'game/venue': 'Games',
1214
- 'games': 'Games',
1215
- 'games/status': 'Games',
1216
- 'games/city': 'Games',
1217
- 'games/registrations': 'Games',
1218
- 'games/registrations/export': 'Games',
1219
- 'games/summary': 'Games',
1220
- 'games/theme': 'Games',
1221
- 'games/theme/cover': 'Games',
1222
- 'games/venue': 'Games',
1223
1134
  'games/search': 'Games',
1135
+ 'games/status/search': 'Games',
1136
+ 'games/city/search': 'Games',
1137
+ 'games/summary/search': 'Games',
1138
+ 'games/theme/search': 'Games',
1139
+ 'games/theme/cover/search': 'Games',
1140
+ 'games/venue/search': 'Games',
1224
1141
  'registration': 'Registrations',
1225
1142
  'registration/status': 'Registrations',
1226
1143
  'registration/creation': 'Registrations',
@@ -1234,15 +1151,13 @@ export const RouteService = Object.freeze(
1234
1151
  'registration/game/theme': 'Registrations',
1235
1152
  'registration/game/theme/cover': 'Registrations',
1236
1153
  'registration/game/venue': 'Registrations',
1237
- 'registrations': 'Registrations',
1238
- 'registrations/status': 'Registrations',
1239
- 'registrations/lineup': 'Registrations',
1240
- 'registrations/city': 'Registrations',
1241
- 'registrations/game': 'Registrations',
1242
- 'registrations/game/status': 'Registrations',
1243
- 'registrations/game/theme': 'Registrations',
1244
- 'registrations/export': 'Registrations',
1245
1154
  'registrations/search': 'Registrations',
1155
+ 'registrations/status/search': 'Registrations',
1156
+ 'registrations/lineup/search': 'Registrations',
1157
+ 'registrations/city/search': 'Registrations',
1158
+ 'registrations/game/search': 'Registrations',
1159
+ 'registrations/game/status/search': 'Registrations',
1160
+ 'registrations/game/theme/search': 'Registrations',
1246
1161
  'telegram/webhook': 'Telegram',
1247
1162
  'telegram/registration/mailing': 'Telegram',
1248
1163
  'chatapp/webhook': 'Chatapp',
@@ -1255,10 +1170,6 @@ export const RouteService = Object.freeze(
1255
1170
 
1256
1171
  export const ServiceRoutes = Object.freeze(
1257
1172
  /** @type {const} */ ({
1258
- 'Roles': [
1259
- 'role',
1260
- 'roles',
1261
- ],
1262
1173
  'Users': [
1263
1174
  'user',
1264
1175
  'user/password',
@@ -1270,9 +1181,21 @@ export const ServiceRoutes = Object.freeze(
1270
1181
  'users/role',
1271
1182
  'users/cities',
1272
1183
  ],
1184
+ 'Roles': [
1185
+ 'role',
1186
+ 'roles',
1187
+ ],
1273
1188
  'Checkin': [
1274
1189
  'checkin',
1275
1190
  ],
1191
+ 'Locations': [
1192
+ 'country',
1193
+ 'countries',
1194
+ 'currency',
1195
+ 'currencies',
1196
+ 'timezone',
1197
+ 'timezones',
1198
+ ],
1276
1199
  'Cities': [
1277
1200
  'cities',
1278
1201
  'cities/country',
@@ -1287,20 +1210,11 @@ export const ServiceRoutes = Object.freeze(
1287
1210
  'city/venue',
1288
1211
  'city/venues',
1289
1212
  ],
1290
- 'Locations': [
1291
- 'country',
1292
- 'countries',
1293
- 'currency',
1294
- 'currencies',
1295
- 'timezone',
1296
- 'timezones',
1297
- ],
1298
1213
  'Venues': [
1299
1214
  'venue',
1300
1215
  'venue/city',
1301
- 'venues',
1302
- 'venues/city',
1303
1216
  'venues/search',
1217
+ 'venues/city/search',
1304
1218
  ],
1305
1219
  'Minio': [
1306
1220
  'cover',
@@ -1308,9 +1222,6 @@ export const ServiceRoutes = Object.freeze(
1308
1222
  'Themes': [
1309
1223
  'theme',
1310
1224
  'theme/cover',
1311
- 'themes',
1312
- 'themes/cover',
1313
- 'themes/games',
1314
1225
  'themes/search',
1315
1226
  ],
1316
1227
  'Games': [
@@ -1328,16 +1239,13 @@ export const ServiceRoutes = Object.freeze(
1328
1239
  'game/theme',
1329
1240
  'game/theme/cover',
1330
1241
  'game/venue',
1331
- 'games',
1332
- 'games/status',
1333
- 'games/city',
1334
- 'games/registrations',
1335
- 'games/registrations/export',
1336
- 'games/summary',
1337
- 'games/theme',
1338
- 'games/theme/cover',
1339
- 'games/venue',
1340
1242
  'games/search',
1243
+ 'games/status/search',
1244
+ 'games/city/search',
1245
+ 'games/summary/search',
1246
+ 'games/theme/search',
1247
+ 'games/theme/cover/search',
1248
+ 'games/venue/search',
1341
1249
  ],
1342
1250
  'Registrations': [
1343
1251
  'registration',
@@ -1353,15 +1261,13 @@ export const ServiceRoutes = Object.freeze(
1353
1261
  'registration/game/theme',
1354
1262
  'registration/game/theme/cover',
1355
1263
  'registration/game/venue',
1356
- 'registrations',
1357
- 'registrations/status',
1358
- 'registrations/lineup',
1359
- 'registrations/city',
1360
- 'registrations/game',
1361
- 'registrations/game/status',
1362
- 'registrations/game/theme',
1363
- 'registrations/export',
1364
1264
  'registrations/search',
1265
+ 'registrations/status/search',
1266
+ 'registrations/lineup/search',
1267
+ 'registrations/city/search',
1268
+ 'registrations/game/search',
1269
+ 'registrations/game/status/search',
1270
+ 'registrations/game/theme/search',
1365
1271
  ],
1366
1272
  'Telegram': [
1367
1273
  'telegram/webhook',
@@ -1,7 +1,5 @@
1
1
  export const Routes = Object.freeze(
2
2
  /** @type {const} */ ([
3
- 'role',
4
- 'roles',
5
3
  'user',
6
4
  'user/password',
7
5
  'user/role',
@@ -11,7 +9,15 @@ export const Routes = Object.freeze(
11
9
  'users/password',
12
10
  'users/role',
13
11
  'users/cities',
12
+ 'role',
13
+ 'roles',
14
14
  'checkin',
15
+ 'country',
16
+ 'countries',
17
+ 'currency',
18
+ 'currencies',
19
+ 'timezone',
20
+ 'timezones',
15
21
  'cities',
16
22
  'cities/country',
17
23
  'cities/currency',
@@ -24,23 +30,13 @@ export const Routes = Object.freeze(
24
30
  'city/timezone',
25
31
  'city/venue',
26
32
  'city/venues',
27
- 'country',
28
- 'countries',
29
- 'currency',
30
- 'currencies',
31
- 'timezone',
32
- 'timezones',
33
33
  'venue',
34
34
  'venue/city',
35
- 'venues',
36
- 'venues/city',
37
35
  'venues/search',
36
+ 'venues/city/search',
38
37
  'cover',
39
38
  'theme',
40
39
  'theme/cover',
41
- 'themes',
42
- 'themes/cover',
43
- 'themes/games',
44
40
  'themes/search',
45
41
  'game',
46
42
  'game/status',
@@ -56,16 +52,13 @@ export const Routes = Object.freeze(
56
52
  'game/theme',
57
53
  'game/theme/cover',
58
54
  'game/venue',
59
- 'games',
60
- 'games/status',
61
- 'games/city',
62
- 'games/registrations',
63
- 'games/registrations/export',
64
- 'games/summary',
65
- 'games/theme',
66
- 'games/theme/cover',
67
- 'games/venue',
68
55
  'games/search',
56
+ 'games/status/search',
57
+ 'games/city/search',
58
+ 'games/summary/search',
59
+ 'games/theme/search',
60
+ 'games/theme/cover/search',
61
+ 'games/venue/search',
69
62
  'registration',
70
63
  'registration/status',
71
64
  'registration/creation',
@@ -79,22 +72,20 @@ export const Routes = Object.freeze(
79
72
  'registration/game/theme',
80
73
  'registration/game/theme/cover',
81
74
  'registration/game/venue',
82
- 'registrations',
83
- 'registrations/status',
84
- 'registrations/lineup',
85
- 'registrations/city',
86
- 'registrations/game',
87
- 'registrations/game/status',
88
- 'registrations/game/theme',
89
- 'registrations/export',
90
75
  'registrations/search',
76
+ 'registrations/status/search',
77
+ 'registrations/lineup/search',
78
+ 'registrations/city/search',
79
+ 'registrations/game/search',
80
+ 'registrations/game/status/search',
81
+ 'registrations/game/theme/search',
91
82
  'telegram/webhook',
92
83
  'telegram/registration/mailing',
93
84
  'chatapp/webhook',
94
85
  'chatapp/registration',
95
86
  'chatapp/registration/mailing',
96
87
  'bitrix/registration',
97
- 'source'
88
+ 'source',
98
89
  ]),
99
90
  )
100
91