@shakerquiz/utilities 4.0.38 → 4.0.39

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.38",
4
+ "version": "4.0.39",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -45,6 +45,7 @@ export const RouteExcessiveCardinality = Object.freeze(
45
45
  'game': '1',
46
46
  'game/status': '1/1',
47
47
  'game/city': '1/1',
48
+ 'game/registration': '1/1',
48
49
  'game/registrations': '1/n',
49
50
  'game/registrations/status': '1/n/1',
50
51
  'game/registrations/lineup': '1/n/1',
@@ -138,6 +139,7 @@ export const RouteCardinality = Object.freeze(
138
139
  'game': '1',
139
140
  'game/status': '1/1',
140
141
  'game/city': '1/1',
142
+ 'game/registration': '1/1',
141
143
  'game/registrations': '1/n',
142
144
  'game/registrations/status': '1/1',
143
145
  'game/registrations/lineup': '1/1',
@@ -231,6 +233,7 @@ export const RoutePathname = Object.freeze(
231
233
  'game': 'game/:game',
232
234
  'game/status': 'game/:game/status/:status',
233
235
  'game/city': 'game/:game/city/:city',
236
+ 'game/registration': 'game/:game/registration/:registration',
234
237
  'game/registrations': 'game/:game/registrations',
235
238
  'game/registrations/status': 'game/:game/registrations/status/:status',
236
239
  'game/registrations/lineup': 'game/:game/registrations/lineup',
@@ -394,6 +397,10 @@ export const RouteParameters = Object.freeze(
394
397
  ':game',
395
398
  ':city',
396
399
  ],
400
+ 'game/registration': [
401
+ ':game',
402
+ ':registration',
403
+ ],
397
404
  'game/registrations': [
398
405
  ':game',
399
406
  ],
@@ -575,6 +582,7 @@ export const PathnameRoute = Object.freeze(
575
582
  'game/:game': 'game',
576
583
  'game/:game/status/:status': 'game/status',
577
584
  'game/:game/city/:city': 'game/city',
585
+ 'game/:game/registration/:registration': 'game/registration',
578
586
  'game/:game/registrations': 'game/registrations',
579
587
  'game/:game/registrations/status/:status': 'game/registrations/status',
580
588
  'game/:game/registrations/lineup': 'game/registrations/lineup',
@@ -738,6 +746,10 @@ export const PathnameParameters = Object.freeze(
738
746
  ':game',
739
747
  ':city',
740
748
  ],
749
+ 'game/:game/registration/:registration': [
750
+ ':game',
751
+ ':registration',
752
+ ],
741
753
  'game/:game/registrations': [
742
754
  ':game',
743
755
  ],
@@ -936,6 +948,7 @@ export const RouteBreakdown = Object.freeze(
936
948
  'game': 'game',
937
949
  'game/status': 'game/status',
938
950
  'game/city': 'game/city',
951
+ 'game/registration': 'game/registration',
939
952
  'game/registrations': 'game/registration',
940
953
  'game/registrations/status': 'registration/status',
941
954
  'game/registrations/lineup': 'registration/lineup',
@@ -1029,6 +1042,7 @@ export const RouteService = Object.freeze(
1029
1042
  'game': 'Games',
1030
1043
  'game/status': 'Games',
1031
1044
  'game/city': 'Games',
1045
+ 'game/registration': 'Games',
1032
1046
  'game/registrations': 'Games',
1033
1047
  'game/registrations/status': 'Games',
1034
1048
  'game/registrations/lineup': 'Games',
@@ -1139,6 +1153,7 @@ export const ServiceRoutes = Object.freeze(
1139
1153
  'game',
1140
1154
  'game/status',
1141
1155
  'game/city',
1156
+ 'game/registration',
1142
1157
  'game/registrations',
1143
1158
  'game/registrations/status',
1144
1159
  'game/registrations/lineup',
@@ -43,6 +43,7 @@ export const Routes = Object.freeze(
43
43
  'game',
44
44
  'game/status',
45
45
  'game/city',
46
+ 'game/registration',
46
47
  'game/registrations',
47
48
  'game/registrations/status',
48
49
  'game/registrations/lineup',