@shakerquiz/utilities 4.0.5 → 4.0.7

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.5",
4
+ "version": "4.0.7",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -68,7 +68,6 @@ export const Route = Object.freeze(
68
68
  'registration/game/theme': 'registration/game/theme',
69
69
  'registration/game/theme/cover': 'registration/game/theme/cover',
70
70
  'registration/game/venue': 'registration/game/venue',
71
- 'registration/mailing': 'registration/mailing',
72
71
  'registrations': 'registrations',
73
72
  'registrations/city': 'registrations/city',
74
73
  'registrations/game': 'registrations/game',
@@ -151,7 +150,6 @@ export const RouteCardinality = Object.freeze(
151
150
  'registration/game/theme': '1/1',
152
151
  'registration/game/theme/cover': '1/1',
153
152
  'registration/game/venue': '1/1',
154
- 'registration/mailing': '1/1',
155
153
  'registrations': 'n',
156
154
  'registrations/city': 'n/1',
157
155
  'registrations/game': 'n/1',
@@ -234,7 +232,6 @@ export const RoutePathname = Object.freeze(
234
232
  'registration/game/theme': 'registration/:registration/game/:game/theme/:theme',
235
233
  'registration/game/theme/cover': 'registration/:registration/game/:game/theme/:theme/cover/:cover',
236
234
  'registration/game/venue': 'registration/:registration/game/:game/venue/:venue',
237
- 'registration/mailing': 'registration/:registration/mailing',
238
235
  'registrations': 'registrations',
239
236
  'registrations/city': 'registrations/city/:city',
240
237
  'registrations/game': 'registrations/game/:game',
@@ -317,7 +314,6 @@ export const PathnameRoute = Object.freeze(
317
314
  'registration/:registration/game/:game/theme/:theme': 'registration/game/theme',
318
315
  'registration/:registration/game/:game/theme/:theme/cover/:cover': 'registration/game/theme/cover',
319
316
  'registration/:registration/game/:game/venue/:venue': 'registration/game/venue',
320
- 'registration/:registration/mailing': 'registration/mailing',
321
317
  'registrations': 'registrations',
322
318
  'registrations/city/:city': 'registrations/city',
323
319
  'registrations/game/:game': 'registrations/game',
@@ -522,9 +518,6 @@ export const PathnameParameters = Object.freeze(
522
518
  ':game',
523
519
  ':venue',
524
520
  ],
525
- 'registration/:registration/mailing': [
526
- ':registration',
527
- ],
528
521
  'registrations': [],
529
522
  'registrations/city/:city': [
530
523
  ':city',
@@ -638,7 +631,6 @@ export const RouteBreakdown = Object.freeze(
638
631
  'registration/game/theme': 'registration/game/theme',
639
632
  'registration/game/theme/cover': 'registration/game/theme/cover',
640
633
  'registration/game/venue': 'registration/game/venue',
641
- 'registration/mailing': 'registration/mailing',
642
634
  'registrations': 'registration',
643
635
  'registrations/city': 'registration/city',
644
636
  'registrations/game': 'registration/game',
@@ -721,7 +713,6 @@ export const RouteService = Object.freeze(
721
713
  'registration/game/theme': 'Registrations',
722
714
  'registration/game/theme/cover': 'Registrations',
723
715
  'registration/game/venue': 'Registrations',
724
- 'registration/mailing': 'Registrations',
725
716
  'registrations': 'Registrations',
726
717
  'registrations/city': 'Registrations',
727
718
  'registrations/game': 'Registrations',
@@ -821,7 +812,6 @@ export const ServiceRoutes = Object.freeze(
821
812
  'registration/game/theme',
822
813
  'registration/game/theme/cover',
823
814
  'registration/game/venue',
824
- 'registration/mailing',
825
815
  'registrations',
826
816
  'registrations/city',
827
817
  'registrations/game',
@@ -66,7 +66,6 @@ export const Routes = Object.freeze(
66
66
  'registration/game/theme',
67
67
  'registration/game/theme/cover',
68
68
  'registration/game/venue',
69
- 'registration/mailing',
70
69
  'registrations',
71
70
  'registrations/city',
72
71
  'registrations/game',
@@ -1,3 +1,4 @@
1
+ import { Mode } from './mode.js'
1
2
  import { Runtime } from './runtimes.js'
2
3
  import { Service } from './services.js'
3
4
 
@@ -11,12 +12,13 @@ export const ServiceRuntime = Object.freeze({
11
12
  [Service['Themes']]: Runtime['Bun'],
12
13
  [Service['Games']]: Runtime['Bun'],
13
14
  [Service['Registrations']]: Runtime['Bun'],
14
- [Service['Files']]: Runtime['Bun'],
15
15
  [Service['Procedures']]: Runtime['Bun'],
16
- [Service['Integrations']]: Runtime['Bun'],
17
16
  [Service['Updates']]: Runtime['Bun'],
18
17
  [Service['Hub']]: Runtime['Next'],
19
18
  [Service['Landing']]: Runtime['Next'],
20
- [Service['Telegram']]: Runtime['Node'],
21
19
  [Service['Vkma']]: Runtime['Vite'],
20
+ [Service['Telegram']]: Runtime['Bun'],
21
+ [Service['Chatapp']]: Runtime['Bun'],
22
+ [Service['Bitrix']]: Runtime['Bun'],
23
+ [Service['Minio']]: Mode['Unknown'],
22
24
  })
@@ -9,18 +9,16 @@ export const Services = Object.freeze(
9
9
  'Themes',
10
10
  'Games',
11
11
  'Registrations',
12
- 'Files',
13
12
  'Procedures',
14
- 'Integrations',
15
13
  'Updates',
16
14
  'Hub',
17
15
  'Landing',
18
16
  'Telegram',
19
17
  'Vkma',
20
- 'Minio',
21
18
  'Telegram',
22
19
  'Chatapp',
23
20
  'Bitrix',
21
+ 'Minio',
24
22
  ]),
25
23
  )
26
24