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