@shakerquiz/utilities 1.0.0 → 2.0.1
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/.github/workflows/publish.yml +32 -0
- package/dprint.json +3 -8
- package/jsconfig.json +13 -6
- package/package.json +16 -9
- package/source/enumerations/core/features.d.ts +40 -0
- package/source/enumerations/core/features.js +205 -0
- package/source/enumerations/core/kinds.d.ts +1 -0
- package/source/enumerations/core/kinds.js +4 -0
- package/source/enumerations/core/methods.d.ts +8 -0
- package/source/enumerations/core/methods.js +25 -0
- package/source/enumerations/core/networks.d.ts +1 -0
- package/source/enumerations/core/networks.js +4 -0
- package/source/enumerations/core/runtimes.d.ts +1 -0
- package/source/enumerations/core/runtimes.js +4 -0
- package/source/enumerations/core/scopes.d.ts +5 -0
- package/source/enumerations/core/scopes.js +27 -0
- package/source/enumerations/entities/city-affilations.d.ts +1 -0
- package/source/enumerations/entities/city-affilations.js +4 -0
- package/source/enumerations/entities/game-statuses.d.ts +1 -0
- package/source/enumerations/entities/game-statuses.js +11 -0
- package/source/enumerations/entities/registration-attributes.d.ts +2 -0
- package/source/enumerations/entities/registration-attributes.js +57 -0
- package/source/enumerations/entities/registration-channels.d.ts +1 -0
- package/source/enumerations/entities/registration-channels.js +5 -0
- package/source/enumerations/entities/registration-lineups.d.ts +5 -0
- package/source/enumerations/entities/registration-lineups.js +43 -0
- package/source/enumerations/entities/registration-mailings.d.ts +1 -0
- package/source/enumerations/entities/registration-mailings.js +6 -0
- package/source/enumerations/entities/registration-statuses.d.ts +5 -0
- package/source/enumerations/entities/registration-statuses.js +54 -0
- package/source/enumerations/entities/roles.d.ts +1 -0
- package/source/enumerations/entities/roles.js +5 -0
- package/source/enumerations/entities/venue-statuses.d.ts +1 -0
- package/source/enumerations/entities/venue-statuses.js +4 -0
- package/source/enumerations/misc/constants.d.ts +3 -0
- package/source/enumerations/{constants.js → misc/constants.js} +2 -2
- package/source/enumerations/misc/cookies.d.ts +5 -0
- package/source/enumerations/{cookies.js → misc/cookies.js} +2 -2
- package/source/enumerations/misc/icons.d.ts +1 -0
- package/source/enumerations/misc/icons.js +326 -0
- package/source/enumerations/misc/phases.d.ts +1 -0
- package/source/enumerations/misc/phases.js +7 -0
- package/source/enumerations/misc/regexps.d.ts +5 -0
- package/source/enumerations/{regexps.js → misc/regexps.js} +2 -2
- package/source/functions/tag.d.ts +1 -0
- package/source/functions/tag.js +5 -0
- package/source/index.d.ts +26 -14
- package/source/index.js +24 -11
- package/source/misc.d.ts +79 -0
- package/source/schemas/PATCH/Game/admin/schema.json +34 -0
- package/source/schemas/PATCH/Game/default/schema.json +6 -0
- package/source/schemas/PATCH/Game/organizer/schema.json +34 -0
- package/source/schemas/PATCH/Registration/admin/schema.json +6 -0
- package/source/schemas/PATCH/Registration/default/schema.json +104 -0
- package/source/schemas/PATCH/Registration/organizer/schema.json +43 -0
- package/source/schemas/PATCH/Venue/admin/schema.json +40 -0
- package/source/schemas/PATCH/Venue/default/schema.json +6 -0
- package/source/schemas/PATCH/Venue/organizer/schema.json +43 -0
- package/source/schemas/POST/Game/admin/schema.json +27 -0
- package/source/schemas/POST/Game/default/schema.json +27 -0
- package/source/schemas/POST/Game/organizer/schema.json +27 -0
- package/source/schemas/POST/Mailing/admin/schema.json +6 -0
- package/source/schemas/POST/Mailing/default/schema.json +6 -0
- package/source/schemas/POST/Mailing/organizer/schema.json +12 -0
- package/source/schemas/POST/Registration/admin/schema.json +6 -0
- package/source/schemas/POST/Registration/default/schema.json +125 -0
- package/source/schemas/POST/Registration/organizer/schema.json +6 -0
- package/source/schemas/POST/Venue/admin/schema.json +6 -0
- package/source/schemas/POST/Venue/default/schema.json +6 -0
- package/source/schemas/POST/Venue/organizer/schema.json +49 -0
- package/source/schemas/game.schema.json +93 -0
- package/source/schemas/registration.schema.json +123 -0
- package/source/schemas/theme.schema.json +48 -0
- package/source/schemas/venue.schema.json +56 -0
- package/source/scope.d.ts +874 -0
- package/source/server.d.ts +5 -0
- package/source/tables.d.ts +187 -0
- package/source/enumerations/constants.d.ts +0 -3
- package/source/enumerations/cookies.d.ts +0 -5
- package/source/enumerations/features.d.ts +0 -58
- package/source/enumerations/features.js +0 -49
- package/source/enumerations/game-statuses.d.ts +0 -39
- package/source/enumerations/game-statuses.js +0 -39
- package/source/enumerations/kinds.d.ts +0 -4
- package/source/enumerations/kinds.js +0 -4
- package/source/enumerations/methods.d.ts +0 -7
- package/source/enumerations/methods.js +0 -7
- package/source/enumerations/networks.d.ts +0 -4
- package/source/enumerations/networks.js +0 -4
- package/source/enumerations/phases.d.ts +0 -7
- package/source/enumerations/phases.js +0 -7
- package/source/enumerations/regexps.d.ts +0 -4
- package/source/enumerations/roles.d.ts +0 -5
- package/source/enumerations/roles.js +0 -5
- package/source/functions/request.d.ts +0 -131
- package/source/functions/request.js +0 -202
- package/source/globals.d.ts +0 -14
- package/source/results.d.ts +0 -137
- package/source/rows.d.ts +0 -533
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
type UserTable = {
|
|
2
|
+
email: string | null
|
|
3
|
+
first_name: string | null
|
|
4
|
+
gmail_link: string | null
|
|
5
|
+
hashed_password: string | null
|
|
6
|
+
id: string
|
|
7
|
+
image_id: string | null
|
|
8
|
+
is_active: boolean | null
|
|
9
|
+
is_superuser: boolean | null
|
|
10
|
+
is_verified: boolean | null
|
|
11
|
+
last_name: string | null
|
|
12
|
+
mailru_link: string | null
|
|
13
|
+
phone: string | null
|
|
14
|
+
role_id: string
|
|
15
|
+
telegram_data: string | null
|
|
16
|
+
telegram_id: string | null
|
|
17
|
+
third_name: string | null
|
|
18
|
+
time_created: string
|
|
19
|
+
time_updated: string | null
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
type RoleTable = {
|
|
23
|
+
description: string | null
|
|
24
|
+
id: string
|
|
25
|
+
name: Role
|
|
26
|
+
time_created: string
|
|
27
|
+
time_updated: string | null
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
type CityTable = {
|
|
31
|
+
address: string | null
|
|
32
|
+
alias: string | null
|
|
33
|
+
chatapp_category: string | null
|
|
34
|
+
chatapp_legacy: boolean | null
|
|
35
|
+
chatapp_line: string | null
|
|
36
|
+
chatapp_tag: string | null
|
|
37
|
+
chatapp_user: string | null
|
|
38
|
+
country: string | null
|
|
39
|
+
currency: string | null
|
|
40
|
+
custom_html: string | null
|
|
41
|
+
custom_script: string | null
|
|
42
|
+
description: string | null
|
|
43
|
+
email: string | null
|
|
44
|
+
game_time: string | null
|
|
45
|
+
id: string
|
|
46
|
+
inst_comment: string | null
|
|
47
|
+
inst_link: string | null
|
|
48
|
+
inst_login: string | null
|
|
49
|
+
inst_password: string | null
|
|
50
|
+
is_default: boolean | null
|
|
51
|
+
is_franchise: boolean | null
|
|
52
|
+
max_members_count: number | null
|
|
53
|
+
meta_description: string | null
|
|
54
|
+
meta_title: string | null
|
|
55
|
+
min_members_count: number | null
|
|
56
|
+
name: string | null
|
|
57
|
+
phone: string | null
|
|
58
|
+
price: number | null
|
|
59
|
+
region: string | null
|
|
60
|
+
telegram_chat_id: string | null
|
|
61
|
+
tg_comment: string | null
|
|
62
|
+
tg_link: string | null
|
|
63
|
+
tg_login: string | null
|
|
64
|
+
tg_password: string | null
|
|
65
|
+
time_created: string
|
|
66
|
+
time_updated: string | null
|
|
67
|
+
timezone: number | null
|
|
68
|
+
title: string | null
|
|
69
|
+
vk_comment: string | null
|
|
70
|
+
vk_group_id: string | null
|
|
71
|
+
vk_link: string | null
|
|
72
|
+
yandex_metrica: string | null
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
type VenueTable = {
|
|
76
|
+
city_id: string | null
|
|
77
|
+
comment_equipment: string | null
|
|
78
|
+
comment_responsible: string | null
|
|
79
|
+
comment: string | null
|
|
80
|
+
floor: string | null
|
|
81
|
+
game_time: string | null
|
|
82
|
+
house_number: string | null
|
|
83
|
+
id: string
|
|
84
|
+
is_adult: boolean | null
|
|
85
|
+
latitude: number | null
|
|
86
|
+
location_info: string | null
|
|
87
|
+
longitude: number | null
|
|
88
|
+
metro: string | null
|
|
89
|
+
name: string | null
|
|
90
|
+
people_capacity: number | null
|
|
91
|
+
street: string | null
|
|
92
|
+
team_capacity: number | null
|
|
93
|
+
time_created: string
|
|
94
|
+
time_updated: string
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
type ThemeTable = {
|
|
98
|
+
description: string | null
|
|
99
|
+
id: string
|
|
100
|
+
image_id: string
|
|
101
|
+
name: string | null
|
|
102
|
+
short_description: string | null
|
|
103
|
+
time_created: string
|
|
104
|
+
time_updated: string
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
type GameTable = {
|
|
108
|
+
alias: string | null
|
|
109
|
+
city_id: string | null
|
|
110
|
+
created_by_id: string
|
|
111
|
+
currency: string | null
|
|
112
|
+
description: string | null
|
|
113
|
+
event_time: string | null
|
|
114
|
+
game_pack_id: string | null
|
|
115
|
+
id: string
|
|
116
|
+
image_id: string | null
|
|
117
|
+
location_id: string
|
|
118
|
+
max_members_count: number | null
|
|
119
|
+
min_members_count: number | null
|
|
120
|
+
name: string | null
|
|
121
|
+
number: string | null
|
|
122
|
+
owner_id: string
|
|
123
|
+
personal_comment: string | null
|
|
124
|
+
price: number | null
|
|
125
|
+
short_description: string | null
|
|
126
|
+
status: GameStatus
|
|
127
|
+
theme_id: string
|
|
128
|
+
time_created: string
|
|
129
|
+
time_updated: string | null
|
|
130
|
+
timezone: number | null
|
|
131
|
+
weekday: string | null
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
type RegistrationTable = {
|
|
135
|
+
ads_from: string | null
|
|
136
|
+
change_people_count: number | null
|
|
137
|
+
channel: string | null
|
|
138
|
+
chatapp_id: string | null
|
|
139
|
+
comment: string | null
|
|
140
|
+
email: string | null
|
|
141
|
+
event_id: string
|
|
142
|
+
fact_people_count: number | null
|
|
143
|
+
human_name: string | null
|
|
144
|
+
id: string
|
|
145
|
+
is_actual_presence: boolean | null
|
|
146
|
+
is_alone: boolean | null
|
|
147
|
+
is_birthday: boolean | null
|
|
148
|
+
is_canceled: boolean | null
|
|
149
|
+
is_confirm: boolean | null
|
|
150
|
+
is_extensible: boolean | null
|
|
151
|
+
is_first: boolean | null
|
|
152
|
+
is_reserve: boolean | null
|
|
153
|
+
last_broadcast: string | null
|
|
154
|
+
people_count: number | null
|
|
155
|
+
phone: string | null
|
|
156
|
+
promocode: string | null
|
|
157
|
+
team_name: string | null
|
|
158
|
+
telegramBot: string | null
|
|
159
|
+
time_created: string
|
|
160
|
+
time_updated: string | null
|
|
161
|
+
utm_campaign: string | null
|
|
162
|
+
utm_content: string | null
|
|
163
|
+
utm_medium: string | null
|
|
164
|
+
utm_source: string | null
|
|
165
|
+
utm_term: string | null
|
|
166
|
+
vkontakte: string | null
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
type MediaTable = {
|
|
170
|
+
id: string
|
|
171
|
+
time_created: string
|
|
172
|
+
time_updated: string | null
|
|
173
|
+
title: string | null
|
|
174
|
+
cached_link: string | null
|
|
175
|
+
description: string | null
|
|
176
|
+
path: string | null
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
type ImageTable = {
|
|
180
|
+
file_format: string | null
|
|
181
|
+
height: number | null
|
|
182
|
+
id: string
|
|
183
|
+
media_id: string
|
|
184
|
+
time_created: string
|
|
185
|
+
time_updated: string | null
|
|
186
|
+
width: number | null
|
|
187
|
+
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { URLOptions } from '@yurkimus/url'
|
|
2
|
-
|
|
3
|
-
import { Kinds } from './kinds'
|
|
4
|
-
import { Networks } from './networks'
|
|
5
|
-
|
|
6
|
-
export let Features: {
|
|
7
|
-
Checkin: 'Checkin'
|
|
8
|
-
|
|
9
|
-
City: 'City'
|
|
10
|
-
Cities: 'Cities'
|
|
11
|
-
|
|
12
|
-
CityPublic: 'CityPublic'
|
|
13
|
-
CitiesPublic: 'CitiesPublic'
|
|
14
|
-
|
|
15
|
-
Game: 'Game'
|
|
16
|
-
Games: 'Games'
|
|
17
|
-
|
|
18
|
-
GamePublic: 'GamePublic'
|
|
19
|
-
GamesPublic: 'GamesPublic'
|
|
20
|
-
|
|
21
|
-
Theme: 'Theme'
|
|
22
|
-
Themes: 'Themes'
|
|
23
|
-
|
|
24
|
-
User: 'User'
|
|
25
|
-
Users: 'Users'
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export let FeatureKinds: {
|
|
29
|
-
[Features.Checkin]: Kinds.Item
|
|
30
|
-
|
|
31
|
-
[Features.City]: Kinds.Item
|
|
32
|
-
[Features.Cities]: Kinds.List
|
|
33
|
-
|
|
34
|
-
[Features.CityPublic]: Kinds.Item
|
|
35
|
-
[Features.CitiesPublic]: Kinds.List
|
|
36
|
-
|
|
37
|
-
[Features.Game]: Kinds.Item
|
|
38
|
-
[Features.Games]: Kinds.List
|
|
39
|
-
|
|
40
|
-
[Features.GamePublic]: Kinds.Item
|
|
41
|
-
[Features.GamesPublic]: Kinds.List
|
|
42
|
-
|
|
43
|
-
[Features.Theme]: Kinds.Item
|
|
44
|
-
[Features.Themes]: Kinds.List
|
|
45
|
-
|
|
46
|
-
[Features.User]: Kinds.Item
|
|
47
|
-
[Features.Users]: Kinds.List
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export let FeatureRequests: Map<
|
|
51
|
-
keyof typeof Features,
|
|
52
|
-
Set<'DELETE' | 'GET' | 'OPTIONS' | 'POST' | 'PATCH'>
|
|
53
|
-
>
|
|
54
|
-
|
|
55
|
-
export let FeatureUrls: Map<
|
|
56
|
-
keyof typeof Features,
|
|
57
|
-
Map<keyof typeof Networks, (options: URLOptions) => URL>
|
|
58
|
-
>
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { Kinds } from './kinds.js'
|
|
2
|
-
|
|
3
|
-
export let Features = {
|
|
4
|
-
Checkin: 'Checkin',
|
|
5
|
-
|
|
6
|
-
City: 'City',
|
|
7
|
-
Cities: 'Cities',
|
|
8
|
-
|
|
9
|
-
CityPublic: 'CityPublic',
|
|
10
|
-
CitiesPublic: 'CitiesPublic',
|
|
11
|
-
|
|
12
|
-
Game: 'Game',
|
|
13
|
-
Games: 'Games',
|
|
14
|
-
|
|
15
|
-
GamePublic: 'GamePublic',
|
|
16
|
-
GamesPublic: 'GamesPublic',
|
|
17
|
-
|
|
18
|
-
Theme: 'Theme',
|
|
19
|
-
Themes: 'Themes',
|
|
20
|
-
|
|
21
|
-
User: 'User',
|
|
22
|
-
Users: 'Users',
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export let FeatureKinds = {
|
|
26
|
-
[Features.Checkin]: Kinds.Item,
|
|
27
|
-
|
|
28
|
-
[Features.City]: Kinds.Item,
|
|
29
|
-
[Features.Cities]: Kinds.List,
|
|
30
|
-
|
|
31
|
-
[Features.CityPublic]: Kinds.Item,
|
|
32
|
-
[Features.CitiesPublic]: Kinds.List,
|
|
33
|
-
|
|
34
|
-
[Features.Game]: Kinds.Item,
|
|
35
|
-
[Features.Games]: Kinds.List,
|
|
36
|
-
|
|
37
|
-
[Features.GamePublic]: Kinds.Item,
|
|
38
|
-
[Features.GamesPublic]: Kinds.List,
|
|
39
|
-
|
|
40
|
-
[Features.Theme]: Kinds.Item,
|
|
41
|
-
[Features.Themes]: Kinds.List,
|
|
42
|
-
|
|
43
|
-
[Features.User]: Kinds.Item,
|
|
44
|
-
[Features.Users]: Kinds.List,
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
export let FeatureRequests = new Map()
|
|
48
|
-
|
|
49
|
-
export let FeatureUrls = new Map()
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { Roles } from './roles.js'
|
|
2
|
-
|
|
3
|
-
export let GameStatuses: {
|
|
4
|
-
Approved: 'APPROVED'
|
|
5
|
-
Archive: 'ARCHIVE'
|
|
6
|
-
Closed: 'CLOSED'
|
|
7
|
-
Finished: 'FINISHED'
|
|
8
|
-
Invitation: 'FORINVITES'
|
|
9
|
-
Moderation: 'MODERATION'
|
|
10
|
-
Published: 'PUBLISHED'
|
|
11
|
-
Rejected: 'REJECTED'
|
|
12
|
-
Reserved: 'IS_RESERVE'
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export let RoleGameStatuses: {
|
|
16
|
-
[Roles.Admin]: [
|
|
17
|
-
typeof GameStatuses.Approved,
|
|
18
|
-
typeof GameStatuses.Moderation,
|
|
19
|
-
typeof GameStatuses.Published,
|
|
20
|
-
typeof GameStatuses.Rejected,
|
|
21
|
-
typeof GameStatuses.Finished,
|
|
22
|
-
typeof GameStatuses.Archive,
|
|
23
|
-
typeof GameStatuses.Invitation,
|
|
24
|
-
typeof GameStatuses.Reserved,
|
|
25
|
-
typeof GameStatuses.Closed,
|
|
26
|
-
]
|
|
27
|
-
|
|
28
|
-
[Roles.Organizer]: [
|
|
29
|
-
typeof GameStatuses.Approved,
|
|
30
|
-
typeof GameStatuses.Published,
|
|
31
|
-
typeof GameStatuses.Finished,
|
|
32
|
-
typeof GameStatuses.Archive,
|
|
33
|
-
typeof GameStatuses.Invitation,
|
|
34
|
-
typeof GameStatuses.Reserved,
|
|
35
|
-
typeof GameStatuses.Closed,
|
|
36
|
-
]
|
|
37
|
-
|
|
38
|
-
[Roles.Default]: []
|
|
39
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { Roles } from './roles.js'
|
|
2
|
-
|
|
3
|
-
export let GameStatuses = {
|
|
4
|
-
Approved: 'APPROVED',
|
|
5
|
-
Archive: 'ARCHIVE',
|
|
6
|
-
Closed: 'CLOSED',
|
|
7
|
-
Finished: 'FINISHED',
|
|
8
|
-
Invitation: 'FORINVITES',
|
|
9
|
-
Moderation: 'MODERATION',
|
|
10
|
-
Published: 'PUBLISHED',
|
|
11
|
-
Rejected: 'REJECTED',
|
|
12
|
-
Reserved: 'IS_RESERVE',
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export let RoleGameStatuses = {
|
|
16
|
-
[Roles.Admin]: [
|
|
17
|
-
GameStatuses.Approved,
|
|
18
|
-
GameStatuses.Moderation,
|
|
19
|
-
GameStatuses.Published,
|
|
20
|
-
GameStatuses.Rejected,
|
|
21
|
-
GameStatuses.Finished,
|
|
22
|
-
GameStatuses.Archive,
|
|
23
|
-
GameStatuses.Invitation,
|
|
24
|
-
GameStatuses.Reserved,
|
|
25
|
-
GameStatuses.Closed,
|
|
26
|
-
],
|
|
27
|
-
|
|
28
|
-
[Roles.Organizer]: [
|
|
29
|
-
GameStatuses.Approved,
|
|
30
|
-
GameStatuses.Published,
|
|
31
|
-
GameStatuses.Finished,
|
|
32
|
-
GameStatuses.Archive,
|
|
33
|
-
GameStatuses.Invitation,
|
|
34
|
-
GameStatuses.Reserved,
|
|
35
|
-
GameStatuses.Closed,
|
|
36
|
-
],
|
|
37
|
-
|
|
38
|
-
[Roles.Default]: [],
|
|
39
|
-
}
|
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
import { URLOptions } from '@yurkimus/url'
|
|
2
|
-
|
|
3
|
-
import { Features } from '../enumerations/features'
|
|
4
|
-
import { Methods } from '../enumerations/methods'
|
|
5
|
-
import { Networks } from '../enumerations/networks'
|
|
6
|
-
|
|
7
|
-
export let Extensions: WeakMap<
|
|
8
|
-
Function,
|
|
9
|
-
Map<
|
|
10
|
-
| 'onbefore'
|
|
11
|
-
| 'onfulfilled'
|
|
12
|
-
| 'onrejected',
|
|
13
|
-
Set<Function>
|
|
14
|
-
>
|
|
15
|
-
>
|
|
16
|
-
|
|
17
|
-
export let useRequest: <
|
|
18
|
-
Feature extends keyof typeof Features,
|
|
19
|
-
Method extends keyof typeof Methods,
|
|
20
|
-
Network extends keyof typeof Networks,
|
|
21
|
-
>(
|
|
22
|
-
feature: Feature,
|
|
23
|
-
method: Method,
|
|
24
|
-
network: Network,
|
|
25
|
-
) => (options: URLOptions, init: RequestInit) => Promise<
|
|
26
|
-
{
|
|
27
|
-
[Features.Checkin]: {
|
|
28
|
-
[Methods.DELETE]: unknown
|
|
29
|
-
[Methods.GET]: CheckinResult
|
|
30
|
-
[Methods.OPTIONS]: unknown
|
|
31
|
-
[Methods.PATCH]: unknown
|
|
32
|
-
[Methods.POST]: unknown
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
[Features.City]: {
|
|
36
|
-
[Methods.DELETE]: unknown
|
|
37
|
-
[Methods.GET]: CityResult
|
|
38
|
-
[Methods.OPTIONS]: unknown
|
|
39
|
-
[Methods.PATCH]: unknown
|
|
40
|
-
[Methods.POST]: unknown
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
[Features.Cities]: {
|
|
44
|
-
[Methods.DELETE]: unknown
|
|
45
|
-
[Methods.GET]: CityResult[]
|
|
46
|
-
[Methods.OPTIONS]: unknown
|
|
47
|
-
[Methods.PATCH]: unknown
|
|
48
|
-
[Methods.POST]: unknown
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
[Features.CityPublic]: {
|
|
52
|
-
[Methods.DELETE]: unknown
|
|
53
|
-
[Methods.GET]: CityPublicResult
|
|
54
|
-
[Methods.OPTIONS]: unknown
|
|
55
|
-
[Methods.PATCH]: unknown
|
|
56
|
-
[Methods.POST]: unknown
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
[Features.CitiesPublic]: {
|
|
60
|
-
[Methods.DELETE]: unknown
|
|
61
|
-
[Methods.GET]: CityPublicResult[]
|
|
62
|
-
[Methods.OPTIONS]: unknown
|
|
63
|
-
[Methods.PATCH]: unknown
|
|
64
|
-
[Methods.POST]: unknown
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
[Features.Theme]: {
|
|
68
|
-
[Methods.DELETE]: unknown
|
|
69
|
-
[Methods.GET]: ThemeResult
|
|
70
|
-
[Methods.OPTIONS]: unknown
|
|
71
|
-
[Methods.PATCH]: unknown
|
|
72
|
-
[Methods.POST]: unknown
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
[Features.Themes]: {
|
|
76
|
-
[Methods.DELETE]: unknown
|
|
77
|
-
[Methods.GET]: ThemeResult[]
|
|
78
|
-
[Methods.OPTIONS]: unknown
|
|
79
|
-
[Methods.PATCH]: unknown
|
|
80
|
-
[Methods.POST]: unknown
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
[Features.Game]: {
|
|
84
|
-
[Methods.DELETE]: unknown
|
|
85
|
-
[Methods.GET]: unknown
|
|
86
|
-
[Methods.OPTIONS]: GameResult
|
|
87
|
-
[Methods.PATCH]: unknown
|
|
88
|
-
[Methods.POST]: unknown
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
[Features.Games]: {
|
|
92
|
-
[Methods.DELETE]: unknown
|
|
93
|
-
[Methods.GET]: GameResult[]
|
|
94
|
-
[Methods.OPTIONS]: unknown
|
|
95
|
-
[Methods.PATCH]: unknown
|
|
96
|
-
[Methods.POST]: unknown
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
[Features.GamePublic]: {
|
|
100
|
-
[Methods.DELETE]: unknown
|
|
101
|
-
[Methods.GET]: GamePublicResult
|
|
102
|
-
[Methods.OPTIONS]: unknown
|
|
103
|
-
[Methods.PATCH]: unknown
|
|
104
|
-
[Methods.POST]: unknown
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
[Features.GamesPublic]: {
|
|
108
|
-
[Methods.DELETE]: unknown
|
|
109
|
-
[Methods.GET]: GamePublicResult[]
|
|
110
|
-
[Methods.OPTIONS]: unknown
|
|
111
|
-
[Methods.PATCH]: unknown
|
|
112
|
-
[Methods.POST]: unknown
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
[Features.User]: {
|
|
116
|
-
[Methods.DELETE]: unknown
|
|
117
|
-
[Methods.GET]: unknown
|
|
118
|
-
[Methods.OPTIONS]: unknown
|
|
119
|
-
[Methods.PATCH]: unknown
|
|
120
|
-
[Methods.POST]: unknown
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
[Features.Users]: {
|
|
124
|
-
[Methods.DELETE]: unknown
|
|
125
|
-
[Methods.GET]: unknown
|
|
126
|
-
[Methods.OPTIONS]: unknown
|
|
127
|
-
[Methods.PATCH]: unknown
|
|
128
|
-
[Methods.POST]: unknown
|
|
129
|
-
}
|
|
130
|
-
}[Feature][Method]
|
|
131
|
-
>
|