@shakerquiz/utilities 4.0.25 → 4.0.26
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
|
@@ -36,6 +36,7 @@ export const RouteCardinality = Object.freeze(
|
|
|
36
36
|
'venue/city': '1/1',
|
|
37
37
|
'venues': 'n',
|
|
38
38
|
'venues/city': 'n/1',
|
|
39
|
+
'cover': '1',
|
|
39
40
|
'theme': '1',
|
|
40
41
|
'theme/cover': '1/1',
|
|
41
42
|
'themes': 'n',
|
|
@@ -132,6 +133,7 @@ export const RoutePathname = Object.freeze(
|
|
|
132
133
|
'venue/city': 'venue/:venue/city/:city',
|
|
133
134
|
'venues': 'venues',
|
|
134
135
|
'venues/city': 'venues/city/:city',
|
|
136
|
+
'cover': 'cover/:cover',
|
|
135
137
|
'theme': 'theme/:theme',
|
|
136
138
|
'theme/cover': 'theme/:theme/cover/:cover',
|
|
137
139
|
'themes': 'themes',
|
|
@@ -281,6 +283,9 @@ export const RouteParameters = Object.freeze(
|
|
|
281
283
|
'venues/city': [
|
|
282
284
|
':city',
|
|
283
285
|
],
|
|
286
|
+
'cover': [
|
|
287
|
+
':cover',
|
|
288
|
+
],
|
|
284
289
|
'theme': [
|
|
285
290
|
':theme',
|
|
286
291
|
],
|
|
@@ -482,6 +487,7 @@ export const PathnameRoute = Object.freeze(
|
|
|
482
487
|
'venue/:venue/city/:city': 'venue/city',
|
|
483
488
|
'venues': 'venues',
|
|
484
489
|
'venues/city/:city': 'venues/city',
|
|
490
|
+
'cover/:cover': 'cover',
|
|
485
491
|
'theme/:theme': 'theme',
|
|
486
492
|
'theme/:theme/cover/:cover': 'theme/cover',
|
|
487
493
|
'themes': 'themes',
|
|
@@ -631,6 +637,9 @@ export const PathnameParameters = Object.freeze(
|
|
|
631
637
|
'venues/city/:city': [
|
|
632
638
|
':city',
|
|
633
639
|
],
|
|
640
|
+
'cover/:cover': [
|
|
641
|
+
':cover',
|
|
642
|
+
],
|
|
634
643
|
'theme/:theme': [
|
|
635
644
|
':theme',
|
|
636
645
|
],
|
|
@@ -848,6 +857,7 @@ export const RouteBreakdown = Object.freeze(
|
|
|
848
857
|
'venue/city': 'venue/city',
|
|
849
858
|
'venues': 'venue',
|
|
850
859
|
'venues/city': 'venue/city',
|
|
860
|
+
'cover': 'cover',
|
|
851
861
|
'theme': 'theme',
|
|
852
862
|
'theme/cover': 'theme/cover',
|
|
853
863
|
'themes': 'theme',
|
|
@@ -944,6 +954,7 @@ export const RouteService = Object.freeze(
|
|
|
944
954
|
'venue/city': 'Venues',
|
|
945
955
|
'venues': 'Venues',
|
|
946
956
|
'venues/city': 'Venues',
|
|
957
|
+
'cover': 'Minio',
|
|
947
958
|
'theme': 'Themes',
|
|
948
959
|
'theme/cover': 'Themes',
|
|
949
960
|
'themes': 'Themes',
|
|
@@ -1052,6 +1063,9 @@ export const ServiceRoutes = Object.freeze(
|
|
|
1052
1063
|
'venues',
|
|
1053
1064
|
'venues/city',
|
|
1054
1065
|
],
|
|
1066
|
+
'Minio': [
|
|
1067
|
+
'cover',
|
|
1068
|
+
],
|
|
1055
1069
|
'Themes': [
|
|
1056
1070
|
'theme',
|
|
1057
1071
|
'theme/cover',
|