@shakerquiz/utilities 0.6.17 → 1.0.0
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/dprint.json +12 -4
- package/jsconfig.json +6 -13
- package/package.json +12 -9
- package/source/enumerations/constants.d.ts +3 -0
- package/source/{entities → enumerations}/constants.js +2 -2
- package/source/enumerations/cookies.d.ts +5 -0
- package/source/enumerations/cookies.js +5 -0
- package/source/enumerations/features.d.ts +58 -0
- package/source/enumerations/features.js +49 -0
- package/source/enumerations/game-statuses.d.ts +39 -0
- package/source/enumerations/game-statuses.js +39 -0
- package/source/enumerations/kinds.d.ts +4 -0
- package/source/enumerations/kinds.js +4 -0
- package/source/enumerations/methods.d.ts +7 -0
- package/source/enumerations/methods.js +7 -0
- package/source/enumerations/networks.d.ts +4 -0
- package/source/enumerations/networks.js +4 -0
- package/source/enumerations/phases.d.ts +7 -0
- package/source/enumerations/phases.js +7 -0
- package/source/enumerations/regexps.d.ts +4 -0
- package/source/enumerations/regexps.js +6 -0
- package/source/enumerations/roles.d.ts +5 -0
- package/source/enumerations/roles.js +5 -0
- package/source/functions/request.d.ts +131 -0
- package/source/functions/request.js +202 -0
- package/source/globals.d.ts +14 -0
- package/source/index.d.ts +15 -0
- package/source/index.js +11 -40
- package/source/results.d.ts +137 -0
- package/source/rows.d.ts +533 -0
- package/.github/workflows/publish.yml +0 -31
- package/scripts/route-cardinality.js +0 -23
- package/scripts/route-parameter.js +0 -29
- package/scripts/route-pathname.js +0 -37
- package/scripts/route-relation.js +0 -26
- package/scripts/route-service.js +0 -25
- package/scripts/templates/route-cardinality.js +0 -5
- package/scripts/templates/route-parameter.js +0 -5
- package/scripts/templates/route-pathname.js +0 -7
- package/scripts/templates/route-relation.js +0 -5
- package/scripts/templates/route-service.js +0 -7
- package/source/entities/blend.js +0 -5
- package/source/entities/cardinality.js +0 -4
- package/source/entities/category.js +0 -4
- package/source/entities/city-affilation.js +0 -10
- package/source/entities/city-chatapp-version.js +0 -9
- package/source/entities/display.js +0 -4
- package/source/entities/game-status.js +0 -98
- package/source/entities/gender.js +0 -13
- package/source/entities/icon.js +0 -654
- package/source/entities/key.js +0 -41
- package/source/entities/method.js +0 -22
- package/source/entities/mode.js +0 -9
- package/source/entities/network.js +0 -9
- package/source/entities/numerosity.js +0 -5
- package/source/entities/pattern.js +0 -7
- package/source/entities/phase.js +0 -15
- package/source/entities/quantifier.js +0 -41
- package/source/entities/registration-attribute.js +0 -61
- package/source/entities/registration-channel.js +0 -11
- package/source/entities/registration-lineup.js +0 -14
- package/source/entities/registration-mailing.js +0 -20
- package/source/entities/registration-status.js +0 -19
- package/source/entities/role.js +0 -16
- package/source/entities/route-cardinality.js +0 -149
- package/source/entities/route-parameter.js +0 -149
- package/source/entities/route-pathname.js +0 -223
- package/source/entities/route-relation.js +0 -149
- package/source/entities/route-service.js +0 -179
- package/source/entities/route.js +0 -82
- package/source/entities/runtime.js +0 -6
- package/source/entities/segment.js +0 -255
- package/source/entities/service-runtime.js +0 -22
- package/source/entities/service.js +0 -22
- package/source/entities/theme-status.js +0 -9
- package/source/entities/venue-audience.js +0 -9
- package/source/entities/venue-status.js +0 -9
- package/source/helpers/access.js +0 -161
- package/source/helpers/hydrate-route-pathname.js +0 -28
- package/source/helpers/tag.js +0 -35
|
@@ -1,223 +0,0 @@
|
|
|
1
|
-
/* --- AUTOGENERATED --- */
|
|
2
|
-
|
|
3
|
-
export const RoutePathnames = Object.freeze( /** @type {const} */ ([
|
|
4
|
-
"role/:role",
|
|
5
|
-
"roles",
|
|
6
|
-
"user/:user",
|
|
7
|
-
"user/:user/password/:password",
|
|
8
|
-
"user/:user/role/:role",
|
|
9
|
-
"user/:user/city/:city",
|
|
10
|
-
"user/:user/cities",
|
|
11
|
-
"users",
|
|
12
|
-
"users/password/:password",
|
|
13
|
-
"users/role/:role",
|
|
14
|
-
"users/cities",
|
|
15
|
-
"checkin/:checkin",
|
|
16
|
-
"cities",
|
|
17
|
-
"cities/country/:country",
|
|
18
|
-
"cities/currency/:currency",
|
|
19
|
-
"cities/timezone/:timezone",
|
|
20
|
-
"cities/venues",
|
|
21
|
-
"city/:city",
|
|
22
|
-
"city/:city/vk_group_token/:vk_group_token",
|
|
23
|
-
"city/:city/country/:country",
|
|
24
|
-
"city/:city/currency/:currency",
|
|
25
|
-
"city/:city/timezone/:timezone",
|
|
26
|
-
"city/:city/venue/:venue",
|
|
27
|
-
"city/:city/venues",
|
|
28
|
-
"country/:country",
|
|
29
|
-
"countries",
|
|
30
|
-
"currency/:currency",
|
|
31
|
-
"currencies",
|
|
32
|
-
"timezone/:timezone",
|
|
33
|
-
"timezones",
|
|
34
|
-
"venue/:venue",
|
|
35
|
-
"venue/:venue/city/:city",
|
|
36
|
-
"venues",
|
|
37
|
-
"venues/city/:city",
|
|
38
|
-
"theme/:theme",
|
|
39
|
-
"theme/:theme/cover/:cover",
|
|
40
|
-
"themes",
|
|
41
|
-
"themes/cover/:cover",
|
|
42
|
-
"themes/games",
|
|
43
|
-
"game/:game",
|
|
44
|
-
"game/:game/city/:city",
|
|
45
|
-
"game/:game/registration/:registration",
|
|
46
|
-
"game/:game/registrations",
|
|
47
|
-
"game/:game/registrations/export/:export",
|
|
48
|
-
"game/:game/summary/:summary",
|
|
49
|
-
"game/:game/theme/:theme",
|
|
50
|
-
"game/:game/theme/:theme/cover/:cover",
|
|
51
|
-
"game/:game/venue/:venue",
|
|
52
|
-
"games",
|
|
53
|
-
"games/city/:city",
|
|
54
|
-
"games/registrations",
|
|
55
|
-
"games/registrations/export/:export",
|
|
56
|
-
"games/summary/:summary",
|
|
57
|
-
"games/theme/:theme",
|
|
58
|
-
"games/theme/:theme/cover/:cover",
|
|
59
|
-
"games/venue/:venue",
|
|
60
|
-
"registration/:registration",
|
|
61
|
-
"registration/:registration/cancellation/:cancellation",
|
|
62
|
-
"registration/:registration/channel/:channel",
|
|
63
|
-
"registration/:registration/confirmation/:confirmation",
|
|
64
|
-
"registration/:registration/export/:export",
|
|
65
|
-
"registration/:registration/city/:city",
|
|
66
|
-
"registration/:registration/game/:game",
|
|
67
|
-
"registration/:registration/game/:game/theme/:theme",
|
|
68
|
-
"registration/:registration/game/:game/theme/:theme/cover/:cover",
|
|
69
|
-
"registration/:registration/mailing/:mailing",
|
|
70
|
-
"registrations",
|
|
71
|
-
"registrations/city/:city",
|
|
72
|
-
"registrations/game/:game",
|
|
73
|
-
"registrations/game/:game/theme/:theme",
|
|
74
|
-
"registrations/export/:export"
|
|
75
|
-
]))
|
|
76
|
-
|
|
77
|
-
export const RoutePathname = Object.freeze(/** @type {const} */ ({
|
|
78
|
-
"role": "role/:role",
|
|
79
|
-
"roles": "roles",
|
|
80
|
-
"user": "user/:user",
|
|
81
|
-
"user/password": "user/:user/password/:password",
|
|
82
|
-
"user/role": "user/:user/role/:role",
|
|
83
|
-
"user/city": "user/:user/city/:city",
|
|
84
|
-
"user/cities": "user/:user/cities",
|
|
85
|
-
"users": "users",
|
|
86
|
-
"users/password": "users/password/:password",
|
|
87
|
-
"users/role": "users/role/:role",
|
|
88
|
-
"users/cities": "users/cities",
|
|
89
|
-
"checkin": "checkin/:checkin",
|
|
90
|
-
"cities": "cities",
|
|
91
|
-
"cities/country": "cities/country/:country",
|
|
92
|
-
"cities/currency": "cities/currency/:currency",
|
|
93
|
-
"cities/timezone": "cities/timezone/:timezone",
|
|
94
|
-
"cities/venues": "cities/venues",
|
|
95
|
-
"city": "city/:city",
|
|
96
|
-
"city/vk_group_token": "city/:city/vk_group_token/:vk_group_token",
|
|
97
|
-
"city/country": "city/:city/country/:country",
|
|
98
|
-
"city/currency": "city/:city/currency/:currency",
|
|
99
|
-
"city/timezone": "city/:city/timezone/:timezone",
|
|
100
|
-
"city/venue": "city/:city/venue/:venue",
|
|
101
|
-
"city/venues": "city/:city/venues",
|
|
102
|
-
"country": "country/:country",
|
|
103
|
-
"countries": "countries",
|
|
104
|
-
"currency": "currency/:currency",
|
|
105
|
-
"currencies": "currencies",
|
|
106
|
-
"timezone": "timezone/:timezone",
|
|
107
|
-
"timezones": "timezones",
|
|
108
|
-
"venue": "venue/:venue",
|
|
109
|
-
"venue/city": "venue/:venue/city/:city",
|
|
110
|
-
"venues": "venues",
|
|
111
|
-
"venues/city": "venues/city/:city",
|
|
112
|
-
"theme": "theme/:theme",
|
|
113
|
-
"theme/cover": "theme/:theme/cover/:cover",
|
|
114
|
-
"themes": "themes",
|
|
115
|
-
"themes/cover": "themes/cover/:cover",
|
|
116
|
-
"themes/games": "themes/games",
|
|
117
|
-
"game": "game/:game",
|
|
118
|
-
"game/city": "game/:game/city/:city",
|
|
119
|
-
"game/registration": "game/:game/registration/:registration",
|
|
120
|
-
"game/registrations": "game/:game/registrations",
|
|
121
|
-
"game/registrations/export": "game/:game/registrations/export/:export",
|
|
122
|
-
"game/summary": "game/:game/summary/:summary",
|
|
123
|
-
"game/theme": "game/:game/theme/:theme",
|
|
124
|
-
"game/theme/cover": "game/:game/theme/:theme/cover/:cover",
|
|
125
|
-
"game/venue": "game/:game/venue/:venue",
|
|
126
|
-
"games": "games",
|
|
127
|
-
"games/city": "games/city/:city",
|
|
128
|
-
"games/registrations": "games/registrations",
|
|
129
|
-
"games/registrations/export": "games/registrations/export/:export",
|
|
130
|
-
"games/summary": "games/summary/:summary",
|
|
131
|
-
"games/theme": "games/theme/:theme",
|
|
132
|
-
"games/theme/cover": "games/theme/:theme/cover/:cover",
|
|
133
|
-
"games/venue": "games/venue/:venue",
|
|
134
|
-
"registration": "registration/:registration",
|
|
135
|
-
"registration/cancellation": "registration/:registration/cancellation/:cancellation",
|
|
136
|
-
"registration/channel": "registration/:registration/channel/:channel",
|
|
137
|
-
"registration/confirmation": "registration/:registration/confirmation/:confirmation",
|
|
138
|
-
"registration/export": "registration/:registration/export/:export",
|
|
139
|
-
"registration/city": "registration/:registration/city/:city",
|
|
140
|
-
"registration/game": "registration/:registration/game/:game",
|
|
141
|
-
"registration/game/theme": "registration/:registration/game/:game/theme/:theme",
|
|
142
|
-
"registration/game/theme/cover": "registration/:registration/game/:game/theme/:theme/cover/:cover",
|
|
143
|
-
"registration/mailing": "registration/:registration/mailing/:mailing",
|
|
144
|
-
"registrations": "registrations",
|
|
145
|
-
"registrations/city": "registrations/city/:city",
|
|
146
|
-
"registrations/game": "registrations/game/:game",
|
|
147
|
-
"registrations/game/theme": "registrations/game/:game/theme/:theme",
|
|
148
|
-
"registrations/export": "registrations/export/:export"
|
|
149
|
-
}))
|
|
150
|
-
|
|
151
|
-
export const PathnameRoute = Object.freeze(/** @type {const} */ ({
|
|
152
|
-
"role/:role": "role",
|
|
153
|
-
"roles": "roles",
|
|
154
|
-
"user/:user": "user",
|
|
155
|
-
"user/:user/password/:password": "user/password",
|
|
156
|
-
"user/:user/role/:role": "user/role",
|
|
157
|
-
"user/:user/city/:city": "user/city",
|
|
158
|
-
"user/:user/cities": "user/cities",
|
|
159
|
-
"users": "users",
|
|
160
|
-
"users/password/:password": "users/password",
|
|
161
|
-
"users/role/:role": "users/role",
|
|
162
|
-
"users/cities": "users/cities",
|
|
163
|
-
"checkin/:checkin": "checkin",
|
|
164
|
-
"cities": "cities",
|
|
165
|
-
"cities/country/:country": "cities/country",
|
|
166
|
-
"cities/currency/:currency": "cities/currency",
|
|
167
|
-
"cities/timezone/:timezone": "cities/timezone",
|
|
168
|
-
"cities/venues": "cities/venues",
|
|
169
|
-
"city/:city": "city",
|
|
170
|
-
"city/:city/vk_group_token/:vk_group_token": "city/vk_group_token",
|
|
171
|
-
"city/:city/country/:country": "city/country",
|
|
172
|
-
"city/:city/currency/:currency": "city/currency",
|
|
173
|
-
"city/:city/timezone/:timezone": "city/timezone",
|
|
174
|
-
"city/:city/venue/:venue": "city/venue",
|
|
175
|
-
"city/:city/venues": "city/venues",
|
|
176
|
-
"country/:country": "country",
|
|
177
|
-
"countries": "countries",
|
|
178
|
-
"currency/:currency": "currency",
|
|
179
|
-
"currencies": "currencies",
|
|
180
|
-
"timezone/:timezone": "timezone",
|
|
181
|
-
"timezones": "timezones",
|
|
182
|
-
"venue/:venue": "venue",
|
|
183
|
-
"venue/:venue/city/:city": "venue/city",
|
|
184
|
-
"venues": "venues",
|
|
185
|
-
"venues/city/:city": "venues/city",
|
|
186
|
-
"theme/:theme": "theme",
|
|
187
|
-
"theme/:theme/cover/:cover": "theme/cover",
|
|
188
|
-
"themes": "themes",
|
|
189
|
-
"themes/cover/:cover": "themes/cover",
|
|
190
|
-
"themes/games": "themes/games",
|
|
191
|
-
"game/:game": "game",
|
|
192
|
-
"game/:game/city/:city": "game/city",
|
|
193
|
-
"game/:game/registration/:registration": "game/registration",
|
|
194
|
-
"game/:game/registrations": "game/registrations",
|
|
195
|
-
"game/:game/registrations/export/:export": "game/registrations/export",
|
|
196
|
-
"game/:game/summary/:summary": "game/summary",
|
|
197
|
-
"game/:game/theme/:theme": "game/theme",
|
|
198
|
-
"game/:game/theme/:theme/cover/:cover": "game/theme/cover",
|
|
199
|
-
"game/:game/venue/:venue": "game/venue",
|
|
200
|
-
"games": "games",
|
|
201
|
-
"games/city/:city": "games/city",
|
|
202
|
-
"games/registrations": "games/registrations",
|
|
203
|
-
"games/registrations/export/:export": "games/registrations/export",
|
|
204
|
-
"games/summary/:summary": "games/summary",
|
|
205
|
-
"games/theme/:theme": "games/theme",
|
|
206
|
-
"games/theme/:theme/cover/:cover": "games/theme/cover",
|
|
207
|
-
"games/venue/:venue": "games/venue",
|
|
208
|
-
"registration/:registration": "registration",
|
|
209
|
-
"registration/:registration/cancellation/:cancellation": "registration/cancellation",
|
|
210
|
-
"registration/:registration/channel/:channel": "registration/channel",
|
|
211
|
-
"registration/:registration/confirmation/:confirmation": "registration/confirmation",
|
|
212
|
-
"registration/:registration/export/:export": "registration/export",
|
|
213
|
-
"registration/:registration/city/:city": "registration/city",
|
|
214
|
-
"registration/:registration/game/:game": "registration/game",
|
|
215
|
-
"registration/:registration/game/:game/theme/:theme": "registration/game/theme",
|
|
216
|
-
"registration/:registration/game/:game/theme/:theme/cover/:cover": "registration/game/theme/cover",
|
|
217
|
-
"registration/:registration/mailing/:mailing": "registration/mailing",
|
|
218
|
-
"registrations": "registrations",
|
|
219
|
-
"registrations/city/:city": "registrations/city",
|
|
220
|
-
"registrations/game/:game": "registrations/game",
|
|
221
|
-
"registrations/game/:game/theme/:theme": "registrations/game/theme",
|
|
222
|
-
"registrations/export/:export": "registrations/export"
|
|
223
|
-
}))
|
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
/* --- AUTOGENERATED --- */
|
|
2
|
-
|
|
3
|
-
export const RouteRelations = Object.freeze( /** @type {const} */ ([
|
|
4
|
-
"role",
|
|
5
|
-
"role",
|
|
6
|
-
"user",
|
|
7
|
-
"user/password",
|
|
8
|
-
"user/role",
|
|
9
|
-
"user/city",
|
|
10
|
-
"user/cities",
|
|
11
|
-
"user",
|
|
12
|
-
"user/password",
|
|
13
|
-
"user/role",
|
|
14
|
-
"user/cities",
|
|
15
|
-
"checkin",
|
|
16
|
-
"city",
|
|
17
|
-
"city/country",
|
|
18
|
-
"city/currency",
|
|
19
|
-
"city/timezone",
|
|
20
|
-
"city/venues",
|
|
21
|
-
"city",
|
|
22
|
-
"city/vk_group_token",
|
|
23
|
-
"city/country",
|
|
24
|
-
"city/currency",
|
|
25
|
-
"city/timezone",
|
|
26
|
-
"city/venue",
|
|
27
|
-
"city/venues",
|
|
28
|
-
"country",
|
|
29
|
-
"country",
|
|
30
|
-
"currency",
|
|
31
|
-
"currency",
|
|
32
|
-
"timezone",
|
|
33
|
-
"timezone",
|
|
34
|
-
"venue",
|
|
35
|
-
"venue/city",
|
|
36
|
-
"venue",
|
|
37
|
-
"venue/city",
|
|
38
|
-
"theme",
|
|
39
|
-
"theme/cover",
|
|
40
|
-
"theme",
|
|
41
|
-
"theme/cover",
|
|
42
|
-
"theme/games",
|
|
43
|
-
"game",
|
|
44
|
-
"game/city",
|
|
45
|
-
"game/registration",
|
|
46
|
-
"game/registrations",
|
|
47
|
-
"game/registrations/export",
|
|
48
|
-
"game/summary",
|
|
49
|
-
"game/theme",
|
|
50
|
-
"game/theme/cover",
|
|
51
|
-
"game/venue",
|
|
52
|
-
"game",
|
|
53
|
-
"game/city",
|
|
54
|
-
"game/registrations",
|
|
55
|
-
"game/registrations/export",
|
|
56
|
-
"game/summary",
|
|
57
|
-
"game/theme",
|
|
58
|
-
"game/theme/cover",
|
|
59
|
-
"game/venue",
|
|
60
|
-
"registration",
|
|
61
|
-
"registration/cancellation",
|
|
62
|
-
"registration/channel",
|
|
63
|
-
"registration/confirmation",
|
|
64
|
-
"registration/export",
|
|
65
|
-
"registration/city",
|
|
66
|
-
"registration/game",
|
|
67
|
-
"registration/game/theme",
|
|
68
|
-
"registration/game/theme/cover",
|
|
69
|
-
"registration/mailing",
|
|
70
|
-
"registration",
|
|
71
|
-
"registration/city",
|
|
72
|
-
"registration/game",
|
|
73
|
-
"registration/game/theme",
|
|
74
|
-
"registration/export"
|
|
75
|
-
]))
|
|
76
|
-
|
|
77
|
-
export const RouteRelation = Object.freeze(/** @type {const} */ ({
|
|
78
|
-
"role": "role",
|
|
79
|
-
"roles": "role",
|
|
80
|
-
"user": "user",
|
|
81
|
-
"user/password": "user/password",
|
|
82
|
-
"user/role": "user/role",
|
|
83
|
-
"user/city": "user/city",
|
|
84
|
-
"user/cities": "user/cities",
|
|
85
|
-
"users": "user",
|
|
86
|
-
"users/password": "user/password",
|
|
87
|
-
"users/role": "user/role",
|
|
88
|
-
"users/cities": "user/cities",
|
|
89
|
-
"checkin": "checkin",
|
|
90
|
-
"cities": "city",
|
|
91
|
-
"cities/country": "city/country",
|
|
92
|
-
"cities/currency": "city/currency",
|
|
93
|
-
"cities/timezone": "city/timezone",
|
|
94
|
-
"cities/venues": "city/venues",
|
|
95
|
-
"city": "city",
|
|
96
|
-
"city/vk_group_token": "city/vk_group_token",
|
|
97
|
-
"city/country": "city/country",
|
|
98
|
-
"city/currency": "city/currency",
|
|
99
|
-
"city/timezone": "city/timezone",
|
|
100
|
-
"city/venue": "city/venue",
|
|
101
|
-
"city/venues": "city/venues",
|
|
102
|
-
"country": "country",
|
|
103
|
-
"countries": "country",
|
|
104
|
-
"currency": "currency",
|
|
105
|
-
"currencies": "currency",
|
|
106
|
-
"timezone": "timezone",
|
|
107
|
-
"timezones": "timezone",
|
|
108
|
-
"venue": "venue",
|
|
109
|
-
"venue/city": "venue/city",
|
|
110
|
-
"venues": "venue",
|
|
111
|
-
"venues/city": "venue/city",
|
|
112
|
-
"theme": "theme",
|
|
113
|
-
"theme/cover": "theme/cover",
|
|
114
|
-
"themes": "theme",
|
|
115
|
-
"themes/cover": "theme/cover",
|
|
116
|
-
"themes/games": "theme/games",
|
|
117
|
-
"game": "game",
|
|
118
|
-
"game/city": "game/city",
|
|
119
|
-
"game/registration": "game/registration",
|
|
120
|
-
"game/registrations": "game/registrations",
|
|
121
|
-
"game/registrations/export": "game/registrations/export",
|
|
122
|
-
"game/summary": "game/summary",
|
|
123
|
-
"game/theme": "game/theme",
|
|
124
|
-
"game/theme/cover": "game/theme/cover",
|
|
125
|
-
"game/venue": "game/venue",
|
|
126
|
-
"games": "game",
|
|
127
|
-
"games/city": "game/city",
|
|
128
|
-
"games/registrations": "game/registrations",
|
|
129
|
-
"games/registrations/export": "game/registrations/export",
|
|
130
|
-
"games/summary": "game/summary",
|
|
131
|
-
"games/theme": "game/theme",
|
|
132
|
-
"games/theme/cover": "game/theme/cover",
|
|
133
|
-
"games/venue": "game/venue",
|
|
134
|
-
"registration": "registration",
|
|
135
|
-
"registration/cancellation": "registration/cancellation",
|
|
136
|
-
"registration/channel": "registration/channel",
|
|
137
|
-
"registration/confirmation": "registration/confirmation",
|
|
138
|
-
"registration/export": "registration/export",
|
|
139
|
-
"registration/city": "registration/city",
|
|
140
|
-
"registration/game": "registration/game",
|
|
141
|
-
"registration/game/theme": "registration/game/theme",
|
|
142
|
-
"registration/game/theme/cover": "registration/game/theme/cover",
|
|
143
|
-
"registration/mailing": "registration/mailing",
|
|
144
|
-
"registrations": "registration",
|
|
145
|
-
"registrations/city": "registration/city",
|
|
146
|
-
"registrations/game": "registration/game",
|
|
147
|
-
"registrations/game/theme": "registration/game/theme",
|
|
148
|
-
"registrations/export": "registration/export"
|
|
149
|
-
}))
|
|
@@ -1,179 +0,0 @@
|
|
|
1
|
-
/* --- AUTOGENERATED --- */
|
|
2
|
-
|
|
3
|
-
export const RouteServices = Object.freeze( /** @type {const} */ ([
|
|
4
|
-
"Roles",
|
|
5
|
-
"Users",
|
|
6
|
-
"Checkin",
|
|
7
|
-
"Cities",
|
|
8
|
-
"Locations",
|
|
9
|
-
"Venues",
|
|
10
|
-
"Themes",
|
|
11
|
-
"Games",
|
|
12
|
-
"Registrations"
|
|
13
|
-
]))
|
|
14
|
-
|
|
15
|
-
export const RouteService = Object.freeze(/** @type {const} */ ({
|
|
16
|
-
"role": "Roles",
|
|
17
|
-
"roles": "Roles",
|
|
18
|
-
"user": "Users",
|
|
19
|
-
"user/password": "Users",
|
|
20
|
-
"user/role": "Users",
|
|
21
|
-
"user/city": "Users",
|
|
22
|
-
"user/cities": "Users",
|
|
23
|
-
"users": "Users",
|
|
24
|
-
"users/password": "Users",
|
|
25
|
-
"users/role": "Users",
|
|
26
|
-
"users/cities": "Users",
|
|
27
|
-
"checkin": "Checkin",
|
|
28
|
-
"cities": "Cities",
|
|
29
|
-
"cities/country": "Cities",
|
|
30
|
-
"cities/currency": "Cities",
|
|
31
|
-
"cities/timezone": "Cities",
|
|
32
|
-
"cities/venues": "Cities",
|
|
33
|
-
"city": "Cities",
|
|
34
|
-
"city/vk_group_token": "Cities",
|
|
35
|
-
"city/country": "Cities",
|
|
36
|
-
"city/currency": "Cities",
|
|
37
|
-
"city/timezone": "Cities",
|
|
38
|
-
"city/venue": "Cities",
|
|
39
|
-
"city/venues": "Cities",
|
|
40
|
-
"country": "Locations",
|
|
41
|
-
"countries": "Locations",
|
|
42
|
-
"currency": "Locations",
|
|
43
|
-
"currencies": "Locations",
|
|
44
|
-
"timezone": "Locations",
|
|
45
|
-
"timezones": "Locations",
|
|
46
|
-
"venue": "Venues",
|
|
47
|
-
"venue/city": "Venues",
|
|
48
|
-
"venues": "Venues",
|
|
49
|
-
"venues/city": "Venues",
|
|
50
|
-
"theme": "Themes",
|
|
51
|
-
"theme/cover": "Themes",
|
|
52
|
-
"themes": "Themes",
|
|
53
|
-
"themes/cover": "Themes",
|
|
54
|
-
"themes/games": "Themes",
|
|
55
|
-
"game": "Games",
|
|
56
|
-
"game/city": "Games",
|
|
57
|
-
"game/registration": "Games",
|
|
58
|
-
"game/registrations": "Games",
|
|
59
|
-
"game/registrations/export": "Games",
|
|
60
|
-
"game/summary": "Games",
|
|
61
|
-
"game/theme": "Games",
|
|
62
|
-
"game/theme/cover": "Games",
|
|
63
|
-
"game/venue": "Games",
|
|
64
|
-
"games": "Games",
|
|
65
|
-
"games/city": "Games",
|
|
66
|
-
"games/registrations": "Games",
|
|
67
|
-
"games/registrations/export": "Games",
|
|
68
|
-
"games/summary": "Games",
|
|
69
|
-
"games/theme": "Games",
|
|
70
|
-
"games/theme/cover": "Games",
|
|
71
|
-
"games/venue": "Games",
|
|
72
|
-
"registration": "Registrations",
|
|
73
|
-
"registration/cancellation": "Registrations",
|
|
74
|
-
"registration/channel": "Registrations",
|
|
75
|
-
"registration/confirmation": "Registrations",
|
|
76
|
-
"registration/export": "Registrations",
|
|
77
|
-
"registration/city": "Registrations",
|
|
78
|
-
"registration/game": "Registrations",
|
|
79
|
-
"registration/game/theme": "Registrations",
|
|
80
|
-
"registration/game/theme/cover": "Registrations",
|
|
81
|
-
"registration/mailing": "Registrations",
|
|
82
|
-
"registrations": "Registrations",
|
|
83
|
-
"registrations/city": "Registrations",
|
|
84
|
-
"registrations/game": "Registrations",
|
|
85
|
-
"registrations/game/theme": "Registrations",
|
|
86
|
-
"registrations/export": "Registrations"
|
|
87
|
-
}))
|
|
88
|
-
|
|
89
|
-
export const ServiceRoutes = Object.freeze(/** @type {const} */ ({
|
|
90
|
-
"Roles": [
|
|
91
|
-
"role",
|
|
92
|
-
"roles"
|
|
93
|
-
],
|
|
94
|
-
"Users": [
|
|
95
|
-
"user",
|
|
96
|
-
"user/password",
|
|
97
|
-
"user/role",
|
|
98
|
-
"user/city",
|
|
99
|
-
"user/cities",
|
|
100
|
-
"users",
|
|
101
|
-
"users/password",
|
|
102
|
-
"users/role",
|
|
103
|
-
"users/cities"
|
|
104
|
-
],
|
|
105
|
-
"Checkin": [
|
|
106
|
-
"checkin"
|
|
107
|
-
],
|
|
108
|
-
"Cities": [
|
|
109
|
-
"cities",
|
|
110
|
-
"cities/country",
|
|
111
|
-
"cities/currency",
|
|
112
|
-
"cities/timezone",
|
|
113
|
-
"cities/venues",
|
|
114
|
-
"city",
|
|
115
|
-
"city/vk_group_token",
|
|
116
|
-
"city/country",
|
|
117
|
-
"city/currency",
|
|
118
|
-
"city/timezone",
|
|
119
|
-
"city/venue",
|
|
120
|
-
"city/venues"
|
|
121
|
-
],
|
|
122
|
-
"Locations": [
|
|
123
|
-
"country",
|
|
124
|
-
"countries",
|
|
125
|
-
"currency",
|
|
126
|
-
"currencies",
|
|
127
|
-
"timezone",
|
|
128
|
-
"timezones"
|
|
129
|
-
],
|
|
130
|
-
"Venues": [
|
|
131
|
-
"venue",
|
|
132
|
-
"venue/city",
|
|
133
|
-
"venues",
|
|
134
|
-
"venues/city"
|
|
135
|
-
],
|
|
136
|
-
"Themes": [
|
|
137
|
-
"theme",
|
|
138
|
-
"theme/cover",
|
|
139
|
-
"themes",
|
|
140
|
-
"themes/cover",
|
|
141
|
-
"themes/games"
|
|
142
|
-
],
|
|
143
|
-
"Games": [
|
|
144
|
-
"game",
|
|
145
|
-
"game/city",
|
|
146
|
-
"game/registration",
|
|
147
|
-
"game/registrations",
|
|
148
|
-
"game/registrations/export",
|
|
149
|
-
"game/summary",
|
|
150
|
-
"game/theme",
|
|
151
|
-
"game/theme/cover",
|
|
152
|
-
"game/venue",
|
|
153
|
-
"games",
|
|
154
|
-
"games/city",
|
|
155
|
-
"games/registrations",
|
|
156
|
-
"games/registrations/export",
|
|
157
|
-
"games/summary",
|
|
158
|
-
"games/theme",
|
|
159
|
-
"games/theme/cover",
|
|
160
|
-
"games/venue"
|
|
161
|
-
],
|
|
162
|
-
"Registrations": [
|
|
163
|
-
"registration",
|
|
164
|
-
"registration/cancellation",
|
|
165
|
-
"registration/channel",
|
|
166
|
-
"registration/confirmation",
|
|
167
|
-
"registration/export",
|
|
168
|
-
"registration/city",
|
|
169
|
-
"registration/game",
|
|
170
|
-
"registration/game/theme",
|
|
171
|
-
"registration/game/theme/cover",
|
|
172
|
-
"registration/mailing",
|
|
173
|
-
"registrations",
|
|
174
|
-
"registrations/city",
|
|
175
|
-
"registrations/game",
|
|
176
|
-
"registrations/game/theme",
|
|
177
|
-
"registrations/export"
|
|
178
|
-
]
|
|
179
|
-
}))
|
package/source/entities/route.js
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
export const Routes = Object.freeze(
|
|
2
|
-
/** @type {const} */ ([
|
|
3
|
-
'role',
|
|
4
|
-
'roles',
|
|
5
|
-
'user',
|
|
6
|
-
'user/password',
|
|
7
|
-
'user/role',
|
|
8
|
-
'user/city',
|
|
9
|
-
'user/cities',
|
|
10
|
-
'users',
|
|
11
|
-
'users/password',
|
|
12
|
-
'users/role',
|
|
13
|
-
'users/cities',
|
|
14
|
-
'checkin',
|
|
15
|
-
'cities',
|
|
16
|
-
'cities/country',
|
|
17
|
-
'cities/currency',
|
|
18
|
-
'cities/timezone',
|
|
19
|
-
'cities/venues',
|
|
20
|
-
'city',
|
|
21
|
-
'city/vk_group_token',
|
|
22
|
-
'city/country',
|
|
23
|
-
'city/currency',
|
|
24
|
-
'city/timezone',
|
|
25
|
-
'city/venue',
|
|
26
|
-
'city/venues',
|
|
27
|
-
'country',
|
|
28
|
-
'countries',
|
|
29
|
-
'currency',
|
|
30
|
-
'currencies',
|
|
31
|
-
'timezone',
|
|
32
|
-
'timezones',
|
|
33
|
-
'venue',
|
|
34
|
-
'venue/city',
|
|
35
|
-
'venues',
|
|
36
|
-
'venues/city',
|
|
37
|
-
'theme',
|
|
38
|
-
'theme/cover',
|
|
39
|
-
'themes',
|
|
40
|
-
'themes/cover',
|
|
41
|
-
'themes/games',
|
|
42
|
-
'game',
|
|
43
|
-
'game/city',
|
|
44
|
-
'game/registration',
|
|
45
|
-
'game/registrations',
|
|
46
|
-
'game/registrations/export',
|
|
47
|
-
'game/summary',
|
|
48
|
-
'game/theme',
|
|
49
|
-
'game/theme/cover',
|
|
50
|
-
'game/venue',
|
|
51
|
-
'games',
|
|
52
|
-
'games/city',
|
|
53
|
-
'games/registrations',
|
|
54
|
-
'games/registrations/export',
|
|
55
|
-
'games/summary',
|
|
56
|
-
'games/theme',
|
|
57
|
-
'games/theme/cover',
|
|
58
|
-
'games/venue',
|
|
59
|
-
'registration',
|
|
60
|
-
'registration/cancellation',
|
|
61
|
-
'registration/channel',
|
|
62
|
-
'registration/confirmation',
|
|
63
|
-
'registration/export',
|
|
64
|
-
'registration/city',
|
|
65
|
-
'registration/game',
|
|
66
|
-
'registration/game/theme',
|
|
67
|
-
'registration/game/theme/cover',
|
|
68
|
-
'registration/mailing',
|
|
69
|
-
'registrations',
|
|
70
|
-
'registrations/city',
|
|
71
|
-
'registrations/game',
|
|
72
|
-
'registrations/game/theme',
|
|
73
|
-
'registrations/export',
|
|
74
|
-
]),
|
|
75
|
-
)
|
|
76
|
-
|
|
77
|
-
export const Route = Object.freeze(
|
|
78
|
-
/** @type {{ [x in typeof Routes[number]]: x }} */ (Routes.reduce(
|
|
79
|
-
(o, x) => (o[x] = x, o),
|
|
80
|
-
{},
|
|
81
|
-
)),
|
|
82
|
-
)
|