@shakerquiz/utilities 4.0.44 → 4.0.45
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
|
@@ -5,7 +5,6 @@ export const RouteExcessiveCardinality = Object.freeze(
|
|
|
5
5
|
'role': '1',
|
|
6
6
|
'roles': 'n',
|
|
7
7
|
'user': '1',
|
|
8
|
-
'user/id': '1/1',
|
|
9
8
|
'user/password': '1/1',
|
|
10
9
|
'user/role': '1/1',
|
|
11
10
|
'user/city': '1/1',
|
|
@@ -44,7 +43,6 @@ export const RouteExcessiveCardinality = Object.freeze(
|
|
|
44
43
|
'themes/cover': 'n/1',
|
|
45
44
|
'themes/games': 'n/n',
|
|
46
45
|
'game': '1',
|
|
47
|
-
'game/id': '1/1',
|
|
48
46
|
'game/status': '1/1',
|
|
49
47
|
'game/city': '1/1',
|
|
50
48
|
'game/registration': '1/1',
|
|
@@ -59,6 +57,7 @@ export const RouteExcessiveCardinality = Object.freeze(
|
|
|
59
57
|
'game/theme/cover': '1/1/1',
|
|
60
58
|
'game/venue': '1/1',
|
|
61
59
|
'games': 'n',
|
|
60
|
+
'games/search': 'n/1',
|
|
62
61
|
'games/status': 'n/1',
|
|
63
62
|
'games/city': 'n/1',
|
|
64
63
|
'games/registrations': 'n/n',
|
|
@@ -81,6 +80,7 @@ export const RouteExcessiveCardinality = Object.freeze(
|
|
|
81
80
|
'registration/game/theme/cover': '1/1/1/1',
|
|
82
81
|
'registration/game/venue': '1/1/1',
|
|
83
82
|
'registrations': 'n',
|
|
83
|
+
'registrations/search': 'n/1',
|
|
84
84
|
'registrations/status': 'n/1',
|
|
85
85
|
'registrations/lineup': 'n/1',
|
|
86
86
|
'registrations/city': 'n/1',
|
|
@@ -103,7 +103,6 @@ export const RouteCardinality = Object.freeze(
|
|
|
103
103
|
'role': '1',
|
|
104
104
|
'roles': 'n',
|
|
105
105
|
'user': '1',
|
|
106
|
-
'user/id': '1/1',
|
|
107
106
|
'user/password': '1/1',
|
|
108
107
|
'user/role': '1/1',
|
|
109
108
|
'user/city': '1/1',
|
|
@@ -142,7 +141,6 @@ export const RouteCardinality = Object.freeze(
|
|
|
142
141
|
'themes/cover': 'n/1',
|
|
143
142
|
'themes/games': 'n/n',
|
|
144
143
|
'game': '1',
|
|
145
|
-
'game/id': '1/1',
|
|
146
144
|
'game/status': '1/1',
|
|
147
145
|
'game/city': '1/1',
|
|
148
146
|
'game/registration': '1/1',
|
|
@@ -157,6 +155,7 @@ export const RouteCardinality = Object.freeze(
|
|
|
157
155
|
'game/theme/cover': '1/1',
|
|
158
156
|
'game/venue': '1/1',
|
|
159
157
|
'games': 'n',
|
|
158
|
+
'games/search': 'n/1',
|
|
160
159
|
'games/status': 'n/1',
|
|
161
160
|
'games/city': 'n/1',
|
|
162
161
|
'games/registrations': 'n/n',
|
|
@@ -179,6 +178,7 @@ export const RouteCardinality = Object.freeze(
|
|
|
179
178
|
'registration/game/theme/cover': '1/1',
|
|
180
179
|
'registration/game/venue': '1/1',
|
|
181
180
|
'registrations': 'n',
|
|
181
|
+
'registrations/search': 'n/1',
|
|
182
182
|
'registrations/status': 'n/1',
|
|
183
183
|
'registrations/lineup': 'n/1',
|
|
184
184
|
'registrations/city': 'n/1',
|
|
@@ -201,7 +201,6 @@ export const RoutePathname = Object.freeze(
|
|
|
201
201
|
'role': 'role/:role',
|
|
202
202
|
'roles': 'roles',
|
|
203
203
|
'user': 'user/:user',
|
|
204
|
-
'user/id': 'user/:user/id',
|
|
205
204
|
'user/password': 'user/:user/password',
|
|
206
205
|
'user/role': 'user/:user/role/:role',
|
|
207
206
|
'user/city': 'user/:user/city/:city',
|
|
@@ -240,7 +239,6 @@ export const RoutePathname = Object.freeze(
|
|
|
240
239
|
'themes/cover': 'themes/cover/:cover',
|
|
241
240
|
'themes/games': 'themes/games',
|
|
242
241
|
'game': 'game/:game',
|
|
243
|
-
'game/id': 'game/:game/id',
|
|
244
242
|
'game/status': 'game/:game/status/:status',
|
|
245
243
|
'game/city': 'game/:game/city/:city',
|
|
246
244
|
'game/registration': 'game/:game/registration/:registration',
|
|
@@ -255,6 +253,7 @@ export const RoutePathname = Object.freeze(
|
|
|
255
253
|
'game/theme/cover': 'game/:game/theme/:theme/cover/:cover',
|
|
256
254
|
'game/venue': 'game/:game/venue/:venue',
|
|
257
255
|
'games': 'games',
|
|
256
|
+
'games/search': 'games/search',
|
|
258
257
|
'games/status': 'games/status/:status',
|
|
259
258
|
'games/city': 'games/city/:city',
|
|
260
259
|
'games/registrations': 'games/registrations',
|
|
@@ -277,6 +276,7 @@ export const RoutePathname = Object.freeze(
|
|
|
277
276
|
'registration/game/theme/cover': 'registration/:registration/game/:game/theme/:theme/cover/:cover',
|
|
278
277
|
'registration/game/venue': 'registration/:registration/game/:game/venue/:venue',
|
|
279
278
|
'registrations': 'registrations',
|
|
279
|
+
'registrations/search': 'registrations/search',
|
|
280
280
|
'registrations/status': 'registrations/status/:status',
|
|
281
281
|
'registrations/lineup': 'registrations/lineup',
|
|
282
282
|
'registrations/city': 'registrations/city/:city',
|
|
@@ -303,9 +303,6 @@ export const RouteParameters = Object.freeze(
|
|
|
303
303
|
'user': [
|
|
304
304
|
':user',
|
|
305
305
|
],
|
|
306
|
-
'user/id': [
|
|
307
|
-
':user',
|
|
308
|
-
],
|
|
309
306
|
'user/password': [
|
|
310
307
|
':user',
|
|
311
308
|
],
|
|
@@ -404,9 +401,6 @@ export const RouteParameters = Object.freeze(
|
|
|
404
401
|
'game': [
|
|
405
402
|
':game',
|
|
406
403
|
],
|
|
407
|
-
'game/id': [
|
|
408
|
-
':game',
|
|
409
|
-
],
|
|
410
404
|
'game/status': [
|
|
411
405
|
':game',
|
|
412
406
|
':status',
|
|
@@ -458,6 +452,7 @@ export const RouteParameters = Object.freeze(
|
|
|
458
452
|
':venue',
|
|
459
453
|
],
|
|
460
454
|
'games': [],
|
|
455
|
+
'games/search': [],
|
|
461
456
|
'games/status': [
|
|
462
457
|
':status',
|
|
463
458
|
],
|
|
@@ -527,6 +522,7 @@ export const RouteParameters = Object.freeze(
|
|
|
527
522
|
':venue',
|
|
528
523
|
],
|
|
529
524
|
'registrations': [],
|
|
525
|
+
'registrations/search': [],
|
|
530
526
|
'registrations/status': [
|
|
531
527
|
':status',
|
|
532
528
|
],
|
|
@@ -569,7 +565,6 @@ export const PathnameRoute = Object.freeze(
|
|
|
569
565
|
'role/:role': 'role',
|
|
570
566
|
'roles': 'roles',
|
|
571
567
|
'user/:user': 'user',
|
|
572
|
-
'user/:user/id': 'user/id',
|
|
573
568
|
'user/:user/password': 'user/password',
|
|
574
569
|
'user/:user/role/:role': 'user/role',
|
|
575
570
|
'user/:user/city/:city': 'user/city',
|
|
@@ -608,7 +603,6 @@ export const PathnameRoute = Object.freeze(
|
|
|
608
603
|
'themes/cover/:cover': 'themes/cover',
|
|
609
604
|
'themes/games': 'themes/games',
|
|
610
605
|
'game/:game': 'game',
|
|
611
|
-
'game/:game/id': 'game/id',
|
|
612
606
|
'game/:game/status/:status': 'game/status',
|
|
613
607
|
'game/:game/city/:city': 'game/city',
|
|
614
608
|
'game/:game/registration/:registration': 'game/registration',
|
|
@@ -623,6 +617,7 @@ export const PathnameRoute = Object.freeze(
|
|
|
623
617
|
'game/:game/theme/:theme/cover/:cover': 'game/theme/cover',
|
|
624
618
|
'game/:game/venue/:venue': 'game/venue',
|
|
625
619
|
'games': 'games',
|
|
620
|
+
'games/search': 'games/search',
|
|
626
621
|
'games/status/:status': 'games/status',
|
|
627
622
|
'games/city/:city': 'games/city',
|
|
628
623
|
'games/registrations': 'games/registrations',
|
|
@@ -645,6 +640,7 @@ export const PathnameRoute = Object.freeze(
|
|
|
645
640
|
'registration/:registration/game/:game/theme/:theme/cover/:cover': 'registration/game/theme/cover',
|
|
646
641
|
'registration/:registration/game/:game/venue/:venue': 'registration/game/venue',
|
|
647
642
|
'registrations': 'registrations',
|
|
643
|
+
'registrations/search': 'registrations/search',
|
|
648
644
|
'registrations/status/:status': 'registrations/status',
|
|
649
645
|
'registrations/lineup': 'registrations/lineup',
|
|
650
646
|
'registrations/city/:city': 'registrations/city',
|
|
@@ -671,9 +667,6 @@ export const PathnameParameters = Object.freeze(
|
|
|
671
667
|
'user/:user': [
|
|
672
668
|
':user',
|
|
673
669
|
],
|
|
674
|
-
'user/:user/id': [
|
|
675
|
-
':user',
|
|
676
|
-
],
|
|
677
670
|
'user/:user/password': [
|
|
678
671
|
':user',
|
|
679
672
|
],
|
|
@@ -772,9 +765,6 @@ export const PathnameParameters = Object.freeze(
|
|
|
772
765
|
'game/:game': [
|
|
773
766
|
':game',
|
|
774
767
|
],
|
|
775
|
-
'game/:game/id': [
|
|
776
|
-
':game',
|
|
777
|
-
],
|
|
778
768
|
'game/:game/status/:status': [
|
|
779
769
|
':game',
|
|
780
770
|
':status',
|
|
@@ -826,6 +816,7 @@ export const PathnameParameters = Object.freeze(
|
|
|
826
816
|
':venue',
|
|
827
817
|
],
|
|
828
818
|
'games': [],
|
|
819
|
+
'games/search': [],
|
|
829
820
|
'games/status/:status': [
|
|
830
821
|
':status',
|
|
831
822
|
],
|
|
@@ -895,6 +886,7 @@ export const PathnameParameters = Object.freeze(
|
|
|
895
886
|
':venue',
|
|
896
887
|
],
|
|
897
888
|
'registrations': [],
|
|
889
|
+
'registrations/search': [],
|
|
898
890
|
'registrations/status/:status': [
|
|
899
891
|
':status',
|
|
900
892
|
],
|
|
@@ -954,7 +946,6 @@ export const RouteBreakdown = Object.freeze(
|
|
|
954
946
|
'role': 'role',
|
|
955
947
|
'roles': 'role',
|
|
956
948
|
'user': 'user',
|
|
957
|
-
'user/id': 'user/id',
|
|
958
949
|
'user/password': 'user/password',
|
|
959
950
|
'user/role': 'user/role',
|
|
960
951
|
'user/city': 'user/city',
|
|
@@ -993,7 +984,6 @@ export const RouteBreakdown = Object.freeze(
|
|
|
993
984
|
'themes/cover': 'theme/cover',
|
|
994
985
|
'themes/games': 'theme/games',
|
|
995
986
|
'game': 'game',
|
|
996
|
-
'game/id': 'game/id',
|
|
997
987
|
'game/status': 'game/status',
|
|
998
988
|
'game/city': 'game/city',
|
|
999
989
|
'game/registration': 'game/registration',
|
|
@@ -1008,6 +998,7 @@ export const RouteBreakdown = Object.freeze(
|
|
|
1008
998
|
'game/theme/cover': 'game/theme/cover',
|
|
1009
999
|
'game/venue': 'game/venue',
|
|
1010
1000
|
'games': 'game',
|
|
1001
|
+
'games/search': 'game/search',
|
|
1011
1002
|
'games/status': 'game/status',
|
|
1012
1003
|
'games/city': 'game/city',
|
|
1013
1004
|
'games/registrations': 'game/registrations',
|
|
@@ -1030,6 +1021,7 @@ export const RouteBreakdown = Object.freeze(
|
|
|
1030
1021
|
'registration/game/theme/cover': 'registration/game/theme/cover',
|
|
1031
1022
|
'registration/game/venue': 'registration/game/venue',
|
|
1032
1023
|
'registrations': 'registration',
|
|
1024
|
+
'registrations/search': 'registration/search',
|
|
1033
1025
|
'registrations/status': 'registration/status',
|
|
1034
1026
|
'registrations/lineup': 'registration/lineup',
|
|
1035
1027
|
'registrations/city': 'registration/city',
|
|
@@ -1052,7 +1044,6 @@ export const RouteRelation = Object.freeze(
|
|
|
1052
1044
|
'role': 'role',
|
|
1053
1045
|
'roles': 'role',
|
|
1054
1046
|
'user': 'user',
|
|
1055
|
-
'user/id': 'user/id',
|
|
1056
1047
|
'user/password': 'user/password',
|
|
1057
1048
|
'user/role': 'user/role',
|
|
1058
1049
|
'user/city': 'user/city',
|
|
@@ -1091,7 +1082,6 @@ export const RouteRelation = Object.freeze(
|
|
|
1091
1082
|
'themes/cover': 'theme/cover',
|
|
1092
1083
|
'themes/games': 'theme/game',
|
|
1093
1084
|
'game': 'game',
|
|
1094
|
-
'game/id': 'game/id',
|
|
1095
1085
|
'game/status': 'game/status',
|
|
1096
1086
|
'game/city': 'game/city',
|
|
1097
1087
|
'game/registration': 'game/registration',
|
|
@@ -1106,6 +1096,7 @@ export const RouteRelation = Object.freeze(
|
|
|
1106
1096
|
'game/theme/cover': 'theme/cover',
|
|
1107
1097
|
'game/venue': 'game/venue',
|
|
1108
1098
|
'games': 'game',
|
|
1099
|
+
'games/search': 'game/search',
|
|
1109
1100
|
'games/status': 'game/status',
|
|
1110
1101
|
'games/city': 'game/city',
|
|
1111
1102
|
'games/registrations': 'game/registration',
|
|
@@ -1128,6 +1119,7 @@ export const RouteRelation = Object.freeze(
|
|
|
1128
1119
|
'registration/game/theme/cover': 'theme/cover',
|
|
1129
1120
|
'registration/game/venue': 'game/venue',
|
|
1130
1121
|
'registrations': 'registration',
|
|
1122
|
+
'registrations/search': 'registration/search',
|
|
1131
1123
|
'registrations/status': 'registration/status',
|
|
1132
1124
|
'registrations/lineup': 'registration/lineup',
|
|
1133
1125
|
'registrations/city': 'registration/city',
|
|
@@ -1150,7 +1142,6 @@ export const RouteService = Object.freeze(
|
|
|
1150
1142
|
'role': 'Roles',
|
|
1151
1143
|
'roles': 'Roles',
|
|
1152
1144
|
'user': 'Users',
|
|
1153
|
-
'user/id': 'Users',
|
|
1154
1145
|
'user/password': 'Users',
|
|
1155
1146
|
'user/role': 'Users',
|
|
1156
1147
|
'user/city': 'Users',
|
|
@@ -1189,7 +1180,6 @@ export const RouteService = Object.freeze(
|
|
|
1189
1180
|
'themes/cover': 'Themes',
|
|
1190
1181
|
'themes/games': 'Themes',
|
|
1191
1182
|
'game': 'Games',
|
|
1192
|
-
'game/id': 'Games',
|
|
1193
1183
|
'game/status': 'Games',
|
|
1194
1184
|
'game/city': 'Games',
|
|
1195
1185
|
'game/registration': 'Games',
|
|
@@ -1204,6 +1194,7 @@ export const RouteService = Object.freeze(
|
|
|
1204
1194
|
'game/theme/cover': 'Games',
|
|
1205
1195
|
'game/venue': 'Games',
|
|
1206
1196
|
'games': 'Games',
|
|
1197
|
+
'games/search': 'Games',
|
|
1207
1198
|
'games/status': 'Games',
|
|
1208
1199
|
'games/city': 'Games',
|
|
1209
1200
|
'games/registrations': 'Games',
|
|
@@ -1226,6 +1217,7 @@ export const RouteService = Object.freeze(
|
|
|
1226
1217
|
'registration/game/theme/cover': 'Registrations',
|
|
1227
1218
|
'registration/game/venue': 'Registrations',
|
|
1228
1219
|
'registrations': 'Registrations',
|
|
1220
|
+
'registrations/search': 'Registrations',
|
|
1229
1221
|
'registrations/status': 'Registrations',
|
|
1230
1222
|
'registrations/lineup': 'Registrations',
|
|
1231
1223
|
'registrations/city': 'Registrations',
|
|
@@ -1251,7 +1243,6 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1251
1243
|
],
|
|
1252
1244
|
'Users': [
|
|
1253
1245
|
'user',
|
|
1254
|
-
'user/id',
|
|
1255
1246
|
'user/password',
|
|
1256
1247
|
'user/role',
|
|
1257
1248
|
'user/city',
|
|
@@ -1304,7 +1295,6 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1304
1295
|
],
|
|
1305
1296
|
'Games': [
|
|
1306
1297
|
'game',
|
|
1307
|
-
'game/id',
|
|
1308
1298
|
'game/status',
|
|
1309
1299
|
'game/city',
|
|
1310
1300
|
'game/registration',
|
|
@@ -1319,6 +1309,7 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1319
1309
|
'game/theme/cover',
|
|
1320
1310
|
'game/venue',
|
|
1321
1311
|
'games',
|
|
1312
|
+
'games/search',
|
|
1322
1313
|
'games/status',
|
|
1323
1314
|
'games/city',
|
|
1324
1315
|
'games/registrations',
|
|
@@ -1343,6 +1334,7 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1343
1334
|
'registration/game/theme/cover',
|
|
1344
1335
|
'registration/game/venue',
|
|
1345
1336
|
'registrations',
|
|
1337
|
+
'registrations/search',
|
|
1346
1338
|
'registrations/status',
|
|
1347
1339
|
'registrations/lineup',
|
|
1348
1340
|
'registrations/city',
|
package/source/entities/key.js
CHANGED
|
@@ -3,7 +3,6 @@ export const Routes = Object.freeze(
|
|
|
3
3
|
'role',
|
|
4
4
|
'roles',
|
|
5
5
|
'user',
|
|
6
|
-
'user/id',
|
|
7
6
|
'user/password',
|
|
8
7
|
'user/role',
|
|
9
8
|
'user/city',
|
|
@@ -42,7 +41,6 @@ export const Routes = Object.freeze(
|
|
|
42
41
|
'themes/cover',
|
|
43
42
|
'themes/games',
|
|
44
43
|
'game',
|
|
45
|
-
'game/id',
|
|
46
44
|
'game/status',
|
|
47
45
|
'game/city',
|
|
48
46
|
'game/registration',
|
|
@@ -57,6 +55,7 @@ export const Routes = Object.freeze(
|
|
|
57
55
|
'game/theme/cover',
|
|
58
56
|
'game/venue',
|
|
59
57
|
'games',
|
|
58
|
+
'games/search',
|
|
60
59
|
'games/status',
|
|
61
60
|
'games/city',
|
|
62
61
|
'games/registrations',
|
|
@@ -79,6 +78,7 @@ export const Routes = Object.freeze(
|
|
|
79
78
|
'registration/game/theme/cover',
|
|
80
79
|
'registration/game/venue',
|
|
81
80
|
'registrations',
|
|
81
|
+
'registrations/search',
|
|
82
82
|
'registrations/status',
|
|
83
83
|
'registrations/lineup',
|
|
84
84
|
'registrations/city',
|
|
@@ -92,7 +92,7 @@ export const Routes = Object.freeze(
|
|
|
92
92
|
'chatapp/registration',
|
|
93
93
|
'chatapp/registration/mailing',
|
|
94
94
|
'bitrix/registration',
|
|
95
|
-
'source'
|
|
95
|
+
'source'
|
|
96
96
|
]),
|
|
97
97
|
)
|
|
98
98
|
|