@shakerquiz/utilities 4.0.36 → 4.0.38
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/scripts/codegen.js +16 -11
- package/scripts/template.js +6 -0
- package/source/codegen/autogenerated.js +113 -56
- package/source/entities/routes.js +0 -3
package/package.json
CHANGED
package/scripts/codegen.js
CHANGED
|
@@ -21,18 +21,14 @@ let parameters = pathname =>
|
|
|
21
21
|
.split('/')
|
|
22
22
|
.filter(x => x.includes(':'))
|
|
23
23
|
|
|
24
|
-
let breakdown = route =>
|
|
25
|
-
route
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
else if (Segment[x].cardinality === '1')
|
|
31
|
-
return x
|
|
32
|
-
else
|
|
33
|
-
return Segment[x].relation
|
|
34
|
-
})
|
|
24
|
+
let breakdown = route => {
|
|
25
|
+
let segments = route.split('/')
|
|
26
|
+
|
|
27
|
+
return segments
|
|
28
|
+
.slice(segments.length >= 3 ? -2 : 0)
|
|
29
|
+
.map(x => Segment[x].cardinality === '1' ? x : Segment[x].relation)
|
|
35
30
|
.join('/')
|
|
31
|
+
}
|
|
36
32
|
|
|
37
33
|
let service = route =>
|
|
38
34
|
route
|
|
@@ -41,6 +37,14 @@ let service = route =>
|
|
|
41
37
|
.map(x => Segment[x].service)
|
|
42
38
|
.at(0)
|
|
43
39
|
|
|
40
|
+
let RouteExcessiveCardinality = Routes
|
|
41
|
+
.map(route => [
|
|
42
|
+
route,
|
|
43
|
+
route.split('/').map(a => Segment[a].cardinality).join('/'),
|
|
44
|
+
])
|
|
45
|
+
.map(([route, cardinality]) => `'${route}': '${cardinality}'`)
|
|
46
|
+
.join(',\n ')
|
|
47
|
+
|
|
44
48
|
let RouteCardinality = Routes
|
|
45
49
|
.map(route => [
|
|
46
50
|
route,
|
|
@@ -92,6 +96,7 @@ let ServiceRoutes = Object
|
|
|
92
96
|
Bun.write(
|
|
93
97
|
'./source/codegen/autogenerated.js',
|
|
94
98
|
template
|
|
99
|
+
.replace('/* route -> excessive cardinality */', RouteExcessiveCardinality)
|
|
95
100
|
.replace('/* route -> cardinality */', RouteCardinality)
|
|
96
101
|
.replace('/* route -> pathname */', RoutePathname)
|
|
97
102
|
.replace('/* route -> parameters */', RouteParameters)
|
package/scripts/template.js
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
/* --- Autogenerated --- */
|
|
2
2
|
|
|
3
|
+
export const RouteExcessiveCardinality = Object.freeze(
|
|
4
|
+
/** @type {const} */ ({
|
|
5
|
+
/* route -> excessive cardinality */
|
|
6
|
+
}),
|
|
7
|
+
)
|
|
8
|
+
|
|
3
9
|
export const RouteCardinality = Object.freeze(
|
|
4
10
|
/** @type {const} */ ({
|
|
5
11
|
/* route -> cardinality */
|
|
@@ -1,5 +1,98 @@
|
|
|
1
1
|
/* --- Autogenerated --- */
|
|
2
2
|
|
|
3
|
+
export const RouteExcessiveCardinality = Object.freeze(
|
|
4
|
+
/** @type {const} */ ({
|
|
5
|
+
'role': '1',
|
|
6
|
+
'roles': 'n',
|
|
7
|
+
'user': '1',
|
|
8
|
+
'user/password': '1/1',
|
|
9
|
+
'user/role': '1/1',
|
|
10
|
+
'user/city': '1/1',
|
|
11
|
+
'user/cities': '1/n',
|
|
12
|
+
'users': 'n',
|
|
13
|
+
'users/password': 'n/1',
|
|
14
|
+
'users/role': 'n/1',
|
|
15
|
+
'users/cities': 'n/n',
|
|
16
|
+
'checkin': '1',
|
|
17
|
+
'cities': 'n',
|
|
18
|
+
'cities/country': 'n/1',
|
|
19
|
+
'cities/currency': 'n/1',
|
|
20
|
+
'cities/timezone': 'n/1',
|
|
21
|
+
'cities/venues': 'n/n',
|
|
22
|
+
'city': '1',
|
|
23
|
+
'city/vk_group_token': '1/1',
|
|
24
|
+
'city/country': '1/1',
|
|
25
|
+
'city/currency': '1/1',
|
|
26
|
+
'city/timezone': '1/1',
|
|
27
|
+
'city/venue': '1/1',
|
|
28
|
+
'city/venues': '1/n',
|
|
29
|
+
'country': '1',
|
|
30
|
+
'countries': 'n',
|
|
31
|
+
'currency': '1',
|
|
32
|
+
'currencies': 'n',
|
|
33
|
+
'timezone': '1',
|
|
34
|
+
'timezones': 'n',
|
|
35
|
+
'venue': '1',
|
|
36
|
+
'venue/city': '1/1',
|
|
37
|
+
'venues': 'n',
|
|
38
|
+
'venues/city': 'n/1',
|
|
39
|
+
'cover': '1',
|
|
40
|
+
'theme': '1',
|
|
41
|
+
'theme/cover': '1/1',
|
|
42
|
+
'themes': 'n',
|
|
43
|
+
'themes/cover': 'n/1',
|
|
44
|
+
'themes/games': 'n/n',
|
|
45
|
+
'game': '1',
|
|
46
|
+
'game/status': '1/1',
|
|
47
|
+
'game/city': '1/1',
|
|
48
|
+
'game/registrations': '1/n',
|
|
49
|
+
'game/registrations/status': '1/n/1',
|
|
50
|
+
'game/registrations/lineup': '1/n/1',
|
|
51
|
+
'game/registrations/export': '1/n/1',
|
|
52
|
+
'game/summary': '1/1',
|
|
53
|
+
'game/theme': '1/1',
|
|
54
|
+
'game/theme/cover': '1/1/1',
|
|
55
|
+
'game/venue': '1/1',
|
|
56
|
+
'games': 'n',
|
|
57
|
+
'games/status': 'n/1',
|
|
58
|
+
'games/city': 'n/1',
|
|
59
|
+
'games/registrations': 'n/n',
|
|
60
|
+
'games/registrations/export': 'n/n/1',
|
|
61
|
+
'games/summary': 'n/1',
|
|
62
|
+
'games/theme': 'n/1',
|
|
63
|
+
'games/theme/cover': 'n/1/1',
|
|
64
|
+
'games/venue': 'n/1',
|
|
65
|
+
'registration': '1',
|
|
66
|
+
'registration/status': '1/1',
|
|
67
|
+
'registration/creation': '1/1',
|
|
68
|
+
'registration/confirmation': '1/1',
|
|
69
|
+
'registration/cancellation': '1/1',
|
|
70
|
+
'registration/lineup': '1/1',
|
|
71
|
+
'registration/channel': '1/1',
|
|
72
|
+
'registration/export': '1/1',
|
|
73
|
+
'registration/city': '1/1',
|
|
74
|
+
'registration/game': '1/1',
|
|
75
|
+
'registration/game/theme': '1/1/1',
|
|
76
|
+
'registration/game/theme/cover': '1/1/1/1',
|
|
77
|
+
'registration/game/venue': '1/1/1',
|
|
78
|
+
'registrations': 'n',
|
|
79
|
+
'registrations/status': 'n/1',
|
|
80
|
+
'registrations/lineup': 'n/1',
|
|
81
|
+
'registrations/city': 'n/1',
|
|
82
|
+
'registrations/game': 'n/1',
|
|
83
|
+
'registrations/game/status': 'n/1/1',
|
|
84
|
+
'registrations/game/theme': 'n/1/1',
|
|
85
|
+
'registrations/export': 'n/1',
|
|
86
|
+
'telegram/webhook': '1/1',
|
|
87
|
+
'telegram/registration/mailing': '1/1/1',
|
|
88
|
+
'chatapp/webhook': '1/1',
|
|
89
|
+
'chatapp/registration': '1/1',
|
|
90
|
+
'chatapp/registration/mailing': '1/1/1',
|
|
91
|
+
'bitrix/registration': '1/1',
|
|
92
|
+
'source': '1',
|
|
93
|
+
}),
|
|
94
|
+
)
|
|
95
|
+
|
|
3
96
|
export const RouteCardinality = Object.freeze(
|
|
4
97
|
/** @type {const} */ ({
|
|
5
98
|
'role': '1',
|
|
@@ -44,7 +137,6 @@ export const RouteCardinality = Object.freeze(
|
|
|
44
137
|
'themes/games': 'n/n',
|
|
45
138
|
'game': '1',
|
|
46
139
|
'game/status': '1/1',
|
|
47
|
-
'game/statuses': '1/n',
|
|
48
140
|
'game/city': '1/1',
|
|
49
141
|
'game/registrations': '1/n',
|
|
50
142
|
'game/registrations/status': '1/1',
|
|
@@ -65,12 +157,10 @@ export const RouteCardinality = Object.freeze(
|
|
|
65
157
|
'games/venue': 'n/1',
|
|
66
158
|
'registration': '1',
|
|
67
159
|
'registration/status': '1/1',
|
|
68
|
-
'registration/statuses': '1/n',
|
|
69
160
|
'registration/creation': '1/1',
|
|
70
161
|
'registration/confirmation': '1/1',
|
|
71
162
|
'registration/cancellation': '1/1',
|
|
72
163
|
'registration/lineup': '1/1',
|
|
73
|
-
'registration/lineups': '1/n',
|
|
74
164
|
'registration/channel': '1/1',
|
|
75
165
|
'registration/export': '1/1',
|
|
76
166
|
'registration/city': '1/1',
|
|
@@ -140,7 +230,6 @@ export const RoutePathname = Object.freeze(
|
|
|
140
230
|
'themes/games': 'themes/games',
|
|
141
231
|
'game': 'game/:game',
|
|
142
232
|
'game/status': 'game/:game/status/:status',
|
|
143
|
-
'game/statuses': 'game/:game/statuses',
|
|
144
233
|
'game/city': 'game/:game/city/:city',
|
|
145
234
|
'game/registrations': 'game/:game/registrations',
|
|
146
235
|
'game/registrations/status': 'game/:game/registrations/status/:status',
|
|
@@ -161,12 +250,10 @@ export const RoutePathname = Object.freeze(
|
|
|
161
250
|
'games/venue': 'games/venue/:venue',
|
|
162
251
|
'registration': 'registration/:registration',
|
|
163
252
|
'registration/status': 'registration/:registration/status/:status',
|
|
164
|
-
'registration/statuses': 'registration/:registration/statuses',
|
|
165
253
|
'registration/creation': 'registration/:registration/creation',
|
|
166
254
|
'registration/confirmation': 'registration/:registration/confirmation',
|
|
167
255
|
'registration/cancellation': 'registration/:registration/cancellation',
|
|
168
256
|
'registration/lineup': 'registration/:registration/lineup',
|
|
169
|
-
'registration/lineups': 'registration/:registration/lineups',
|
|
170
257
|
'registration/channel': 'registration/:registration/channel',
|
|
171
258
|
'registration/export': 'registration/:registration/export',
|
|
172
259
|
'registration/city': 'registration/:registration/city/:city',
|
|
@@ -303,9 +390,6 @@ export const RouteParameters = Object.freeze(
|
|
|
303
390
|
':game',
|
|
304
391
|
':status',
|
|
305
392
|
],
|
|
306
|
-
'game/statuses': [
|
|
307
|
-
':game',
|
|
308
|
-
],
|
|
309
393
|
'game/city': [
|
|
310
394
|
':game',
|
|
311
395
|
':city',
|
|
@@ -366,9 +450,6 @@ export const RouteParameters = Object.freeze(
|
|
|
366
450
|
':registration',
|
|
367
451
|
':status',
|
|
368
452
|
],
|
|
369
|
-
'registration/statuses': [
|
|
370
|
-
':registration',
|
|
371
|
-
],
|
|
372
453
|
'registration/creation': [
|
|
373
454
|
':registration',
|
|
374
455
|
],
|
|
@@ -381,9 +462,6 @@ export const RouteParameters = Object.freeze(
|
|
|
381
462
|
'registration/lineup': [
|
|
382
463
|
':registration',
|
|
383
464
|
],
|
|
384
|
-
'registration/lineups': [
|
|
385
|
-
':registration',
|
|
386
|
-
],
|
|
387
465
|
'registration/channel': [
|
|
388
466
|
':registration',
|
|
389
467
|
],
|
|
@@ -496,7 +574,6 @@ export const PathnameRoute = Object.freeze(
|
|
|
496
574
|
'themes/games': 'themes/games',
|
|
497
575
|
'game/:game': 'game',
|
|
498
576
|
'game/:game/status/:status': 'game/status',
|
|
499
|
-
'game/:game/statuses': 'game/statuses',
|
|
500
577
|
'game/:game/city/:city': 'game/city',
|
|
501
578
|
'game/:game/registrations': 'game/registrations',
|
|
502
579
|
'game/:game/registrations/status/:status': 'game/registrations/status',
|
|
@@ -517,12 +594,10 @@ export const PathnameRoute = Object.freeze(
|
|
|
517
594
|
'games/venue/:venue': 'games/venue',
|
|
518
595
|
'registration/:registration': 'registration',
|
|
519
596
|
'registration/:registration/status/:status': 'registration/status',
|
|
520
|
-
'registration/:registration/statuses': 'registration/statuses',
|
|
521
597
|
'registration/:registration/creation': 'registration/creation',
|
|
522
598
|
'registration/:registration/confirmation': 'registration/confirmation',
|
|
523
599
|
'registration/:registration/cancellation': 'registration/cancellation',
|
|
524
600
|
'registration/:registration/lineup': 'registration/lineup',
|
|
525
|
-
'registration/:registration/lineups': 'registration/lineups',
|
|
526
601
|
'registration/:registration/channel': 'registration/channel',
|
|
527
602
|
'registration/:registration/export': 'registration/export',
|
|
528
603
|
'registration/:registration/city/:city': 'registration/city',
|
|
@@ -659,9 +734,6 @@ export const PathnameParameters = Object.freeze(
|
|
|
659
734
|
':game',
|
|
660
735
|
':status',
|
|
661
736
|
],
|
|
662
|
-
'game/:game/statuses': [
|
|
663
|
-
':game',
|
|
664
|
-
],
|
|
665
737
|
'game/:game/city/:city': [
|
|
666
738
|
':game',
|
|
667
739
|
':city',
|
|
@@ -722,9 +794,6 @@ export const PathnameParameters = Object.freeze(
|
|
|
722
794
|
':registration',
|
|
723
795
|
':status',
|
|
724
796
|
],
|
|
725
|
-
'registration/:registration/statuses': [
|
|
726
|
-
':registration',
|
|
727
|
-
],
|
|
728
797
|
'registration/:registration/creation': [
|
|
729
798
|
':registration',
|
|
730
799
|
],
|
|
@@ -737,9 +806,6 @@ export const PathnameParameters = Object.freeze(
|
|
|
737
806
|
'registration/:registration/lineup': [
|
|
738
807
|
':registration',
|
|
739
808
|
],
|
|
740
|
-
'registration/:registration/lineups': [
|
|
741
|
-
':registration',
|
|
742
|
-
],
|
|
743
809
|
'registration/:registration/channel': [
|
|
744
810
|
':registration',
|
|
745
811
|
],
|
|
@@ -833,24 +899,24 @@ export const RouteBreakdown = Object.freeze(
|
|
|
833
899
|
'user/password': 'user/password',
|
|
834
900
|
'user/role': 'user/role',
|
|
835
901
|
'user/city': 'user/city',
|
|
836
|
-
'user/cities': 'user/
|
|
902
|
+
'user/cities': 'user/city',
|
|
837
903
|
'users': 'user',
|
|
838
904
|
'users/password': 'user/password',
|
|
839
905
|
'users/role': 'user/role',
|
|
840
|
-
'users/cities': 'user/
|
|
906
|
+
'users/cities': 'user/city',
|
|
841
907
|
'checkin': 'checkin',
|
|
842
908
|
'cities': 'city',
|
|
843
909
|
'cities/country': 'city/country',
|
|
844
910
|
'cities/currency': 'city/currency',
|
|
845
911
|
'cities/timezone': 'city/timezone',
|
|
846
|
-
'cities/venues': 'city/
|
|
912
|
+
'cities/venues': 'city/venue',
|
|
847
913
|
'city': 'city',
|
|
848
914
|
'city/vk_group_token': 'city/vk_group_token',
|
|
849
915
|
'city/country': 'city/country',
|
|
850
916
|
'city/currency': 'city/currency',
|
|
851
917
|
'city/timezone': 'city/timezone',
|
|
852
918
|
'city/venue': 'city/venue',
|
|
853
|
-
'city/venues': 'city/
|
|
919
|
+
'city/venues': 'city/venue',
|
|
854
920
|
'country': 'country',
|
|
855
921
|
'countries': 'country',
|
|
856
922
|
'currency': 'currency',
|
|
@@ -866,56 +932,53 @@ export const RouteBreakdown = Object.freeze(
|
|
|
866
932
|
'theme/cover': 'theme/cover',
|
|
867
933
|
'themes': 'theme',
|
|
868
934
|
'themes/cover': 'theme/cover',
|
|
869
|
-
'themes/games': 'theme/
|
|
935
|
+
'themes/games': 'theme/game',
|
|
870
936
|
'game': 'game',
|
|
871
937
|
'game/status': 'game/status',
|
|
872
|
-
'game/statuses': 'game/statuses',
|
|
873
938
|
'game/city': 'game/city',
|
|
874
|
-
'game/registrations': 'game/
|
|
875
|
-
'game/registrations/status': '
|
|
876
|
-
'game/registrations/lineup': '
|
|
877
|
-
'game/registrations/export': '
|
|
939
|
+
'game/registrations': 'game/registration',
|
|
940
|
+
'game/registrations/status': 'registration/status',
|
|
941
|
+
'game/registrations/lineup': 'registration/lineup',
|
|
942
|
+
'game/registrations/export': 'registration/export',
|
|
878
943
|
'game/summary': 'game/summary',
|
|
879
944
|
'game/theme': 'game/theme',
|
|
880
|
-
'game/theme/cover': '
|
|
945
|
+
'game/theme/cover': 'theme/cover',
|
|
881
946
|
'game/venue': 'game/venue',
|
|
882
947
|
'games': 'game',
|
|
883
948
|
'games/status': 'game/status',
|
|
884
949
|
'games/city': 'game/city',
|
|
885
|
-
'games/registrations': 'game/
|
|
886
|
-
'games/registrations/export': '
|
|
950
|
+
'games/registrations': 'game/registration',
|
|
951
|
+
'games/registrations/export': 'registration/export',
|
|
887
952
|
'games/summary': 'game/summary',
|
|
888
953
|
'games/theme': 'game/theme',
|
|
889
|
-
'games/theme/cover': '
|
|
954
|
+
'games/theme/cover': 'theme/cover',
|
|
890
955
|
'games/venue': 'game/venue',
|
|
891
956
|
'registration': 'registration',
|
|
892
957
|
'registration/status': 'registration/status',
|
|
893
|
-
'registration/statuses': 'registration/statuses',
|
|
894
958
|
'registration/creation': 'registration/creation',
|
|
895
959
|
'registration/confirmation': 'registration/confirmation',
|
|
896
960
|
'registration/cancellation': 'registration/cancellation',
|
|
897
961
|
'registration/lineup': 'registration/lineup',
|
|
898
|
-
'registration/lineups': 'registration/lineups',
|
|
899
962
|
'registration/channel': 'registration/channel',
|
|
900
963
|
'registration/export': 'registration/export',
|
|
901
964
|
'registration/city': 'registration/city',
|
|
902
965
|
'registration/game': 'registration/game',
|
|
903
|
-
'registration/game/theme': '
|
|
904
|
-
'registration/game/theme/cover': '
|
|
905
|
-
'registration/game/venue': '
|
|
966
|
+
'registration/game/theme': 'game/theme',
|
|
967
|
+
'registration/game/theme/cover': 'theme/cover',
|
|
968
|
+
'registration/game/venue': 'game/venue',
|
|
906
969
|
'registrations': 'registration',
|
|
907
970
|
'registrations/status': 'registration/status',
|
|
908
971
|
'registrations/lineup': 'registration/lineup',
|
|
909
972
|
'registrations/city': 'registration/city',
|
|
910
973
|
'registrations/game': 'registration/game',
|
|
911
|
-
'registrations/game/status': '
|
|
912
|
-
'registrations/game/theme': '
|
|
974
|
+
'registrations/game/status': 'game/status',
|
|
975
|
+
'registrations/game/theme': 'game/theme',
|
|
913
976
|
'registrations/export': 'registration/export',
|
|
914
977
|
'telegram/webhook': 'telegram/webhook',
|
|
915
|
-
'telegram/registration/mailing': '
|
|
978
|
+
'telegram/registration/mailing': 'registration/mailing',
|
|
916
979
|
'chatapp/webhook': 'chatapp/webhook',
|
|
917
980
|
'chatapp/registration': 'chatapp/registration',
|
|
918
|
-
'chatapp/registration/mailing': '
|
|
981
|
+
'chatapp/registration/mailing': 'registration/mailing',
|
|
919
982
|
'bitrix/registration': 'bitrix/registration',
|
|
920
983
|
'source': 'source',
|
|
921
984
|
}),
|
|
@@ -965,7 +1028,6 @@ export const RouteService = Object.freeze(
|
|
|
965
1028
|
'themes/games': 'Themes',
|
|
966
1029
|
'game': 'Games',
|
|
967
1030
|
'game/status': 'Games',
|
|
968
|
-
'game/statuses': 'Games',
|
|
969
1031
|
'game/city': 'Games',
|
|
970
1032
|
'game/registrations': 'Games',
|
|
971
1033
|
'game/registrations/status': 'Games',
|
|
@@ -986,12 +1048,10 @@ export const RouteService = Object.freeze(
|
|
|
986
1048
|
'games/venue': 'Games',
|
|
987
1049
|
'registration': 'Registrations',
|
|
988
1050
|
'registration/status': 'Registrations',
|
|
989
|
-
'registration/statuses': 'Registrations',
|
|
990
1051
|
'registration/creation': 'Registrations',
|
|
991
1052
|
'registration/confirmation': 'Registrations',
|
|
992
1053
|
'registration/cancellation': 'Registrations',
|
|
993
1054
|
'registration/lineup': 'Registrations',
|
|
994
|
-
'registration/lineups': 'Registrations',
|
|
995
1055
|
'registration/channel': 'Registrations',
|
|
996
1056
|
'registration/export': 'Registrations',
|
|
997
1057
|
'registration/city': 'Registrations',
|
|
@@ -1078,7 +1138,6 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1078
1138
|
'Games': [
|
|
1079
1139
|
'game',
|
|
1080
1140
|
'game/status',
|
|
1081
|
-
'game/statuses',
|
|
1082
1141
|
'game/city',
|
|
1083
1142
|
'game/registrations',
|
|
1084
1143
|
'game/registrations/status',
|
|
@@ -1101,12 +1160,10 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1101
1160
|
'Registrations': [
|
|
1102
1161
|
'registration',
|
|
1103
1162
|
'registration/status',
|
|
1104
|
-
'registration/statuses',
|
|
1105
1163
|
'registration/creation',
|
|
1106
1164
|
'registration/confirmation',
|
|
1107
1165
|
'registration/cancellation',
|
|
1108
1166
|
'registration/lineup',
|
|
1109
|
-
'registration/lineups',
|
|
1110
1167
|
'registration/channel',
|
|
1111
1168
|
'registration/export',
|
|
1112
1169
|
'registration/city',
|
|
@@ -42,7 +42,6 @@ export const Routes = Object.freeze(
|
|
|
42
42
|
'themes/games',
|
|
43
43
|
'game',
|
|
44
44
|
'game/status',
|
|
45
|
-
'game/statuses',
|
|
46
45
|
'game/city',
|
|
47
46
|
'game/registrations',
|
|
48
47
|
'game/registrations/status',
|
|
@@ -63,12 +62,10 @@ export const Routes = Object.freeze(
|
|
|
63
62
|
'games/venue',
|
|
64
63
|
'registration',
|
|
65
64
|
'registration/status',
|
|
66
|
-
'registration/statuses',
|
|
67
65
|
'registration/creation',
|
|
68
66
|
'registration/confirmation',
|
|
69
67
|
'registration/cancellation',
|
|
70
68
|
'registration/lineup',
|
|
71
|
-
'registration/lineups',
|
|
72
69
|
'registration/channel',
|
|
73
70
|
'registration/export',
|
|
74
71
|
'registration/city',
|