@shakerquiz/contracts 0.0.242 → 0.0.244
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 +2 -2
- package/source/index.js +674 -694
- package/source/contracts/PATCH/games/Admin.json +0 -40
- package/source/contracts/PATCH/games/Organizer.json +0 -40
- package/source/contracts/PATCH/games/Service.json +0 -40
- package/source/contracts/PATCH/venues/Admin.json +0 -32
- package/source/contracts/PATCH/venues/Organizer.json +0 -34
package/source/index.js
CHANGED
|
@@ -1,735 +1,715 @@
|
|
|
1
|
-
import POST_registrations_promotion_search_Admin from './contracts/POST/registrations/promotion/search/Admin.json' with { type: 'json' }
|
|
2
|
-
import POST_registrations_promotion_search_Organizer from './contracts/POST/registrations/promotion/search/Organizer.json' with { type: 'json' }
|
|
3
|
-
import POST_registrations_promotion_search_Service from './contracts/POST/registrations/promotion/search/Service.json' with { type: 'json' }
|
|
4
|
-
import POST_registrations_status_search_Unknown from './contracts/POST/registrations/status/search/Unknown.json' with { type: 'json' }
|
|
5
|
-
import POST_registrations_status_search_Admin from './contracts/POST/registrations/status/search/Admin.json' with { type: 'json' }
|
|
6
|
-
import POST_registrations_status_search_Organizer from './contracts/POST/registrations/status/search/Organizer.json' with { type: 'json' }
|
|
7
|
-
import POST_registrations_status_search_Service from './contracts/POST/registrations/status/search/Service.json' with { type: 'json' }
|
|
8
|
-
import POST_registrations_game_search_Unknown from './contracts/POST/registrations/game/search/Unknown.json' with { type: 'json' }
|
|
9
|
-
import POST_registrations_game_search_Admin from './contracts/POST/registrations/game/search/Admin.json' with { type: 'json' }
|
|
10
|
-
import POST_registrations_game_search_Organizer from './contracts/POST/registrations/game/search/Organizer.json' with { type: 'json' }
|
|
11
|
-
import POST_registrations_game_search_Service from './contracts/POST/registrations/game/search/Service.json' with { type: 'json' }
|
|
12
|
-
import POST_registrations_cancellation_search_Unknown from './contracts/POST/registrations/cancellation/search/Unknown.json' with { type: 'json' }
|
|
13
|
-
import POST_registrations_cancellation_search_Admin from './contracts/POST/registrations/cancellation/search/Admin.json' with { type: 'json' }
|
|
14
|
-
import POST_registrations_cancellation_search_Organizer from './contracts/POST/registrations/cancellation/search/Organizer.json' with { type: 'json' }
|
|
15
|
-
import POST_registrations_cancellation_search_Service from './contracts/POST/registrations/cancellation/search/Service.json' with { type: 'json' }
|
|
16
|
-
import POST_registrations_channel_search_Unknown from './contracts/POST/registrations/channel/search/Unknown.json' with { type: 'json' }
|
|
17
|
-
import POST_registrations_mailing_status_search_Admin from './contracts/POST/registrations/mailing/status/search/Admin.json' with { type: 'json' }
|
|
18
|
-
import POST_registrations_mailing_status_search_Organizer from './contracts/POST/registrations/mailing/status/search/Organizer.json' with { type: 'json' }
|
|
19
|
-
import POST_registrations_mailing_Admin from './contracts/POST/registrations/mailing/Admin.json' with { type: 'json' }
|
|
20
|
-
import POST_registrations_mailing_Organizer from './contracts/POST/registrations/mailing/Organizer.json' with { type: 'json' }
|
|
21
|
-
import POST_registrations_cover_search_Unknown from './contracts/POST/registrations/cover/search/Unknown.json' with { type: 'json' }
|
|
22
|
-
import POST_registrations_cover_search_Admin from './contracts/POST/registrations/cover/search/Admin.json' with { type: 'json' }
|
|
23
|
-
import POST_registrations_cover_search_Organizer from './contracts/POST/registrations/cover/search/Organizer.json' with { type: 'json' }
|
|
24
|
-
import POST_registrations_cover_search_Service from './contracts/POST/registrations/cover/search/Service.json' with { type: 'json' }
|
|
25
|
-
import POST_registrations_lineup_search_Unknown from './contracts/POST/registrations/lineup/search/Unknown.json' with { type: 'json' }
|
|
26
|
-
import POST_registrations_lineup_search_Admin from './contracts/POST/registrations/lineup/search/Admin.json' with { type: 'json' }
|
|
27
|
-
import POST_registrations_lineup_search_Organizer from './contracts/POST/registrations/lineup/search/Organizer.json' with { type: 'json' }
|
|
28
|
-
import POST_registrations_lineup_search_Service from './contracts/POST/registrations/lineup/search/Service.json' with { type: 'json' }
|
|
29
|
-
import POST_registrations_theme_search_Unknown from './contracts/POST/registrations/theme/search/Unknown.json' with { type: 'json' }
|
|
30
|
-
import POST_registrations_theme_search_Admin from './contracts/POST/registrations/theme/search/Admin.json' with { type: 'json' }
|
|
31
|
-
import POST_registrations_theme_search_Organizer from './contracts/POST/registrations/theme/search/Organizer.json' with { type: 'json' }
|
|
32
|
-
import POST_registrations_theme_search_Service from './contracts/POST/registrations/theme/search/Service.json' with { type: 'json' }
|
|
33
|
-
import POST_registrations_city_search_Unknown from './contracts/POST/registrations/city/search/Unknown.json' with { type: 'json' }
|
|
34
|
-
import POST_registrations_city_search_Admin from './contracts/POST/registrations/city/search/Admin.json' with { type: 'json' }
|
|
35
|
-
import POST_registrations_city_search_Organizer from './contracts/POST/registrations/city/search/Organizer.json' with { type: 'json' }
|
|
36
|
-
import POST_registrations_city_search_Service from './contracts/POST/registrations/city/search/Service.json' with { type: 'json' }
|
|
37
|
-
import POST_registrations_confirmation_search_Unknown from './contracts/POST/registrations/confirmation/search/Unknown.json' with { type: 'json' }
|
|
38
|
-
import POST_registrations_confirmation_search_Admin from './contracts/POST/registrations/confirmation/search/Admin.json' with { type: 'json' }
|
|
39
|
-
import POST_registrations_confirmation_search_Organizer from './contracts/POST/registrations/confirmation/search/Organizer.json' with { type: 'json' }
|
|
40
|
-
import POST_registrations_confirmation_search_Service from './contracts/POST/registrations/confirmation/search/Service.json' with { type: 'json' }
|
|
41
|
-
import POST_registrations_venue_search_Unknown from './contracts/POST/registrations/venue/search/Unknown.json' with { type: 'json' }
|
|
42
|
-
import POST_registrations_venue_search_Admin from './contracts/POST/registrations/venue/search/Admin.json' with { type: 'json' }
|
|
43
|
-
import POST_registrations_venue_search_Organizer from './contracts/POST/registrations/venue/search/Organizer.json' with { type: 'json' }
|
|
44
|
-
import POST_registrations_venue_search_Service from './contracts/POST/registrations/venue/search/Service.json' with { type: 'json' }
|
|
45
|
-
import POST_registrations_reinstatement_search_Unknown from './contracts/POST/registrations/reinstatement/search/Unknown.json' with { type: 'json' }
|
|
46
|
-
import POST_registrations_reinstatement_search_Admin from './contracts/POST/registrations/reinstatement/search/Admin.json' with { type: 'json' }
|
|
47
|
-
import POST_registrations_reinstatement_search_Organizer from './contracts/POST/registrations/reinstatement/search/Organizer.json' with { type: 'json' }
|
|
48
|
-
import POST_registrations_reinstatement_search_Service from './contracts/POST/registrations/reinstatement/search/Service.json' with { type: 'json' }
|
|
49
|
-
import POST_registrations_reservation_search_Admin from './contracts/POST/registrations/reservation/search/Admin.json' with { type: 'json' }
|
|
50
|
-
import POST_registrations_reservation_search_Organizer from './contracts/POST/registrations/reservation/search/Organizer.json' with { type: 'json' }
|
|
51
|
-
import POST_registrations_reservation_search_Service from './contracts/POST/registrations/reservation/search/Service.json' with { type: 'json' }
|
|
52
|
-
import POST_registrations_restoration_search_Unknown from './contracts/POST/registrations/restoration/search/Unknown.json' with { type: 'json' }
|
|
53
|
-
import POST_registrations_restoration_search_Admin from './contracts/POST/registrations/restoration/search/Admin.json' with { type: 'json' }
|
|
54
|
-
import POST_registrations_restoration_search_Organizer from './contracts/POST/registrations/restoration/search/Organizer.json' with { type: 'json' }
|
|
55
|
-
import POST_registrations_restoration_search_Service from './contracts/POST/registrations/restoration/search/Service.json' with { type: 'json' }
|
|
56
|
-
import POST_registrations_search_Unknown from './contracts/POST/registrations/search/Unknown.json' with { type: 'json' }
|
|
57
|
-
import POST_registrations_search_Admin from './contracts/POST/registrations/search/Admin.json' with { type: 'json' }
|
|
58
|
-
import POST_registrations_search_Organizer from './contracts/POST/registrations/search/Organizer.json' with { type: 'json' }
|
|
59
|
-
import POST_registrations_export_Admin from './contracts/POST/registrations/export/Admin.json' with { type: 'json' }
|
|
60
|
-
import POST_registrations_export_Organizer from './contracts/POST/registrations/export/Organizer.json' with { type: 'json' }
|
|
61
|
-
import POST_game_Admin from './contracts/POST/game/Admin.json' with { type: 'json' }
|
|
62
|
-
import POST_game_Organizer from './contracts/POST/game/Organizer.json' with { type: 'json' }
|
|
63
|
-
import POST_registration_Unknown from './contracts/POST/registration/Unknown.json' with { type: 'json' }
|
|
64
|
-
import POST_registration_Admin from './contracts/POST/registration/Admin.json' with { type: 'json' }
|
|
65
|
-
import POST_registration_Organizer from './contracts/POST/registration/Organizer.json' with { type: 'json' }
|
|
66
|
-
import POST_roles_search_Admin from './contracts/POST/roles/search/Admin.json' with { type: 'json' }
|
|
67
|
-
import POST_users_password_search_Admin from './contracts/POST/users/password/search/Admin.json' with { type: 'json' }
|
|
68
|
-
import POST_users_role_search_Admin from './contracts/POST/users/role/search/Admin.json' with { type: 'json' }
|
|
69
|
-
import POST_users_cities_search_Admin from './contracts/POST/users/cities/search/Admin.json' with { type: 'json' }
|
|
70
|
-
import POST_users_search_Admin from './contracts/POST/users/search/Admin.json' with { type: 'json' }
|
|
71
|
-
import POST_themes_cover_search_Admin from './contracts/POST/themes/cover/search/Admin.json' with { type: 'json' }
|
|
72
|
-
import POST_themes_cover_search_Organizer from './contracts/POST/themes/cover/search/Organizer.json' with { type: 'json' }
|
|
73
|
-
import POST_themes_search_Admin from './contracts/POST/themes/search/Admin.json' with { type: 'json' }
|
|
74
|
-
import POST_themes_search_Organizer from './contracts/POST/themes/search/Organizer.json' with { type: 'json' }
|
|
75
|
-
import POST_games_cover_search_Unknown from './contracts/POST/games/cover/search/Unknown.json' with { type: 'json' }
|
|
76
|
-
import POST_games_theme_search_Unknown from './contracts/POST/games/theme/search/Unknown.json' with { type: 'json' }
|
|
77
|
-
import POST_games_theme_search_Admin from './contracts/POST/games/theme/search/Admin.json' with { type: 'json' }
|
|
78
|
-
import POST_games_theme_search_Organizer from './contracts/POST/games/theme/search/Organizer.json' with { type: 'json' }
|
|
79
|
-
import POST_games_city_search_Admin from './contracts/POST/games/city/search/Admin.json' with { type: 'json' }
|
|
80
|
-
import POST_games_city_search_Organizer from './contracts/POST/games/city/search/Organizer.json' with { type: 'json' }
|
|
81
|
-
import POST_games_venue_search_Unknown from './contracts/POST/games/venue/search/Unknown.json' with { type: 'json' }
|
|
82
|
-
import POST_games_venue_search_Admin from './contracts/POST/games/venue/search/Admin.json' with { type: 'json' }
|
|
83
|
-
import POST_games_venue_search_Organizer from './contracts/POST/games/venue/search/Organizer.json' with { type: 'json' }
|
|
84
|
-
import POST_games_summary_search_Admin from './contracts/POST/games/summary/search/Admin.json' with { type: 'json' }
|
|
85
|
-
import POST_games_summary_search_Organizer from './contracts/POST/games/summary/search/Organizer.json' with { type: 'json' }
|
|
86
|
-
import POST_games_search_Unknown from './contracts/POST/games/search/Unknown.json' with { type: 'json' }
|
|
87
|
-
import POST_games_search_Admin from './contracts/POST/games/search/Admin.json' with { type: 'json' }
|
|
88
|
-
import POST_games_search_Organizer from './contracts/POST/games/search/Organizer.json' with { type: 'json' }
|
|
89
|
-
import POST_user_password_Admin from './contracts/POST/user/password/Admin.json' with { type: 'json' }
|
|
90
|
-
import POST_user_Admin from './contracts/POST/user/Admin.json' with { type: 'json' }
|
|
91
|
-
import POST_user_city_Admin from './contracts/POST/user/city/Admin.json' with { type: 'json' }
|
|
92
|
-
import POST_user_role_Admin from './contracts/POST/user/role/Admin.json' with { type: 'json' }
|
|
93
|
-
import POST_checkin_Unknown from './contracts/POST/checkin/Unknown.json' with { type: 'json' }
|
|
94
|
-
import POST_checkin_Admin from './contracts/POST/checkin/Admin.json' with { type: 'json' }
|
|
95
|
-
import POST_checkin_Organizer from './contracts/POST/checkin/Organizer.json' with { type: 'json' }
|
|
96
|
-
import POST_theme_Admin from './contracts/POST/theme/Admin.json' with { type: 'json' }
|
|
97
|
-
import POST_theme_cover_Admin from './contracts/POST/theme/cover/Admin.json' with { type: 'json' }
|
|
98
|
-
import POST_theme_cover_Organizer from './contracts/POST/theme/cover/Organizer.json' with { type: 'json' }
|
|
99
|
-
import POST_theme_Organizer from './contracts/POST/theme/Organizer.json' with { type: 'json' }
|
|
100
|
-
import POST_city_vk_group_token_Admin from './contracts/POST/city/vk_group_token/Admin.json' with { type: 'json' }
|
|
101
|
-
import POST_city_vk_group_token_Organizer from './contracts/POST/city/vk_group_token/Organizer.json' with { type: 'json' }
|
|
102
|
-
import POST_city_Admin from './contracts/POST/city/Admin.json' with { type: 'json' }
|
|
103
|
-
import POST_city_Organizer from './contracts/POST/city/Organizer.json' with { type: 'json' }
|
|
104
|
-
import POST_venues_status_search_Admin from './contracts/POST/venues/status/search/Admin.json' with { type: 'json' }
|
|
105
|
-
import POST_venues_status_search_Organizer from './contracts/POST/venues/status/search/Organizer.json' with { type: 'json' }
|
|
106
|
-
import POST_venues_city_search_Admin from './contracts/POST/venues/city/search/Admin.json' with { type: 'json' }
|
|
107
|
-
import POST_venues_city_search_Organizer from './contracts/POST/venues/city/search/Organizer.json' with { type: 'json' }
|
|
108
|
-
import POST_venues_search_Admin from './contracts/POST/venues/search/Admin.json' with { type: 'json' }
|
|
109
|
-
import POST_venues_search_Organizer from './contracts/POST/venues/search/Organizer.json' with { type: 'json' }
|
|
110
|
-
import POST_cities_timezone_search_Unknown from './contracts/POST/cities/timezone/search/Unknown.json' with { type: 'json' }
|
|
111
|
-
import POST_cities_timezone_search_Admin from './contracts/POST/cities/timezone/search/Admin.json' with { type: 'json' }
|
|
112
|
-
import POST_cities_timezone_search_Organizer from './contracts/POST/cities/timezone/search/Organizer.json' with { type: 'json' }
|
|
113
|
-
import POST_cities_country_search_Unknown from './contracts/POST/cities/country/search/Unknown.json' with { type: 'json' }
|
|
114
|
-
import POST_cities_country_search_Admin from './contracts/POST/cities/country/search/Admin.json' with { type: 'json' }
|
|
115
|
-
import POST_cities_country_search_Organizer from './contracts/POST/cities/country/search/Organizer.json' with { type: 'json' }
|
|
116
|
-
import POST_cities_venues_search_Unknown from './contracts/POST/cities/venues/search/Unknown.json' with { type: 'json' }
|
|
117
|
-
import POST_cities_venues_search_Admin from './contracts/POST/cities/venues/search/Admin.json' with { type: 'json' }
|
|
118
|
-
import POST_cities_venues_search_Organizer from './contracts/POST/cities/venues/search/Organizer.json' with { type: 'json' }
|
|
119
|
-
import POST_cities_currency_search_Unknown from './contracts/POST/cities/currency/search/Unknown.json' with { type: 'json' }
|
|
120
|
-
import POST_cities_currency_search_Admin from './contracts/POST/cities/currency/search/Admin.json' with { type: 'json' }
|
|
121
|
-
import POST_cities_currency_search_Organizer from './contracts/POST/cities/currency/search/Organizer.json' with { type: 'json' }
|
|
122
|
-
import POST_cities_search_Unknown from './contracts/POST/cities/search/Unknown.json' with { type: 'json' }
|
|
123
|
-
import POST_cities_search_Admin from './contracts/POST/cities/search/Admin.json' with { type: 'json' }
|
|
124
|
-
import POST_cities_search_Organizer from './contracts/POST/cities/search/Organizer.json' with { type: 'json' }
|
|
125
|
-
import POST_venue_Admin from './contracts/POST/venue/Admin.json' with { type: 'json' }
|
|
126
|
-
import POST_venue_Organizer from './contracts/POST/venue/Organizer.json' with { type: 'json' }
|
|
127
|
-
import POST_chatapp_registration_mailing_Admin from './contracts/POST/chatapp/registration/mailing/Admin.json' with { type: 'json' }
|
|
128
|
-
import POST_chatapp_registration_mailing_Organizer from './contracts/POST/chatapp/registration/mailing/Organizer.json' with { type: 'json' }
|
|
129
|
-
import PATCH_registrations_status_Admin from './contracts/PATCH/registrations/status/Admin.json' with { type: 'json' }
|
|
130
|
-
import PATCH_registrations_status_Organizer from './contracts/PATCH/registrations/status/Organizer.json' with { type: 'json' }
|
|
131
|
-
import PATCH_registrations_status_Service from './contracts/PATCH/registrations/status/Service.json' with { type: 'json' }
|
|
132
|
-
import PATCH_registrations_Admin from './contracts/PATCH/registrations/Admin.json' with { type: 'json' }
|
|
133
|
-
import PATCH_registrations_lineup_Admin from './contracts/PATCH/registrations/lineup/Admin.json' with { type: 'json' }
|
|
134
|
-
import PATCH_registrations_lineup_Organizer from './contracts/PATCH/registrations/lineup/Organizer.json' with { type: 'json' }
|
|
135
|
-
import PATCH_registrations_Organizer from './contracts/PATCH/registrations/Organizer.json' with { type: 'json' }
|
|
136
|
-
import PATCH_registrations_Service from './contracts/PATCH/registrations/Service.json' with { type: 'json' }
|
|
137
|
-
import PATCH_game_Admin from './contracts/PATCH/game/Admin.json' with { type: 'json' }
|
|
138
|
-
import PATCH_game_Organizer from './contracts/PATCH/game/Organizer.json' with { type: 'json' }
|
|
139
|
-
import PATCH_game_theme_Admin from './contracts/PATCH/game/theme/Admin.json' with { type: 'json' }
|
|
140
|
-
import PATCH_game_theme_Organizer from './contracts/PATCH/game/theme/Organizer.json' with { type: 'json' }
|
|
141
1
|
import PATCH_game_Service from './contracts/PATCH/game/Service.json' with { type: 'json' }
|
|
142
|
-
import
|
|
2
|
+
import PATCH_game_theme_Organizer from './contracts/PATCH/game/theme/Organizer.json' with { type: 'json' }
|
|
3
|
+
import PATCH_game_theme_Admin from './contracts/PATCH/game/theme/Admin.json' with { type: 'json' }
|
|
4
|
+
import PATCH_game_Organizer from './contracts/PATCH/game/Organizer.json' with { type: 'json' }
|
|
143
5
|
import PATCH_game_venue_Organizer from './contracts/PATCH/game/venue/Organizer.json' with { type: 'json' }
|
|
144
|
-
import
|
|
145
|
-
import
|
|
146
|
-
import
|
|
147
|
-
import
|
|
148
|
-
import PATCH_registration_Unknown from './contracts/PATCH/registration/Unknown.json' with { type: 'json' }
|
|
149
|
-
import PATCH_registration_channel_Unknown from './contracts/PATCH/registration/channel/Unknown.json' with { type: 'json' }
|
|
150
|
-
import PATCH_registration_channel_Service from './contracts/PATCH/registration/channel/Service.json' with { type: 'json' }
|
|
151
|
-
import PATCH_registration_Admin from './contracts/PATCH/registration/Admin.json' with { type: 'json' }
|
|
152
|
-
import PATCH_registration_lineup_Admin from './contracts/PATCH/registration/lineup/Admin.json' with { type: 'json' }
|
|
153
|
-
import PATCH_registration_lineup_Organizer from './contracts/PATCH/registration/lineup/Organizer.json' with { type: 'json' }
|
|
154
|
-
import PATCH_registration_Organizer from './contracts/PATCH/registration/Organizer.json' with { type: 'json' }
|
|
155
|
-
import PATCH_registration_Service from './contracts/PATCH/registration/Service.json' with { type: 'json' }
|
|
6
|
+
import PATCH_game_venue_Admin from './contracts/PATCH/game/venue/Admin.json' with { type: 'json' }
|
|
7
|
+
import PATCH_game_Admin from './contracts/PATCH/game/Admin.json' with { type: 'json' }
|
|
8
|
+
import PATCH_theme_Organizer from './contracts/PATCH/theme/Organizer.json' with { type: 'json' }
|
|
9
|
+
import PATCH_theme_Admin from './contracts/PATCH/theme/Admin.json' with { type: 'json' }
|
|
156
10
|
import PATCH_themes_Admin from './contracts/PATCH/themes/Admin.json' with { type: 'json' }
|
|
157
|
-
import
|
|
158
|
-
import
|
|
159
|
-
import PATCH_games_Service from './contracts/PATCH/games/Service.json' with { type: 'json' }
|
|
11
|
+
import PATCH_venue_Organizer from './contracts/PATCH/venue/Organizer.json' with { type: 'json' }
|
|
12
|
+
import PATCH_venue_Admin from './contracts/PATCH/venue/Admin.json' with { type: 'json' }
|
|
160
13
|
import PATCH_user_password_Admin from './contracts/PATCH/user/password/Admin.json' with { type: 'json' }
|
|
161
14
|
import PATCH_user_Admin from './contracts/PATCH/user/Admin.json' with { type: 'json' }
|
|
162
15
|
import PATCH_user_role_Admin from './contracts/PATCH/user/role/Admin.json' with { type: 'json' }
|
|
163
|
-
import
|
|
164
|
-
import
|
|
165
|
-
import
|
|
166
|
-
import
|
|
167
|
-
import
|
|
16
|
+
import PATCH_registration_Service from './contracts/PATCH/registration/Service.json' with { type: 'json' }
|
|
17
|
+
import PATCH_registration_channel_Service from './contracts/PATCH/registration/channel/Service.json' with { type: 'json' }
|
|
18
|
+
import PATCH_registration_channel_Unknown from './contracts/PATCH/registration/channel/Unknown.json' with { type: 'json' }
|
|
19
|
+
import PATCH_registration_Organizer from './contracts/PATCH/registration/Organizer.json' with { type: 'json' }
|
|
20
|
+
import PATCH_registration_lineup_Organizer from './contracts/PATCH/registration/lineup/Organizer.json' with { type: 'json' }
|
|
21
|
+
import PATCH_registration_lineup_Admin from './contracts/PATCH/registration/lineup/Admin.json' with { type: 'json' }
|
|
22
|
+
import PATCH_registration_Admin from './contracts/PATCH/registration/Admin.json' with { type: 'json' }
|
|
23
|
+
import PATCH_registration_status_Service from './contracts/PATCH/registration/status/Service.json' with { type: 'json' }
|
|
24
|
+
import PATCH_registration_status_Organizer from './contracts/PATCH/registration/status/Organizer.json' with { type: 'json' }
|
|
25
|
+
import PATCH_registration_status_Admin from './contracts/PATCH/registration/status/Admin.json' with { type: 'json' }
|
|
26
|
+
import PATCH_registration_status_Unknown from './contracts/PATCH/registration/status/Unknown.json' with { type: 'json' }
|
|
27
|
+
import PATCH_registration_Unknown from './contracts/PATCH/registration/Unknown.json' with { type: 'json' }
|
|
28
|
+
import PATCH_registrations_Service from './contracts/PATCH/registrations/Service.json' with { type: 'json' }
|
|
29
|
+
import PATCH_registrations_Organizer from './contracts/PATCH/registrations/Organizer.json' with { type: 'json' }
|
|
30
|
+
import PATCH_registrations_lineup_Organizer from './contracts/PATCH/registrations/lineup/Organizer.json' with { type: 'json' }
|
|
31
|
+
import PATCH_registrations_lineup_Admin from './contracts/PATCH/registrations/lineup/Admin.json' with { type: 'json' }
|
|
32
|
+
import PATCH_registrations_Admin from './contracts/PATCH/registrations/Admin.json' with { type: 'json' }
|
|
33
|
+
import PATCH_registrations_status_Service from './contracts/PATCH/registrations/status/Service.json' with { type: 'json' }
|
|
34
|
+
import PATCH_registrations_status_Organizer from './contracts/PATCH/registrations/status/Organizer.json' with { type: 'json' }
|
|
35
|
+
import PATCH_registrations_status_Admin from './contracts/PATCH/registrations/status/Admin.json' with { type: 'json' }
|
|
36
|
+
import PATCH_city_currency_Organizer from './contracts/PATCH/city/currency/Organizer.json' with { type: 'json' }
|
|
37
|
+
import PATCH_city_currency_Admin from './contracts/PATCH/city/currency/Admin.json' with { type: 'json' }
|
|
168
38
|
import PATCH_city_vk_group_token_Organizer from './contracts/PATCH/city/vk_group_token/Organizer.json' with { type: 'json' }
|
|
169
|
-
import
|
|
170
|
-
import PATCH_city_country_Admin from './contracts/PATCH/city/country/Admin.json' with { type: 'json' }
|
|
39
|
+
import PATCH_city_vk_group_token_Admin from './contracts/PATCH/city/vk_group_token/Admin.json' with { type: 'json' }
|
|
171
40
|
import PATCH_city_country_Organizer from './contracts/PATCH/city/country/Organizer.json' with { type: 'json' }
|
|
41
|
+
import PATCH_city_country_Admin from './contracts/PATCH/city/country/Admin.json' with { type: 'json' }
|
|
172
42
|
import PATCH_city_Organizer from './contracts/PATCH/city/Organizer.json' with { type: 'json' }
|
|
173
|
-
import
|
|
174
|
-
import
|
|
175
|
-
import
|
|
176
|
-
import
|
|
177
|
-
import
|
|
178
|
-
import
|
|
179
|
-
import
|
|
180
|
-
import
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
43
|
+
import PATCH_city_Admin from './contracts/PATCH/city/Admin.json' with { type: 'json' }
|
|
44
|
+
import PATCH_city_timezone_Organizer from './contracts/PATCH/city/timezone/Organizer.json' with { type: 'json' }
|
|
45
|
+
import PATCH_city_timezone_Admin from './contracts/PATCH/city/timezone/Admin.json' with { type: 'json' }
|
|
46
|
+
import POST_game_Organizer from './contracts/POST/game/Organizer.json' with { type: 'json' }
|
|
47
|
+
import POST_game_Admin from './contracts/POST/game/Admin.json' with { type: 'json' }
|
|
48
|
+
import POST_theme_cover_Organizer from './contracts/POST/theme/cover/Organizer.json' with { type: 'json' }
|
|
49
|
+
import POST_theme_cover_Admin from './contracts/POST/theme/cover/Admin.json' with { type: 'json' }
|
|
50
|
+
import POST_theme_Organizer from './contracts/POST/theme/Organizer.json' with { type: 'json' }
|
|
51
|
+
import POST_theme_Admin from './contracts/POST/theme/Admin.json' with { type: 'json' }
|
|
52
|
+
import POST_themes_search_Organizer from './contracts/POST/themes/search/Organizer.json' with { type: 'json' }
|
|
53
|
+
import POST_themes_search_Admin from './contracts/POST/themes/search/Admin.json' with { type: 'json' }
|
|
54
|
+
import POST_themes_cover_search_Organizer from './contracts/POST/themes/cover/search/Organizer.json' with { type: 'json' }
|
|
55
|
+
import POST_themes_cover_search_Admin from './contracts/POST/themes/cover/search/Admin.json' with { type: 'json' }
|
|
56
|
+
import POST_chatapp_registration_mailing_Organizer from './contracts/POST/chatapp/registration/mailing/Organizer.json' with { type: 'json' }
|
|
57
|
+
import POST_chatapp_registration_mailing_Admin from './contracts/POST/chatapp/registration/mailing/Admin.json' with { type: 'json' }
|
|
58
|
+
import POST_venues_search_Organizer from './contracts/POST/venues/search/Organizer.json' with { type: 'json' }
|
|
59
|
+
import POST_venues_search_Admin from './contracts/POST/venues/search/Admin.json' with { type: 'json' }
|
|
60
|
+
import POST_venues_city_search_Organizer from './contracts/POST/venues/city/search/Organizer.json' with { type: 'json' }
|
|
61
|
+
import POST_venues_city_search_Admin from './contracts/POST/venues/city/search/Admin.json' with { type: 'json' }
|
|
62
|
+
import POST_venues_status_search_Organizer from './contracts/POST/venues/status/search/Organizer.json' with { type: 'json' }
|
|
63
|
+
import POST_venues_status_search_Admin from './contracts/POST/venues/status/search/Admin.json' with { type: 'json' }
|
|
64
|
+
import POST_venue_Organizer from './contracts/POST/venue/Organizer.json' with { type: 'json' }
|
|
65
|
+
import POST_venue_Admin from './contracts/POST/venue/Admin.json' with { type: 'json' }
|
|
66
|
+
import POST_user_password_Admin from './contracts/POST/user/password/Admin.json' with { type: 'json' }
|
|
67
|
+
import POST_user_Admin from './contracts/POST/user/Admin.json' with { type: 'json' }
|
|
68
|
+
import POST_user_city_Admin from './contracts/POST/user/city/Admin.json' with { type: 'json' }
|
|
69
|
+
import POST_user_role_Admin from './contracts/POST/user/role/Admin.json' with { type: 'json' }
|
|
70
|
+
import POST_games_search_Organizer from './contracts/POST/games/search/Organizer.json' with { type: 'json' }
|
|
71
|
+
import POST_games_search_Admin from './contracts/POST/games/search/Admin.json' with { type: 'json' }
|
|
72
|
+
import POST_games_search_Unknown from './contracts/POST/games/search/Unknown.json' with { type: 'json' }
|
|
73
|
+
import POST_games_theme_search_Organizer from './contracts/POST/games/theme/search/Organizer.json' with { type: 'json' }
|
|
74
|
+
import POST_games_theme_search_Admin from './contracts/POST/games/theme/search/Admin.json' with { type: 'json' }
|
|
75
|
+
import POST_games_theme_search_Unknown from './contracts/POST/games/theme/search/Unknown.json' with { type: 'json' }
|
|
76
|
+
import POST_games_cover_search_Unknown from './contracts/POST/games/cover/search/Unknown.json' with { type: 'json' }
|
|
77
|
+
import POST_games_summary_search_Organizer from './contracts/POST/games/summary/search/Organizer.json' with { type: 'json' }
|
|
78
|
+
import POST_games_summary_search_Admin from './contracts/POST/games/summary/search/Admin.json' with { type: 'json' }
|
|
79
|
+
import POST_games_venue_search_Organizer from './contracts/POST/games/venue/search/Organizer.json' with { type: 'json' }
|
|
80
|
+
import POST_games_venue_search_Admin from './contracts/POST/games/venue/search/Admin.json' with { type: 'json' }
|
|
81
|
+
import POST_games_venue_search_Unknown from './contracts/POST/games/venue/search/Unknown.json' with { type: 'json' }
|
|
82
|
+
import POST_games_city_search_Organizer from './contracts/POST/games/city/search/Organizer.json' with { type: 'json' }
|
|
83
|
+
import POST_games_city_search_Admin from './contracts/POST/games/city/search/Admin.json' with { type: 'json' }
|
|
84
|
+
import POST_registration_Organizer from './contracts/POST/registration/Organizer.json' with { type: 'json' }
|
|
85
|
+
import POST_registration_Admin from './contracts/POST/registration/Admin.json' with { type: 'json' }
|
|
86
|
+
import POST_registration_Unknown from './contracts/POST/registration/Unknown.json' with { type: 'json' }
|
|
87
|
+
import POST_registrations_game_search_Service from './contracts/POST/registrations/game/search/Service.json' with { type: 'json' }
|
|
88
|
+
import POST_registrations_game_search_Organizer from './contracts/POST/registrations/game/search/Organizer.json' with { type: 'json' }
|
|
89
|
+
import POST_registrations_game_search_Admin from './contracts/POST/registrations/game/search/Admin.json' with { type: 'json' }
|
|
90
|
+
import POST_registrations_game_search_Unknown from './contracts/POST/registrations/game/search/Unknown.json' with { type: 'json' }
|
|
91
|
+
import POST_registrations_restoration_search_Service from './contracts/POST/registrations/restoration/search/Service.json' with { type: 'json' }
|
|
92
|
+
import POST_registrations_restoration_search_Organizer from './contracts/POST/registrations/restoration/search/Organizer.json' with { type: 'json' }
|
|
93
|
+
import POST_registrations_restoration_search_Admin from './contracts/POST/registrations/restoration/search/Admin.json' with { type: 'json' }
|
|
94
|
+
import POST_registrations_restoration_search_Unknown from './contracts/POST/registrations/restoration/search/Unknown.json' with { type: 'json' }
|
|
95
|
+
import POST_registrations_confirmation_search_Service from './contracts/POST/registrations/confirmation/search/Service.json' with { type: 'json' }
|
|
96
|
+
import POST_registrations_confirmation_search_Organizer from './contracts/POST/registrations/confirmation/search/Organizer.json' with { type: 'json' }
|
|
97
|
+
import POST_registrations_confirmation_search_Admin from './contracts/POST/registrations/confirmation/search/Admin.json' with { type: 'json' }
|
|
98
|
+
import POST_registrations_confirmation_search_Unknown from './contracts/POST/registrations/confirmation/search/Unknown.json' with { type: 'json' }
|
|
99
|
+
import POST_registrations_reservation_search_Service from './contracts/POST/registrations/reservation/search/Service.json' with { type: 'json' }
|
|
100
|
+
import POST_registrations_reservation_search_Organizer from './contracts/POST/registrations/reservation/search/Organizer.json' with { type: 'json' }
|
|
101
|
+
import POST_registrations_reservation_search_Admin from './contracts/POST/registrations/reservation/search/Admin.json' with { type: 'json' }
|
|
102
|
+
import POST_registrations_export_Organizer from './contracts/POST/registrations/export/Organizer.json' with { type: 'json' }
|
|
103
|
+
import POST_registrations_export_Admin from './contracts/POST/registrations/export/Admin.json' with { type: 'json' }
|
|
104
|
+
import POST_registrations_search_Organizer from './contracts/POST/registrations/search/Organizer.json' with { type: 'json' }
|
|
105
|
+
import POST_registrations_search_Admin from './contracts/POST/registrations/search/Admin.json' with { type: 'json' }
|
|
106
|
+
import POST_registrations_search_Unknown from './contracts/POST/registrations/search/Unknown.json' with { type: 'json' }
|
|
107
|
+
import POST_registrations_theme_search_Service from './contracts/POST/registrations/theme/search/Service.json' with { type: 'json' }
|
|
108
|
+
import POST_registrations_theme_search_Organizer from './contracts/POST/registrations/theme/search/Organizer.json' with { type: 'json' }
|
|
109
|
+
import POST_registrations_theme_search_Admin from './contracts/POST/registrations/theme/search/Admin.json' with { type: 'json' }
|
|
110
|
+
import POST_registrations_theme_search_Unknown from './contracts/POST/registrations/theme/search/Unknown.json' with { type: 'json' }
|
|
111
|
+
import POST_registrations_cover_search_Service from './contracts/POST/registrations/cover/search/Service.json' with { type: 'json' }
|
|
112
|
+
import POST_registrations_cover_search_Organizer from './contracts/POST/registrations/cover/search/Organizer.json' with { type: 'json' }
|
|
113
|
+
import POST_registrations_cover_search_Admin from './contracts/POST/registrations/cover/search/Admin.json' with { type: 'json' }
|
|
114
|
+
import POST_registrations_cover_search_Unknown from './contracts/POST/registrations/cover/search/Unknown.json' with { type: 'json' }
|
|
115
|
+
import POST_registrations_channel_search_Unknown from './contracts/POST/registrations/channel/search/Unknown.json' with { type: 'json' }
|
|
116
|
+
import POST_registrations_venue_search_Service from './contracts/POST/registrations/venue/search/Service.json' with { type: 'json' }
|
|
117
|
+
import POST_registrations_venue_search_Organizer from './contracts/POST/registrations/venue/search/Organizer.json' with { type: 'json' }
|
|
118
|
+
import POST_registrations_venue_search_Admin from './contracts/POST/registrations/venue/search/Admin.json' with { type: 'json' }
|
|
119
|
+
import POST_registrations_venue_search_Unknown from './contracts/POST/registrations/venue/search/Unknown.json' with { type: 'json' }
|
|
120
|
+
import POST_registrations_cancellation_search_Service from './contracts/POST/registrations/cancellation/search/Service.json' with { type: 'json' }
|
|
121
|
+
import POST_registrations_cancellation_search_Organizer from './contracts/POST/registrations/cancellation/search/Organizer.json' with { type: 'json' }
|
|
122
|
+
import POST_registrations_cancellation_search_Admin from './contracts/POST/registrations/cancellation/search/Admin.json' with { type: 'json' }
|
|
123
|
+
import POST_registrations_cancellation_search_Unknown from './contracts/POST/registrations/cancellation/search/Unknown.json' with { type: 'json' }
|
|
124
|
+
import POST_registrations_lineup_search_Service from './contracts/POST/registrations/lineup/search/Service.json' with { type: 'json' }
|
|
125
|
+
import POST_registrations_lineup_search_Organizer from './contracts/POST/registrations/lineup/search/Organizer.json' with { type: 'json' }
|
|
126
|
+
import POST_registrations_lineup_search_Admin from './contracts/POST/registrations/lineup/search/Admin.json' with { type: 'json' }
|
|
127
|
+
import POST_registrations_lineup_search_Unknown from './contracts/POST/registrations/lineup/search/Unknown.json' with { type: 'json' }
|
|
128
|
+
import POST_registrations_promotion_search_Service from './contracts/POST/registrations/promotion/search/Service.json' with { type: 'json' }
|
|
129
|
+
import POST_registrations_promotion_search_Organizer from './contracts/POST/registrations/promotion/search/Organizer.json' with { type: 'json' }
|
|
130
|
+
import POST_registrations_promotion_search_Admin from './contracts/POST/registrations/promotion/search/Admin.json' with { type: 'json' }
|
|
131
|
+
import POST_registrations_reinstatement_search_Service from './contracts/POST/registrations/reinstatement/search/Service.json' with { type: 'json' }
|
|
132
|
+
import POST_registrations_reinstatement_search_Organizer from './contracts/POST/registrations/reinstatement/search/Organizer.json' with { type: 'json' }
|
|
133
|
+
import POST_registrations_reinstatement_search_Admin from './contracts/POST/registrations/reinstatement/search/Admin.json' with { type: 'json' }
|
|
134
|
+
import POST_registrations_reinstatement_search_Unknown from './contracts/POST/registrations/reinstatement/search/Unknown.json' with { type: 'json' }
|
|
135
|
+
import POST_registrations_city_search_Service from './contracts/POST/registrations/city/search/Service.json' with { type: 'json' }
|
|
136
|
+
import POST_registrations_city_search_Organizer from './contracts/POST/registrations/city/search/Organizer.json' with { type: 'json' }
|
|
137
|
+
import POST_registrations_city_search_Admin from './contracts/POST/registrations/city/search/Admin.json' with { type: 'json' }
|
|
138
|
+
import POST_registrations_city_search_Unknown from './contracts/POST/registrations/city/search/Unknown.json' with { type: 'json' }
|
|
139
|
+
import POST_registrations_status_search_Service from './contracts/POST/registrations/status/search/Service.json' with { type: 'json' }
|
|
140
|
+
import POST_registrations_status_search_Organizer from './contracts/POST/registrations/status/search/Organizer.json' with { type: 'json' }
|
|
141
|
+
import POST_registrations_status_search_Admin from './contracts/POST/registrations/status/search/Admin.json' with { type: 'json' }
|
|
142
|
+
import POST_registrations_status_search_Unknown from './contracts/POST/registrations/status/search/Unknown.json' with { type: 'json' }
|
|
143
|
+
import POST_registrations_mailing_Organizer from './contracts/POST/registrations/mailing/Organizer.json' with { type: 'json' }
|
|
144
|
+
import POST_registrations_mailing_Admin from './contracts/POST/registrations/mailing/Admin.json' with { type: 'json' }
|
|
145
|
+
import POST_registrations_mailing_status_search_Organizer from './contracts/POST/registrations/mailing/status/search/Organizer.json' with { type: 'json' }
|
|
146
|
+
import POST_registrations_mailing_status_search_Admin from './contracts/POST/registrations/mailing/status/search/Admin.json' with { type: 'json' }
|
|
147
|
+
import POST_cities_currency_search_Organizer from './contracts/POST/cities/currency/search/Organizer.json' with { type: 'json' }
|
|
148
|
+
import POST_cities_currency_search_Admin from './contracts/POST/cities/currency/search/Admin.json' with { type: 'json' }
|
|
149
|
+
import POST_cities_currency_search_Unknown from './contracts/POST/cities/currency/search/Unknown.json' with { type: 'json' }
|
|
150
|
+
import POST_cities_country_search_Organizer from './contracts/POST/cities/country/search/Organizer.json' with { type: 'json' }
|
|
151
|
+
import POST_cities_country_search_Admin from './contracts/POST/cities/country/search/Admin.json' with { type: 'json' }
|
|
152
|
+
import POST_cities_country_search_Unknown from './contracts/POST/cities/country/search/Unknown.json' with { type: 'json' }
|
|
153
|
+
import POST_cities_search_Organizer from './contracts/POST/cities/search/Organizer.json' with { type: 'json' }
|
|
154
|
+
import POST_cities_search_Admin from './contracts/POST/cities/search/Admin.json' with { type: 'json' }
|
|
155
|
+
import POST_cities_search_Unknown from './contracts/POST/cities/search/Unknown.json' with { type: 'json' }
|
|
156
|
+
import POST_cities_venues_search_Organizer from './contracts/POST/cities/venues/search/Organizer.json' with { type: 'json' }
|
|
157
|
+
import POST_cities_venues_search_Admin from './contracts/POST/cities/venues/search/Admin.json' with { type: 'json' }
|
|
158
|
+
import POST_cities_venues_search_Unknown from './contracts/POST/cities/venues/search/Unknown.json' with { type: 'json' }
|
|
159
|
+
import POST_cities_timezone_search_Organizer from './contracts/POST/cities/timezone/search/Organizer.json' with { type: 'json' }
|
|
160
|
+
import POST_cities_timezone_search_Admin from './contracts/POST/cities/timezone/search/Admin.json' with { type: 'json' }
|
|
161
|
+
import POST_cities_timezone_search_Unknown from './contracts/POST/cities/timezone/search/Unknown.json' with { type: 'json' }
|
|
162
|
+
import POST_roles_search_Admin from './contracts/POST/roles/search/Admin.json' with { type: 'json' }
|
|
163
|
+
import POST_city_vk_group_token_Organizer from './contracts/POST/city/vk_group_token/Organizer.json' with { type: 'json' }
|
|
164
|
+
import POST_city_vk_group_token_Admin from './contracts/POST/city/vk_group_token/Admin.json' with { type: 'json' }
|
|
165
|
+
import POST_city_Organizer from './contracts/POST/city/Organizer.json' with { type: 'json' }
|
|
166
|
+
import POST_city_Admin from './contracts/POST/city/Admin.json' with { type: 'json' }
|
|
167
|
+
import POST_users_search_Admin from './contracts/POST/users/search/Admin.json' with { type: 'json' }
|
|
168
|
+
import POST_users_cities_search_Admin from './contracts/POST/users/cities/search/Admin.json' with { type: 'json' }
|
|
169
|
+
import POST_users_password_search_Admin from './contracts/POST/users/password/search/Admin.json' with { type: 'json' }
|
|
170
|
+
import POST_users_role_search_Admin from './contracts/POST/users/role/search/Admin.json' with { type: 'json' }
|
|
171
|
+
import POST_checkin_Organizer from './contracts/POST/checkin/Organizer.json' with { type: 'json' }
|
|
172
|
+
import POST_checkin_Admin from './contracts/POST/checkin/Admin.json' with { type: 'json' }
|
|
173
|
+
import POST_checkin_Unknown from './contracts/POST/checkin/Unknown.json' with { type: 'json' }
|
|
174
|
+
import PUT_theme_cover_Organizer from './contracts/PUT/theme/cover/Organizer.json' with { type: 'json' }
|
|
175
|
+
import PUT_theme_cover_Admin from './contracts/PUT/theme/cover/Admin.json' with { type: 'json' }
|
|
176
|
+
|
|
177
|
+
export const Contracts = Object.freeze(
|
|
178
|
+
/** @type {const} */ ([
|
|
179
|
+
'PATCH/game/Service',
|
|
180
|
+
'PATCH/game/theme/Organizer',
|
|
181
|
+
'PATCH/game/theme/Admin',
|
|
182
|
+
'PATCH/game/Organizer',
|
|
183
|
+
'PATCH/game/venue/Organizer',
|
|
184
|
+
'PATCH/game/venue/Admin',
|
|
185
|
+
'PATCH/game/Admin',
|
|
186
|
+
'PATCH/theme/Organizer',
|
|
187
|
+
'PATCH/theme/Admin',
|
|
188
|
+
'PATCH/themes/Admin',
|
|
189
|
+
'PATCH/venue/Organizer',
|
|
190
|
+
'PATCH/venue/Admin',
|
|
191
|
+
'PATCH/user/password/Admin',
|
|
192
|
+
'PATCH/user/Admin',
|
|
193
|
+
'PATCH/user/role/Admin',
|
|
194
|
+
'PATCH/registration/Service',
|
|
195
|
+
'PATCH/registration/channel/Service',
|
|
196
|
+
'PATCH/registration/channel/Unknown',
|
|
197
|
+
'PATCH/registration/Organizer',
|
|
198
|
+
'PATCH/registration/lineup/Organizer',
|
|
199
|
+
'PATCH/registration/lineup/Admin',
|
|
200
|
+
'PATCH/registration/Admin',
|
|
201
|
+
'PATCH/registration/status/Service',
|
|
202
|
+
'PATCH/registration/status/Organizer',
|
|
203
|
+
'PATCH/registration/status/Admin',
|
|
204
|
+
'PATCH/registration/status/Unknown',
|
|
205
|
+
'PATCH/registration/Unknown',
|
|
206
|
+
'PATCH/registrations/Service',
|
|
207
|
+
'PATCH/registrations/Organizer',
|
|
208
|
+
'PATCH/registrations/lineup/Organizer',
|
|
209
|
+
'PATCH/registrations/lineup/Admin',
|
|
210
|
+
'PATCH/registrations/Admin',
|
|
211
|
+
'PATCH/registrations/status/Service',
|
|
212
|
+
'PATCH/registrations/status/Organizer',
|
|
213
|
+
'PATCH/registrations/status/Admin',
|
|
214
|
+
'PATCH/city/currency/Organizer',
|
|
215
|
+
'PATCH/city/currency/Admin',
|
|
216
|
+
'PATCH/city/vk_group_token/Organizer',
|
|
217
|
+
'PATCH/city/vk_group_token/Admin',
|
|
218
|
+
'PATCH/city/country/Organizer',
|
|
219
|
+
'PATCH/city/country/Admin',
|
|
220
|
+
'PATCH/city/Organizer',
|
|
221
|
+
'PATCH/city/Admin',
|
|
222
|
+
'PATCH/city/timezone/Organizer',
|
|
223
|
+
'PATCH/city/timezone/Admin',
|
|
245
224
|
'POST/game/Organizer',
|
|
246
|
-
'POST/
|
|
247
|
-
'POST/
|
|
248
|
-
'POST/
|
|
249
|
-
'POST/
|
|
250
|
-
'POST/
|
|
251
|
-
'POST/users/role/search/Admin',
|
|
252
|
-
'POST/users/cities/search/Admin',
|
|
253
|
-
'POST/users/search/Admin',
|
|
254
|
-
'POST/themes/cover/search/Admin',
|
|
255
|
-
'POST/themes/cover/search/Organizer',
|
|
256
|
-
'POST/themes/search/Admin',
|
|
225
|
+
'POST/game/Admin',
|
|
226
|
+
'POST/theme/cover/Organizer',
|
|
227
|
+
'POST/theme/cover/Admin',
|
|
228
|
+
'POST/theme/Organizer',
|
|
229
|
+
'POST/theme/Admin',
|
|
257
230
|
'POST/themes/search/Organizer',
|
|
258
|
-
'POST/
|
|
259
|
-
'POST/
|
|
260
|
-
'POST/
|
|
261
|
-
'POST/
|
|
262
|
-
'POST/
|
|
263
|
-
'POST/
|
|
264
|
-
'POST/
|
|
265
|
-
'POST/
|
|
266
|
-
'POST/
|
|
267
|
-
'POST/
|
|
268
|
-
'POST/
|
|
269
|
-
'POST/
|
|
270
|
-
'POST/
|
|
271
|
-
'POST/games/search/Organizer',
|
|
231
|
+
'POST/themes/search/Admin',
|
|
232
|
+
'POST/themes/cover/search/Organizer',
|
|
233
|
+
'POST/themes/cover/search/Admin',
|
|
234
|
+
'POST/chatapp/registration/mailing/Organizer',
|
|
235
|
+
'POST/chatapp/registration/mailing/Admin',
|
|
236
|
+
'POST/venues/search/Organizer',
|
|
237
|
+
'POST/venues/search/Admin',
|
|
238
|
+
'POST/venues/city/search/Organizer',
|
|
239
|
+
'POST/venues/city/search/Admin',
|
|
240
|
+
'POST/venues/status/search/Organizer',
|
|
241
|
+
'POST/venues/status/search/Admin',
|
|
242
|
+
'POST/venue/Organizer',
|
|
243
|
+
'POST/venue/Admin',
|
|
272
244
|
'POST/user/password/Admin',
|
|
273
245
|
'POST/user/Admin',
|
|
274
246
|
'POST/user/city/Admin',
|
|
275
247
|
'POST/user/role/Admin',
|
|
276
|
-
'POST/
|
|
277
|
-
'POST/
|
|
278
|
-
'POST/
|
|
279
|
-
'POST/theme/
|
|
280
|
-
'POST/theme/
|
|
281
|
-
'POST/theme/
|
|
282
|
-
'POST/
|
|
283
|
-
'POST/
|
|
284
|
-
'POST/
|
|
285
|
-
'POST/
|
|
286
|
-
'POST/
|
|
287
|
-
'POST/
|
|
288
|
-
'POST/
|
|
289
|
-
'POST/
|
|
290
|
-
'POST/
|
|
291
|
-
'POST/
|
|
292
|
-
'POST/
|
|
293
|
-
'POST/
|
|
294
|
-
'POST/
|
|
295
|
-
'POST/
|
|
296
|
-
'POST/
|
|
297
|
-
'POST/
|
|
298
|
-
'POST/
|
|
299
|
-
'POST/
|
|
300
|
-
'POST/
|
|
301
|
-
'POST/
|
|
302
|
-
'POST/
|
|
303
|
-
'POST/
|
|
248
|
+
'POST/games/search/Organizer',
|
|
249
|
+
'POST/games/search/Admin',
|
|
250
|
+
'POST/games/search/Unknown',
|
|
251
|
+
'POST/games/theme/search/Organizer',
|
|
252
|
+
'POST/games/theme/search/Admin',
|
|
253
|
+
'POST/games/theme/search/Unknown',
|
|
254
|
+
'POST/games/cover/search/Unknown',
|
|
255
|
+
'POST/games/summary/search/Organizer',
|
|
256
|
+
'POST/games/summary/search/Admin',
|
|
257
|
+
'POST/games/venue/search/Organizer',
|
|
258
|
+
'POST/games/venue/search/Admin',
|
|
259
|
+
'POST/games/venue/search/Unknown',
|
|
260
|
+
'POST/games/city/search/Organizer',
|
|
261
|
+
'POST/games/city/search/Admin',
|
|
262
|
+
'POST/registration/Organizer',
|
|
263
|
+
'POST/registration/Admin',
|
|
264
|
+
'POST/registration/Unknown',
|
|
265
|
+
'POST/registrations/game/search/Service',
|
|
266
|
+
'POST/registrations/game/search/Organizer',
|
|
267
|
+
'POST/registrations/game/search/Admin',
|
|
268
|
+
'POST/registrations/game/search/Unknown',
|
|
269
|
+
'POST/registrations/restoration/search/Service',
|
|
270
|
+
'POST/registrations/restoration/search/Organizer',
|
|
271
|
+
'POST/registrations/restoration/search/Admin',
|
|
272
|
+
'POST/registrations/restoration/search/Unknown',
|
|
273
|
+
'POST/registrations/confirmation/search/Service',
|
|
274
|
+
'POST/registrations/confirmation/search/Organizer',
|
|
275
|
+
'POST/registrations/confirmation/search/Admin',
|
|
276
|
+
'POST/registrations/confirmation/search/Unknown',
|
|
277
|
+
'POST/registrations/reservation/search/Service',
|
|
278
|
+
'POST/registrations/reservation/search/Organizer',
|
|
279
|
+
'POST/registrations/reservation/search/Admin',
|
|
280
|
+
'POST/registrations/export/Organizer',
|
|
281
|
+
'POST/registrations/export/Admin',
|
|
282
|
+
'POST/registrations/search/Organizer',
|
|
283
|
+
'POST/registrations/search/Admin',
|
|
284
|
+
'POST/registrations/search/Unknown',
|
|
285
|
+
'POST/registrations/theme/search/Service',
|
|
286
|
+
'POST/registrations/theme/search/Organizer',
|
|
287
|
+
'POST/registrations/theme/search/Admin',
|
|
288
|
+
'POST/registrations/theme/search/Unknown',
|
|
289
|
+
'POST/registrations/cover/search/Service',
|
|
290
|
+
'POST/registrations/cover/search/Organizer',
|
|
291
|
+
'POST/registrations/cover/search/Admin',
|
|
292
|
+
'POST/registrations/cover/search/Unknown',
|
|
293
|
+
'POST/registrations/channel/search/Unknown',
|
|
294
|
+
'POST/registrations/venue/search/Service',
|
|
295
|
+
'POST/registrations/venue/search/Organizer',
|
|
296
|
+
'POST/registrations/venue/search/Admin',
|
|
297
|
+
'POST/registrations/venue/search/Unknown',
|
|
298
|
+
'POST/registrations/cancellation/search/Service',
|
|
299
|
+
'POST/registrations/cancellation/search/Organizer',
|
|
300
|
+
'POST/registrations/cancellation/search/Admin',
|
|
301
|
+
'POST/registrations/cancellation/search/Unknown',
|
|
302
|
+
'POST/registrations/lineup/search/Service',
|
|
303
|
+
'POST/registrations/lineup/search/Organizer',
|
|
304
|
+
'POST/registrations/lineup/search/Admin',
|
|
305
|
+
'POST/registrations/lineup/search/Unknown',
|
|
306
|
+
'POST/registrations/promotion/search/Service',
|
|
307
|
+
'POST/registrations/promotion/search/Organizer',
|
|
308
|
+
'POST/registrations/promotion/search/Admin',
|
|
309
|
+
'POST/registrations/reinstatement/search/Service',
|
|
310
|
+
'POST/registrations/reinstatement/search/Organizer',
|
|
311
|
+
'POST/registrations/reinstatement/search/Admin',
|
|
312
|
+
'POST/registrations/reinstatement/search/Unknown',
|
|
313
|
+
'POST/registrations/city/search/Service',
|
|
314
|
+
'POST/registrations/city/search/Organizer',
|
|
315
|
+
'POST/registrations/city/search/Admin',
|
|
316
|
+
'POST/registrations/city/search/Unknown',
|
|
317
|
+
'POST/registrations/status/search/Service',
|
|
318
|
+
'POST/registrations/status/search/Organizer',
|
|
319
|
+
'POST/registrations/status/search/Admin',
|
|
320
|
+
'POST/registrations/status/search/Unknown',
|
|
321
|
+
'POST/registrations/mailing/Organizer',
|
|
322
|
+
'POST/registrations/mailing/Admin',
|
|
323
|
+
'POST/registrations/mailing/status/search/Organizer',
|
|
324
|
+
'POST/registrations/mailing/status/search/Admin',
|
|
304
325
|
'POST/cities/currency/search/Organizer',
|
|
305
|
-
'POST/cities/search/
|
|
306
|
-
'POST/cities/search/
|
|
326
|
+
'POST/cities/currency/search/Admin',
|
|
327
|
+
'POST/cities/currency/search/Unknown',
|
|
328
|
+
'POST/cities/country/search/Organizer',
|
|
329
|
+
'POST/cities/country/search/Admin',
|
|
330
|
+
'POST/cities/country/search/Unknown',
|
|
307
331
|
'POST/cities/search/Organizer',
|
|
308
|
-
'POST/
|
|
309
|
-
'POST/
|
|
310
|
-
'POST/
|
|
311
|
-
'POST/
|
|
312
|
-
'
|
|
313
|
-
'
|
|
314
|
-
'
|
|
315
|
-
'
|
|
316
|
-
'
|
|
317
|
-
'
|
|
318
|
-
'
|
|
319
|
-
'
|
|
320
|
-
'
|
|
321
|
-
'
|
|
322
|
-
'
|
|
323
|
-
'
|
|
324
|
-
'
|
|
325
|
-
'
|
|
326
|
-
'
|
|
327
|
-
'
|
|
328
|
-
'
|
|
329
|
-
'
|
|
330
|
-
'PATCH/registration/status/Service',
|
|
331
|
-
'PATCH/registration/Unknown',
|
|
332
|
-
'PATCH/registration/channel/Unknown',
|
|
333
|
-
'PATCH/registration/channel/Service',
|
|
334
|
-
'PATCH/registration/Admin',
|
|
335
|
-
'PATCH/registration/lineup/Admin',
|
|
336
|
-
'PATCH/registration/lineup/Organizer',
|
|
337
|
-
'PATCH/registration/Organizer',
|
|
338
|
-
'PATCH/registration/Service',
|
|
339
|
-
'PATCH/themes/Admin',
|
|
340
|
-
'PATCH/games/Admin',
|
|
341
|
-
'PATCH/games/Organizer',
|
|
342
|
-
'PATCH/games/Service',
|
|
343
|
-
'PATCH/user/password/Admin',
|
|
344
|
-
'PATCH/user/Admin',
|
|
345
|
-
'PATCH/user/role/Admin',
|
|
346
|
-
'PATCH/theme/Admin',
|
|
347
|
-
'PATCH/theme/Organizer',
|
|
348
|
-
'PATCH/city/timezone/Admin',
|
|
349
|
-
'PATCH/city/timezone/Organizer',
|
|
350
|
-
'PATCH/city/vk_group_token/Admin',
|
|
351
|
-
'PATCH/city/vk_group_token/Organizer',
|
|
352
|
-
'PATCH/city/Admin',
|
|
353
|
-
'PATCH/city/country/Admin',
|
|
354
|
-
'PATCH/city/country/Organizer',
|
|
355
|
-
'PATCH/city/Organizer',
|
|
356
|
-
'PATCH/city/currency/Admin',
|
|
357
|
-
'PATCH/city/currency/Organizer',
|
|
358
|
-
'PATCH/venues/Admin',
|
|
359
|
-
'PATCH/venues/Organizer',
|
|
360
|
-
'PATCH/venue/Admin',
|
|
361
|
-
'PATCH/venue/Organizer',
|
|
362
|
-
'PUT/theme/cover/Admin',
|
|
363
|
-
'PUT/theme/cover/Organizer'
|
|
332
|
+
'POST/cities/search/Admin',
|
|
333
|
+
'POST/cities/search/Unknown',
|
|
334
|
+
'POST/cities/venues/search/Organizer',
|
|
335
|
+
'POST/cities/venues/search/Admin',
|
|
336
|
+
'POST/cities/venues/search/Unknown',
|
|
337
|
+
'POST/cities/timezone/search/Organizer',
|
|
338
|
+
'POST/cities/timezone/search/Admin',
|
|
339
|
+
'POST/cities/timezone/search/Unknown',
|
|
340
|
+
'POST/roles/search/Admin',
|
|
341
|
+
'POST/city/vk_group_token/Organizer',
|
|
342
|
+
'POST/city/vk_group_token/Admin',
|
|
343
|
+
'POST/city/Organizer',
|
|
344
|
+
'POST/city/Admin',
|
|
345
|
+
'POST/users/search/Admin',
|
|
346
|
+
'POST/users/cities/search/Admin',
|
|
347
|
+
'POST/users/password/search/Admin',
|
|
348
|
+
'POST/users/role/search/Admin',
|
|
349
|
+
'POST/checkin/Organizer',
|
|
350
|
+
'POST/checkin/Admin',
|
|
351
|
+
'POST/checkin/Unknown',
|
|
352
|
+
'PUT/theme/cover/Organizer',
|
|
353
|
+
'PUT/theme/cover/Admin'
|
|
364
354
|
]),
|
|
365
355
|
)
|
|
366
356
|
|
|
367
357
|
export const Schemas = Object.freeze(
|
|
368
358
|
/** @type {const} */ ([
|
|
369
|
-
POST_registrations_promotion_search_Admin,
|
|
370
|
-
POST_registrations_promotion_search_Organizer,
|
|
371
|
-
POST_registrations_promotion_search_Service,
|
|
372
|
-
POST_registrations_status_search_Unknown,
|
|
373
|
-
POST_registrations_status_search_Admin,
|
|
374
|
-
POST_registrations_status_search_Organizer,
|
|
375
|
-
POST_registrations_status_search_Service,
|
|
376
|
-
POST_registrations_game_search_Unknown,
|
|
377
|
-
POST_registrations_game_search_Admin,
|
|
378
|
-
POST_registrations_game_search_Organizer,
|
|
379
|
-
POST_registrations_game_search_Service,
|
|
380
|
-
POST_registrations_cancellation_search_Unknown,
|
|
381
|
-
POST_registrations_cancellation_search_Admin,
|
|
382
|
-
POST_registrations_cancellation_search_Organizer,
|
|
383
|
-
POST_registrations_cancellation_search_Service,
|
|
384
|
-
POST_registrations_channel_search_Unknown,
|
|
385
|
-
POST_registrations_mailing_status_search_Admin,
|
|
386
|
-
POST_registrations_mailing_status_search_Organizer,
|
|
387
|
-
POST_registrations_mailing_Admin,
|
|
388
|
-
POST_registrations_mailing_Organizer,
|
|
389
|
-
POST_registrations_cover_search_Unknown,
|
|
390
|
-
POST_registrations_cover_search_Admin,
|
|
391
|
-
POST_registrations_cover_search_Organizer,
|
|
392
|
-
POST_registrations_cover_search_Service,
|
|
393
|
-
POST_registrations_lineup_search_Unknown,
|
|
394
|
-
POST_registrations_lineup_search_Admin,
|
|
395
|
-
POST_registrations_lineup_search_Organizer,
|
|
396
|
-
POST_registrations_lineup_search_Service,
|
|
397
|
-
POST_registrations_theme_search_Unknown,
|
|
398
|
-
POST_registrations_theme_search_Admin,
|
|
399
|
-
POST_registrations_theme_search_Organizer,
|
|
400
|
-
POST_registrations_theme_search_Service,
|
|
401
|
-
POST_registrations_city_search_Unknown,
|
|
402
|
-
POST_registrations_city_search_Admin,
|
|
403
|
-
POST_registrations_city_search_Organizer,
|
|
404
|
-
POST_registrations_city_search_Service,
|
|
405
|
-
POST_registrations_confirmation_search_Unknown,
|
|
406
|
-
POST_registrations_confirmation_search_Admin,
|
|
407
|
-
POST_registrations_confirmation_search_Organizer,
|
|
408
|
-
POST_registrations_confirmation_search_Service,
|
|
409
|
-
POST_registrations_venue_search_Unknown,
|
|
410
|
-
POST_registrations_venue_search_Admin,
|
|
411
|
-
POST_registrations_venue_search_Organizer,
|
|
412
|
-
POST_registrations_venue_search_Service,
|
|
413
|
-
POST_registrations_reinstatement_search_Unknown,
|
|
414
|
-
POST_registrations_reinstatement_search_Admin,
|
|
415
|
-
POST_registrations_reinstatement_search_Organizer,
|
|
416
|
-
POST_registrations_reinstatement_search_Service,
|
|
417
|
-
POST_registrations_reservation_search_Admin,
|
|
418
|
-
POST_registrations_reservation_search_Organizer,
|
|
419
|
-
POST_registrations_reservation_search_Service,
|
|
420
|
-
POST_registrations_restoration_search_Unknown,
|
|
421
|
-
POST_registrations_restoration_search_Admin,
|
|
422
|
-
POST_registrations_restoration_search_Organizer,
|
|
423
|
-
POST_registrations_restoration_search_Service,
|
|
424
|
-
POST_registrations_search_Unknown,
|
|
425
|
-
POST_registrations_search_Admin,
|
|
426
|
-
POST_registrations_search_Organizer,
|
|
427
|
-
POST_registrations_export_Admin,
|
|
428
|
-
POST_registrations_export_Organizer,
|
|
429
|
-
POST_game_Admin,
|
|
430
|
-
POST_game_Organizer,
|
|
431
|
-
POST_registration_Unknown,
|
|
432
|
-
POST_registration_Admin,
|
|
433
|
-
POST_registration_Organizer,
|
|
434
|
-
POST_roles_search_Admin,
|
|
435
|
-
POST_users_password_search_Admin,
|
|
436
|
-
POST_users_role_search_Admin,
|
|
437
|
-
POST_users_cities_search_Admin,
|
|
438
|
-
POST_users_search_Admin,
|
|
439
|
-
POST_themes_cover_search_Admin,
|
|
440
|
-
POST_themes_cover_search_Organizer,
|
|
441
|
-
POST_themes_search_Admin,
|
|
442
|
-
POST_themes_search_Organizer,
|
|
443
|
-
POST_games_cover_search_Unknown,
|
|
444
|
-
POST_games_theme_search_Unknown,
|
|
445
|
-
POST_games_theme_search_Admin,
|
|
446
|
-
POST_games_theme_search_Organizer,
|
|
447
|
-
POST_games_city_search_Admin,
|
|
448
|
-
POST_games_city_search_Organizer,
|
|
449
|
-
POST_games_venue_search_Unknown,
|
|
450
|
-
POST_games_venue_search_Admin,
|
|
451
|
-
POST_games_venue_search_Organizer,
|
|
452
|
-
POST_games_summary_search_Admin,
|
|
453
|
-
POST_games_summary_search_Organizer,
|
|
454
|
-
POST_games_search_Unknown,
|
|
455
|
-
POST_games_search_Admin,
|
|
456
|
-
POST_games_search_Organizer,
|
|
457
|
-
POST_user_password_Admin,
|
|
458
|
-
POST_user_Admin,
|
|
459
|
-
POST_user_city_Admin,
|
|
460
|
-
POST_user_role_Admin,
|
|
461
|
-
POST_checkin_Unknown,
|
|
462
|
-
POST_checkin_Admin,
|
|
463
|
-
POST_checkin_Organizer,
|
|
464
|
-
POST_theme_Admin,
|
|
465
|
-
POST_theme_cover_Admin,
|
|
466
|
-
POST_theme_cover_Organizer,
|
|
467
|
-
POST_theme_Organizer,
|
|
468
|
-
POST_city_vk_group_token_Admin,
|
|
469
|
-
POST_city_vk_group_token_Organizer,
|
|
470
|
-
POST_city_Admin,
|
|
471
|
-
POST_city_Organizer,
|
|
472
|
-
POST_venues_status_search_Admin,
|
|
473
|
-
POST_venues_status_search_Organizer,
|
|
474
|
-
POST_venues_city_search_Admin,
|
|
475
|
-
POST_venues_city_search_Organizer,
|
|
476
|
-
POST_venues_search_Admin,
|
|
477
|
-
POST_venues_search_Organizer,
|
|
478
|
-
POST_cities_timezone_search_Unknown,
|
|
479
|
-
POST_cities_timezone_search_Admin,
|
|
480
|
-
POST_cities_timezone_search_Organizer,
|
|
481
|
-
POST_cities_country_search_Unknown,
|
|
482
|
-
POST_cities_country_search_Admin,
|
|
483
|
-
POST_cities_country_search_Organizer,
|
|
484
|
-
POST_cities_venues_search_Unknown,
|
|
485
|
-
POST_cities_venues_search_Admin,
|
|
486
|
-
POST_cities_venues_search_Organizer,
|
|
487
|
-
POST_cities_currency_search_Unknown,
|
|
488
|
-
POST_cities_currency_search_Admin,
|
|
489
|
-
POST_cities_currency_search_Organizer,
|
|
490
|
-
POST_cities_search_Unknown,
|
|
491
|
-
POST_cities_search_Admin,
|
|
492
|
-
POST_cities_search_Organizer,
|
|
493
|
-
POST_venue_Admin,
|
|
494
|
-
POST_venue_Organizer,
|
|
495
|
-
POST_chatapp_registration_mailing_Admin,
|
|
496
|
-
POST_chatapp_registration_mailing_Organizer,
|
|
497
|
-
PATCH_registrations_status_Admin,
|
|
498
|
-
PATCH_registrations_status_Organizer,
|
|
499
|
-
PATCH_registrations_status_Service,
|
|
500
|
-
PATCH_registrations_Admin,
|
|
501
|
-
PATCH_registrations_lineup_Admin,
|
|
502
|
-
PATCH_registrations_lineup_Organizer,
|
|
503
|
-
PATCH_registrations_Organizer,
|
|
504
|
-
PATCH_registrations_Service,
|
|
505
|
-
PATCH_game_Admin,
|
|
506
|
-
PATCH_game_Organizer,
|
|
507
|
-
PATCH_game_theme_Admin,
|
|
508
|
-
PATCH_game_theme_Organizer,
|
|
509
359
|
PATCH_game_Service,
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
PATCH_registration_channel_Service,
|
|
519
|
-
PATCH_registration_Admin,
|
|
520
|
-
PATCH_registration_lineup_Admin,
|
|
521
|
-
PATCH_registration_lineup_Organizer,
|
|
522
|
-
PATCH_registration_Organizer,
|
|
523
|
-
PATCH_registration_Service,
|
|
360
|
+
PATCH_game_theme_Organizer,
|
|
361
|
+
PATCH_game_theme_Admin,
|
|
362
|
+
PATCH_game_Organizer,
|
|
363
|
+
PATCH_game_venue_Organizer,
|
|
364
|
+
PATCH_game_venue_Admin,
|
|
365
|
+
PATCH_game_Admin,
|
|
366
|
+
PATCH_theme_Organizer,
|
|
367
|
+
PATCH_theme_Admin,
|
|
524
368
|
PATCH_themes_Admin,
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
PATCH_games_Service,
|
|
369
|
+
PATCH_venue_Organizer,
|
|
370
|
+
PATCH_venue_Admin,
|
|
528
371
|
PATCH_user_password_Admin,
|
|
529
372
|
PATCH_user_Admin,
|
|
530
373
|
PATCH_user_role_Admin,
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
374
|
+
PATCH_registration_Service,
|
|
375
|
+
PATCH_registration_channel_Service,
|
|
376
|
+
PATCH_registration_channel_Unknown,
|
|
377
|
+
PATCH_registration_Organizer,
|
|
378
|
+
PATCH_registration_lineup_Organizer,
|
|
379
|
+
PATCH_registration_lineup_Admin,
|
|
380
|
+
PATCH_registration_Admin,
|
|
381
|
+
PATCH_registration_status_Service,
|
|
382
|
+
PATCH_registration_status_Organizer,
|
|
383
|
+
PATCH_registration_status_Admin,
|
|
384
|
+
PATCH_registration_status_Unknown,
|
|
385
|
+
PATCH_registration_Unknown,
|
|
386
|
+
PATCH_registrations_Service,
|
|
387
|
+
PATCH_registrations_Organizer,
|
|
388
|
+
PATCH_registrations_lineup_Organizer,
|
|
389
|
+
PATCH_registrations_lineup_Admin,
|
|
390
|
+
PATCH_registrations_Admin,
|
|
391
|
+
PATCH_registrations_status_Service,
|
|
392
|
+
PATCH_registrations_status_Organizer,
|
|
393
|
+
PATCH_registrations_status_Admin,
|
|
394
|
+
PATCH_city_currency_Organizer,
|
|
395
|
+
PATCH_city_currency_Admin,
|
|
536
396
|
PATCH_city_vk_group_token_Organizer,
|
|
537
|
-
|
|
538
|
-
PATCH_city_country_Admin,
|
|
397
|
+
PATCH_city_vk_group_token_Admin,
|
|
539
398
|
PATCH_city_country_Organizer,
|
|
399
|
+
PATCH_city_country_Admin,
|
|
540
400
|
PATCH_city_Organizer,
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
'POST/venue/Organizer': POST_venue_Organizer,
|
|
680
|
-
'POST/chatapp/registration/mailing/Admin': POST_chatapp_registration_mailing_Admin,
|
|
681
|
-
'POST/chatapp/registration/mailing/Organizer': POST_chatapp_registration_mailing_Organizer,
|
|
682
|
-
'PATCH/registrations/status/Admin': PATCH_registrations_status_Admin,
|
|
683
|
-
'PATCH/registrations/status/Organizer': PATCH_registrations_status_Organizer,
|
|
684
|
-
'PATCH/registrations/status/Service': PATCH_registrations_status_Service,
|
|
685
|
-
'PATCH/registrations/Admin': PATCH_registrations_Admin,
|
|
686
|
-
'PATCH/registrations/lineup/Admin': PATCH_registrations_lineup_Admin,
|
|
687
|
-
'PATCH/registrations/lineup/Organizer': PATCH_registrations_lineup_Organizer,
|
|
688
|
-
'PATCH/registrations/Organizer': PATCH_registrations_Organizer,
|
|
689
|
-
'PATCH/registrations/Service': PATCH_registrations_Service,
|
|
690
|
-
'PATCH/game/Admin': PATCH_game_Admin,
|
|
691
|
-
'PATCH/game/Organizer': PATCH_game_Organizer,
|
|
692
|
-
'PATCH/game/theme/Admin': PATCH_game_theme_Admin,
|
|
693
|
-
'PATCH/game/theme/Organizer': PATCH_game_theme_Organizer,
|
|
401
|
+
PATCH_city_Admin,
|
|
402
|
+
PATCH_city_timezone_Organizer,
|
|
403
|
+
PATCH_city_timezone_Admin,
|
|
404
|
+
POST_game_Organizer,
|
|
405
|
+
POST_game_Admin,
|
|
406
|
+
POST_theme_cover_Organizer,
|
|
407
|
+
POST_theme_cover_Admin,
|
|
408
|
+
POST_theme_Organizer,
|
|
409
|
+
POST_theme_Admin,
|
|
410
|
+
POST_themes_search_Organizer,
|
|
411
|
+
POST_themes_search_Admin,
|
|
412
|
+
POST_themes_cover_search_Organizer,
|
|
413
|
+
POST_themes_cover_search_Admin,
|
|
414
|
+
POST_chatapp_registration_mailing_Organizer,
|
|
415
|
+
POST_chatapp_registration_mailing_Admin,
|
|
416
|
+
POST_venues_search_Organizer,
|
|
417
|
+
POST_venues_search_Admin,
|
|
418
|
+
POST_venues_city_search_Organizer,
|
|
419
|
+
POST_venues_city_search_Admin,
|
|
420
|
+
POST_venues_status_search_Organizer,
|
|
421
|
+
POST_venues_status_search_Admin,
|
|
422
|
+
POST_venue_Organizer,
|
|
423
|
+
POST_venue_Admin,
|
|
424
|
+
POST_user_password_Admin,
|
|
425
|
+
POST_user_Admin,
|
|
426
|
+
POST_user_city_Admin,
|
|
427
|
+
POST_user_role_Admin,
|
|
428
|
+
POST_games_search_Organizer,
|
|
429
|
+
POST_games_search_Admin,
|
|
430
|
+
POST_games_search_Unknown,
|
|
431
|
+
POST_games_theme_search_Organizer,
|
|
432
|
+
POST_games_theme_search_Admin,
|
|
433
|
+
POST_games_theme_search_Unknown,
|
|
434
|
+
POST_games_cover_search_Unknown,
|
|
435
|
+
POST_games_summary_search_Organizer,
|
|
436
|
+
POST_games_summary_search_Admin,
|
|
437
|
+
POST_games_venue_search_Organizer,
|
|
438
|
+
POST_games_venue_search_Admin,
|
|
439
|
+
POST_games_venue_search_Unknown,
|
|
440
|
+
POST_games_city_search_Organizer,
|
|
441
|
+
POST_games_city_search_Admin,
|
|
442
|
+
POST_registration_Organizer,
|
|
443
|
+
POST_registration_Admin,
|
|
444
|
+
POST_registration_Unknown,
|
|
445
|
+
POST_registrations_game_search_Service,
|
|
446
|
+
POST_registrations_game_search_Organizer,
|
|
447
|
+
POST_registrations_game_search_Admin,
|
|
448
|
+
POST_registrations_game_search_Unknown,
|
|
449
|
+
POST_registrations_restoration_search_Service,
|
|
450
|
+
POST_registrations_restoration_search_Organizer,
|
|
451
|
+
POST_registrations_restoration_search_Admin,
|
|
452
|
+
POST_registrations_restoration_search_Unknown,
|
|
453
|
+
POST_registrations_confirmation_search_Service,
|
|
454
|
+
POST_registrations_confirmation_search_Organizer,
|
|
455
|
+
POST_registrations_confirmation_search_Admin,
|
|
456
|
+
POST_registrations_confirmation_search_Unknown,
|
|
457
|
+
POST_registrations_reservation_search_Service,
|
|
458
|
+
POST_registrations_reservation_search_Organizer,
|
|
459
|
+
POST_registrations_reservation_search_Admin,
|
|
460
|
+
POST_registrations_export_Organizer,
|
|
461
|
+
POST_registrations_export_Admin,
|
|
462
|
+
POST_registrations_search_Organizer,
|
|
463
|
+
POST_registrations_search_Admin,
|
|
464
|
+
POST_registrations_search_Unknown,
|
|
465
|
+
POST_registrations_theme_search_Service,
|
|
466
|
+
POST_registrations_theme_search_Organizer,
|
|
467
|
+
POST_registrations_theme_search_Admin,
|
|
468
|
+
POST_registrations_theme_search_Unknown,
|
|
469
|
+
POST_registrations_cover_search_Service,
|
|
470
|
+
POST_registrations_cover_search_Organizer,
|
|
471
|
+
POST_registrations_cover_search_Admin,
|
|
472
|
+
POST_registrations_cover_search_Unknown,
|
|
473
|
+
POST_registrations_channel_search_Unknown,
|
|
474
|
+
POST_registrations_venue_search_Service,
|
|
475
|
+
POST_registrations_venue_search_Organizer,
|
|
476
|
+
POST_registrations_venue_search_Admin,
|
|
477
|
+
POST_registrations_venue_search_Unknown,
|
|
478
|
+
POST_registrations_cancellation_search_Service,
|
|
479
|
+
POST_registrations_cancellation_search_Organizer,
|
|
480
|
+
POST_registrations_cancellation_search_Admin,
|
|
481
|
+
POST_registrations_cancellation_search_Unknown,
|
|
482
|
+
POST_registrations_lineup_search_Service,
|
|
483
|
+
POST_registrations_lineup_search_Organizer,
|
|
484
|
+
POST_registrations_lineup_search_Admin,
|
|
485
|
+
POST_registrations_lineup_search_Unknown,
|
|
486
|
+
POST_registrations_promotion_search_Service,
|
|
487
|
+
POST_registrations_promotion_search_Organizer,
|
|
488
|
+
POST_registrations_promotion_search_Admin,
|
|
489
|
+
POST_registrations_reinstatement_search_Service,
|
|
490
|
+
POST_registrations_reinstatement_search_Organizer,
|
|
491
|
+
POST_registrations_reinstatement_search_Admin,
|
|
492
|
+
POST_registrations_reinstatement_search_Unknown,
|
|
493
|
+
POST_registrations_city_search_Service,
|
|
494
|
+
POST_registrations_city_search_Organizer,
|
|
495
|
+
POST_registrations_city_search_Admin,
|
|
496
|
+
POST_registrations_city_search_Unknown,
|
|
497
|
+
POST_registrations_status_search_Service,
|
|
498
|
+
POST_registrations_status_search_Organizer,
|
|
499
|
+
POST_registrations_status_search_Admin,
|
|
500
|
+
POST_registrations_status_search_Unknown,
|
|
501
|
+
POST_registrations_mailing_Organizer,
|
|
502
|
+
POST_registrations_mailing_Admin,
|
|
503
|
+
POST_registrations_mailing_status_search_Organizer,
|
|
504
|
+
POST_registrations_mailing_status_search_Admin,
|
|
505
|
+
POST_cities_currency_search_Organizer,
|
|
506
|
+
POST_cities_currency_search_Admin,
|
|
507
|
+
POST_cities_currency_search_Unknown,
|
|
508
|
+
POST_cities_country_search_Organizer,
|
|
509
|
+
POST_cities_country_search_Admin,
|
|
510
|
+
POST_cities_country_search_Unknown,
|
|
511
|
+
POST_cities_search_Organizer,
|
|
512
|
+
POST_cities_search_Admin,
|
|
513
|
+
POST_cities_search_Unknown,
|
|
514
|
+
POST_cities_venues_search_Organizer,
|
|
515
|
+
POST_cities_venues_search_Admin,
|
|
516
|
+
POST_cities_venues_search_Unknown,
|
|
517
|
+
POST_cities_timezone_search_Organizer,
|
|
518
|
+
POST_cities_timezone_search_Admin,
|
|
519
|
+
POST_cities_timezone_search_Unknown,
|
|
520
|
+
POST_roles_search_Admin,
|
|
521
|
+
POST_city_vk_group_token_Organizer,
|
|
522
|
+
POST_city_vk_group_token_Admin,
|
|
523
|
+
POST_city_Organizer,
|
|
524
|
+
POST_city_Admin,
|
|
525
|
+
POST_users_search_Admin,
|
|
526
|
+
POST_users_cities_search_Admin,
|
|
527
|
+
POST_users_password_search_Admin,
|
|
528
|
+
POST_users_role_search_Admin,
|
|
529
|
+
POST_checkin_Organizer,
|
|
530
|
+
POST_checkin_Admin,
|
|
531
|
+
POST_checkin_Unknown,
|
|
532
|
+
PUT_theme_cover_Organizer,
|
|
533
|
+
PUT_theme_cover_Admin
|
|
534
|
+
]),
|
|
535
|
+
)
|
|
536
|
+
|
|
537
|
+
export const ContractSchema = Object.freeze(
|
|
538
|
+
/** @type {const} */ ({
|
|
694
539
|
'PATCH/game/Service': PATCH_game_Service,
|
|
695
|
-
'PATCH/game/
|
|
540
|
+
'PATCH/game/theme/Organizer': PATCH_game_theme_Organizer,
|
|
541
|
+
'PATCH/game/theme/Admin': PATCH_game_theme_Admin,
|
|
542
|
+
'PATCH/game/Organizer': PATCH_game_Organizer,
|
|
696
543
|
'PATCH/game/venue/Organizer': PATCH_game_venue_Organizer,
|
|
697
|
-
'PATCH/
|
|
698
|
-
'PATCH/
|
|
699
|
-
'PATCH/
|
|
700
|
-
'PATCH/
|
|
701
|
-
'PATCH/registration/Unknown': PATCH_registration_Unknown,
|
|
702
|
-
'PATCH/registration/channel/Unknown': PATCH_registration_channel_Unknown,
|
|
703
|
-
'PATCH/registration/channel/Service': PATCH_registration_channel_Service,
|
|
704
|
-
'PATCH/registration/Admin': PATCH_registration_Admin,
|
|
705
|
-
'PATCH/registration/lineup/Admin': PATCH_registration_lineup_Admin,
|
|
706
|
-
'PATCH/registration/lineup/Organizer': PATCH_registration_lineup_Organizer,
|
|
707
|
-
'PATCH/registration/Organizer': PATCH_registration_Organizer,
|
|
708
|
-
'PATCH/registration/Service': PATCH_registration_Service,
|
|
544
|
+
'PATCH/game/venue/Admin': PATCH_game_venue_Admin,
|
|
545
|
+
'PATCH/game/Admin': PATCH_game_Admin,
|
|
546
|
+
'PATCH/theme/Organizer': PATCH_theme_Organizer,
|
|
547
|
+
'PATCH/theme/Admin': PATCH_theme_Admin,
|
|
709
548
|
'PATCH/themes/Admin': PATCH_themes_Admin,
|
|
710
|
-
'PATCH/
|
|
711
|
-
'PATCH/
|
|
712
|
-
'PATCH/games/Service': PATCH_games_Service,
|
|
549
|
+
'PATCH/venue/Organizer': PATCH_venue_Organizer,
|
|
550
|
+
'PATCH/venue/Admin': PATCH_venue_Admin,
|
|
713
551
|
'PATCH/user/password/Admin': PATCH_user_password_Admin,
|
|
714
552
|
'PATCH/user/Admin': PATCH_user_Admin,
|
|
715
553
|
'PATCH/user/role/Admin': PATCH_user_role_Admin,
|
|
716
|
-
'PATCH/
|
|
717
|
-
'PATCH/
|
|
718
|
-
'PATCH/
|
|
719
|
-
'PATCH/
|
|
720
|
-
'PATCH/
|
|
554
|
+
'PATCH/registration/Service': PATCH_registration_Service,
|
|
555
|
+
'PATCH/registration/channel/Service': PATCH_registration_channel_Service,
|
|
556
|
+
'PATCH/registration/channel/Unknown': PATCH_registration_channel_Unknown,
|
|
557
|
+
'PATCH/registration/Organizer': PATCH_registration_Organizer,
|
|
558
|
+
'PATCH/registration/lineup/Organizer': PATCH_registration_lineup_Organizer,
|
|
559
|
+
'PATCH/registration/lineup/Admin': PATCH_registration_lineup_Admin,
|
|
560
|
+
'PATCH/registration/Admin': PATCH_registration_Admin,
|
|
561
|
+
'PATCH/registration/status/Service': PATCH_registration_status_Service,
|
|
562
|
+
'PATCH/registration/status/Organizer': PATCH_registration_status_Organizer,
|
|
563
|
+
'PATCH/registration/status/Admin': PATCH_registration_status_Admin,
|
|
564
|
+
'PATCH/registration/status/Unknown': PATCH_registration_status_Unknown,
|
|
565
|
+
'PATCH/registration/Unknown': PATCH_registration_Unknown,
|
|
566
|
+
'PATCH/registrations/Service': PATCH_registrations_Service,
|
|
567
|
+
'PATCH/registrations/Organizer': PATCH_registrations_Organizer,
|
|
568
|
+
'PATCH/registrations/lineup/Organizer': PATCH_registrations_lineup_Organizer,
|
|
569
|
+
'PATCH/registrations/lineup/Admin': PATCH_registrations_lineup_Admin,
|
|
570
|
+
'PATCH/registrations/Admin': PATCH_registrations_Admin,
|
|
571
|
+
'PATCH/registrations/status/Service': PATCH_registrations_status_Service,
|
|
572
|
+
'PATCH/registrations/status/Organizer': PATCH_registrations_status_Organizer,
|
|
573
|
+
'PATCH/registrations/status/Admin': PATCH_registrations_status_Admin,
|
|
574
|
+
'PATCH/city/currency/Organizer': PATCH_city_currency_Organizer,
|
|
575
|
+
'PATCH/city/currency/Admin': PATCH_city_currency_Admin,
|
|
721
576
|
'PATCH/city/vk_group_token/Organizer': PATCH_city_vk_group_token_Organizer,
|
|
722
|
-
'PATCH/city/Admin':
|
|
723
|
-
'PATCH/city/country/Admin': PATCH_city_country_Admin,
|
|
577
|
+
'PATCH/city/vk_group_token/Admin': PATCH_city_vk_group_token_Admin,
|
|
724
578
|
'PATCH/city/country/Organizer': PATCH_city_country_Organizer,
|
|
579
|
+
'PATCH/city/country/Admin': PATCH_city_country_Admin,
|
|
725
580
|
'PATCH/city/Organizer': PATCH_city_Organizer,
|
|
726
|
-
'PATCH/city/
|
|
727
|
-
'PATCH/city/
|
|
728
|
-
'PATCH/
|
|
729
|
-
'
|
|
730
|
-
'
|
|
731
|
-
'
|
|
732
|
-
'
|
|
733
|
-
'
|
|
581
|
+
'PATCH/city/Admin': PATCH_city_Admin,
|
|
582
|
+
'PATCH/city/timezone/Organizer': PATCH_city_timezone_Organizer,
|
|
583
|
+
'PATCH/city/timezone/Admin': PATCH_city_timezone_Admin,
|
|
584
|
+
'POST/game/Organizer': POST_game_Organizer,
|
|
585
|
+
'POST/game/Admin': POST_game_Admin,
|
|
586
|
+
'POST/theme/cover/Organizer': POST_theme_cover_Organizer,
|
|
587
|
+
'POST/theme/cover/Admin': POST_theme_cover_Admin,
|
|
588
|
+
'POST/theme/Organizer': POST_theme_Organizer,
|
|
589
|
+
'POST/theme/Admin': POST_theme_Admin,
|
|
590
|
+
'POST/themes/search/Organizer': POST_themes_search_Organizer,
|
|
591
|
+
'POST/themes/search/Admin': POST_themes_search_Admin,
|
|
592
|
+
'POST/themes/cover/search/Organizer': POST_themes_cover_search_Organizer,
|
|
593
|
+
'POST/themes/cover/search/Admin': POST_themes_cover_search_Admin,
|
|
594
|
+
'POST/chatapp/registration/mailing/Organizer': POST_chatapp_registration_mailing_Organizer,
|
|
595
|
+
'POST/chatapp/registration/mailing/Admin': POST_chatapp_registration_mailing_Admin,
|
|
596
|
+
'POST/venues/search/Organizer': POST_venues_search_Organizer,
|
|
597
|
+
'POST/venues/search/Admin': POST_venues_search_Admin,
|
|
598
|
+
'POST/venues/city/search/Organizer': POST_venues_city_search_Organizer,
|
|
599
|
+
'POST/venues/city/search/Admin': POST_venues_city_search_Admin,
|
|
600
|
+
'POST/venues/status/search/Organizer': POST_venues_status_search_Organizer,
|
|
601
|
+
'POST/venues/status/search/Admin': POST_venues_status_search_Admin,
|
|
602
|
+
'POST/venue/Organizer': POST_venue_Organizer,
|
|
603
|
+
'POST/venue/Admin': POST_venue_Admin,
|
|
604
|
+
'POST/user/password/Admin': POST_user_password_Admin,
|
|
605
|
+
'POST/user/Admin': POST_user_Admin,
|
|
606
|
+
'POST/user/city/Admin': POST_user_city_Admin,
|
|
607
|
+
'POST/user/role/Admin': POST_user_role_Admin,
|
|
608
|
+
'POST/games/search/Organizer': POST_games_search_Organizer,
|
|
609
|
+
'POST/games/search/Admin': POST_games_search_Admin,
|
|
610
|
+
'POST/games/search/Unknown': POST_games_search_Unknown,
|
|
611
|
+
'POST/games/theme/search/Organizer': POST_games_theme_search_Organizer,
|
|
612
|
+
'POST/games/theme/search/Admin': POST_games_theme_search_Admin,
|
|
613
|
+
'POST/games/theme/search/Unknown': POST_games_theme_search_Unknown,
|
|
614
|
+
'POST/games/cover/search/Unknown': POST_games_cover_search_Unknown,
|
|
615
|
+
'POST/games/summary/search/Organizer': POST_games_summary_search_Organizer,
|
|
616
|
+
'POST/games/summary/search/Admin': POST_games_summary_search_Admin,
|
|
617
|
+
'POST/games/venue/search/Organizer': POST_games_venue_search_Organizer,
|
|
618
|
+
'POST/games/venue/search/Admin': POST_games_venue_search_Admin,
|
|
619
|
+
'POST/games/venue/search/Unknown': POST_games_venue_search_Unknown,
|
|
620
|
+
'POST/games/city/search/Organizer': POST_games_city_search_Organizer,
|
|
621
|
+
'POST/games/city/search/Admin': POST_games_city_search_Admin,
|
|
622
|
+
'POST/registration/Organizer': POST_registration_Organizer,
|
|
623
|
+
'POST/registration/Admin': POST_registration_Admin,
|
|
624
|
+
'POST/registration/Unknown': POST_registration_Unknown,
|
|
625
|
+
'POST/registrations/game/search/Service': POST_registrations_game_search_Service,
|
|
626
|
+
'POST/registrations/game/search/Organizer': POST_registrations_game_search_Organizer,
|
|
627
|
+
'POST/registrations/game/search/Admin': POST_registrations_game_search_Admin,
|
|
628
|
+
'POST/registrations/game/search/Unknown': POST_registrations_game_search_Unknown,
|
|
629
|
+
'POST/registrations/restoration/search/Service': POST_registrations_restoration_search_Service,
|
|
630
|
+
'POST/registrations/restoration/search/Organizer': POST_registrations_restoration_search_Organizer,
|
|
631
|
+
'POST/registrations/restoration/search/Admin': POST_registrations_restoration_search_Admin,
|
|
632
|
+
'POST/registrations/restoration/search/Unknown': POST_registrations_restoration_search_Unknown,
|
|
633
|
+
'POST/registrations/confirmation/search/Service': POST_registrations_confirmation_search_Service,
|
|
634
|
+
'POST/registrations/confirmation/search/Organizer': POST_registrations_confirmation_search_Organizer,
|
|
635
|
+
'POST/registrations/confirmation/search/Admin': POST_registrations_confirmation_search_Admin,
|
|
636
|
+
'POST/registrations/confirmation/search/Unknown': POST_registrations_confirmation_search_Unknown,
|
|
637
|
+
'POST/registrations/reservation/search/Service': POST_registrations_reservation_search_Service,
|
|
638
|
+
'POST/registrations/reservation/search/Organizer': POST_registrations_reservation_search_Organizer,
|
|
639
|
+
'POST/registrations/reservation/search/Admin': POST_registrations_reservation_search_Admin,
|
|
640
|
+
'POST/registrations/export/Organizer': POST_registrations_export_Organizer,
|
|
641
|
+
'POST/registrations/export/Admin': POST_registrations_export_Admin,
|
|
642
|
+
'POST/registrations/search/Organizer': POST_registrations_search_Organizer,
|
|
643
|
+
'POST/registrations/search/Admin': POST_registrations_search_Admin,
|
|
644
|
+
'POST/registrations/search/Unknown': POST_registrations_search_Unknown,
|
|
645
|
+
'POST/registrations/theme/search/Service': POST_registrations_theme_search_Service,
|
|
646
|
+
'POST/registrations/theme/search/Organizer': POST_registrations_theme_search_Organizer,
|
|
647
|
+
'POST/registrations/theme/search/Admin': POST_registrations_theme_search_Admin,
|
|
648
|
+
'POST/registrations/theme/search/Unknown': POST_registrations_theme_search_Unknown,
|
|
649
|
+
'POST/registrations/cover/search/Service': POST_registrations_cover_search_Service,
|
|
650
|
+
'POST/registrations/cover/search/Organizer': POST_registrations_cover_search_Organizer,
|
|
651
|
+
'POST/registrations/cover/search/Admin': POST_registrations_cover_search_Admin,
|
|
652
|
+
'POST/registrations/cover/search/Unknown': POST_registrations_cover_search_Unknown,
|
|
653
|
+
'POST/registrations/channel/search/Unknown': POST_registrations_channel_search_Unknown,
|
|
654
|
+
'POST/registrations/venue/search/Service': POST_registrations_venue_search_Service,
|
|
655
|
+
'POST/registrations/venue/search/Organizer': POST_registrations_venue_search_Organizer,
|
|
656
|
+
'POST/registrations/venue/search/Admin': POST_registrations_venue_search_Admin,
|
|
657
|
+
'POST/registrations/venue/search/Unknown': POST_registrations_venue_search_Unknown,
|
|
658
|
+
'POST/registrations/cancellation/search/Service': POST_registrations_cancellation_search_Service,
|
|
659
|
+
'POST/registrations/cancellation/search/Organizer': POST_registrations_cancellation_search_Organizer,
|
|
660
|
+
'POST/registrations/cancellation/search/Admin': POST_registrations_cancellation_search_Admin,
|
|
661
|
+
'POST/registrations/cancellation/search/Unknown': POST_registrations_cancellation_search_Unknown,
|
|
662
|
+
'POST/registrations/lineup/search/Service': POST_registrations_lineup_search_Service,
|
|
663
|
+
'POST/registrations/lineup/search/Organizer': POST_registrations_lineup_search_Organizer,
|
|
664
|
+
'POST/registrations/lineup/search/Admin': POST_registrations_lineup_search_Admin,
|
|
665
|
+
'POST/registrations/lineup/search/Unknown': POST_registrations_lineup_search_Unknown,
|
|
666
|
+
'POST/registrations/promotion/search/Service': POST_registrations_promotion_search_Service,
|
|
667
|
+
'POST/registrations/promotion/search/Organizer': POST_registrations_promotion_search_Organizer,
|
|
668
|
+
'POST/registrations/promotion/search/Admin': POST_registrations_promotion_search_Admin,
|
|
669
|
+
'POST/registrations/reinstatement/search/Service': POST_registrations_reinstatement_search_Service,
|
|
670
|
+
'POST/registrations/reinstatement/search/Organizer': POST_registrations_reinstatement_search_Organizer,
|
|
671
|
+
'POST/registrations/reinstatement/search/Admin': POST_registrations_reinstatement_search_Admin,
|
|
672
|
+
'POST/registrations/reinstatement/search/Unknown': POST_registrations_reinstatement_search_Unknown,
|
|
673
|
+
'POST/registrations/city/search/Service': POST_registrations_city_search_Service,
|
|
674
|
+
'POST/registrations/city/search/Organizer': POST_registrations_city_search_Organizer,
|
|
675
|
+
'POST/registrations/city/search/Admin': POST_registrations_city_search_Admin,
|
|
676
|
+
'POST/registrations/city/search/Unknown': POST_registrations_city_search_Unknown,
|
|
677
|
+
'POST/registrations/status/search/Service': POST_registrations_status_search_Service,
|
|
678
|
+
'POST/registrations/status/search/Organizer': POST_registrations_status_search_Organizer,
|
|
679
|
+
'POST/registrations/status/search/Admin': POST_registrations_status_search_Admin,
|
|
680
|
+
'POST/registrations/status/search/Unknown': POST_registrations_status_search_Unknown,
|
|
681
|
+
'POST/registrations/mailing/Organizer': POST_registrations_mailing_Organizer,
|
|
682
|
+
'POST/registrations/mailing/Admin': POST_registrations_mailing_Admin,
|
|
683
|
+
'POST/registrations/mailing/status/search/Organizer': POST_registrations_mailing_status_search_Organizer,
|
|
684
|
+
'POST/registrations/mailing/status/search/Admin': POST_registrations_mailing_status_search_Admin,
|
|
685
|
+
'POST/cities/currency/search/Organizer': POST_cities_currency_search_Organizer,
|
|
686
|
+
'POST/cities/currency/search/Admin': POST_cities_currency_search_Admin,
|
|
687
|
+
'POST/cities/currency/search/Unknown': POST_cities_currency_search_Unknown,
|
|
688
|
+
'POST/cities/country/search/Organizer': POST_cities_country_search_Organizer,
|
|
689
|
+
'POST/cities/country/search/Admin': POST_cities_country_search_Admin,
|
|
690
|
+
'POST/cities/country/search/Unknown': POST_cities_country_search_Unknown,
|
|
691
|
+
'POST/cities/search/Organizer': POST_cities_search_Organizer,
|
|
692
|
+
'POST/cities/search/Admin': POST_cities_search_Admin,
|
|
693
|
+
'POST/cities/search/Unknown': POST_cities_search_Unknown,
|
|
694
|
+
'POST/cities/venues/search/Organizer': POST_cities_venues_search_Organizer,
|
|
695
|
+
'POST/cities/venues/search/Admin': POST_cities_venues_search_Admin,
|
|
696
|
+
'POST/cities/venues/search/Unknown': POST_cities_venues_search_Unknown,
|
|
697
|
+
'POST/cities/timezone/search/Organizer': POST_cities_timezone_search_Organizer,
|
|
698
|
+
'POST/cities/timezone/search/Admin': POST_cities_timezone_search_Admin,
|
|
699
|
+
'POST/cities/timezone/search/Unknown': POST_cities_timezone_search_Unknown,
|
|
700
|
+
'POST/roles/search/Admin': POST_roles_search_Admin,
|
|
701
|
+
'POST/city/vk_group_token/Organizer': POST_city_vk_group_token_Organizer,
|
|
702
|
+
'POST/city/vk_group_token/Admin': POST_city_vk_group_token_Admin,
|
|
703
|
+
'POST/city/Organizer': POST_city_Organizer,
|
|
704
|
+
'POST/city/Admin': POST_city_Admin,
|
|
705
|
+
'POST/users/search/Admin': POST_users_search_Admin,
|
|
706
|
+
'POST/users/cities/search/Admin': POST_users_cities_search_Admin,
|
|
707
|
+
'POST/users/password/search/Admin': POST_users_password_search_Admin,
|
|
708
|
+
'POST/users/role/search/Admin': POST_users_role_search_Admin,
|
|
709
|
+
'POST/checkin/Organizer': POST_checkin_Organizer,
|
|
710
|
+
'POST/checkin/Admin': POST_checkin_Admin,
|
|
711
|
+
'POST/checkin/Unknown': POST_checkin_Unknown,
|
|
712
|
+
'PUT/theme/cover/Organizer': PUT_theme_cover_Organizer,
|
|
713
|
+
'PUT/theme/cover/Admin': PUT_theme_cover_Admin
|
|
734
714
|
}),
|
|
735
715
|
)
|