@shakerquiz/utilities 0.5.49 → 0.5.51
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 +1 -1
- package/source/enumerations/misc/routes.js +188 -43
- package/source/schemas/PATCH/city/admin.json +671 -7
- package/source/schemas/PATCH/{Game/admin/schema.json → game/admin.json} +0 -4
- package/source/schemas/PATCH/{Game/organizer/schema.json → game/organizer.json} +0 -4
- package/source/schemas/PATCH/registration/cancellation/default.json +12 -0
- package/source/schemas/PATCH/registration/channel/default.json +22 -0
- package/source/schemas/PATCH/registration/confirmation/default.json +12 -0
- package/source/schemas/PATCH/registration/default.json +10 -0
- package/source/schemas/PATCH/registration/organizer.json +43 -0
- package/source/schemas/PATCH/user/role/admin.json +1 -1
- package/source/schemas/POST/city/admin.json +667 -3
- package/source/schemas/POST/game/registrations/export/admin.json +17 -0
- package/source/schemas/POST/game/registrations/export/organizer.json +17 -0
- package/source/schemas/POST/registrations/export/admin.json +17 -0
- package/source/schemas/POST/registrations/export/organizer.json +17 -0
- package/source/schemas/PATCH/Registration/admin/schema.json +0 -6
- package/source/schemas/PATCH/Registration/default/schema.json +0 -104
- package/source/schemas/POST/Game/organizer/schema.json +0 -27
- package/source/schemas/POST/Mailing/admin/schema.json +0 -6
- package/source/schemas/POST/Mailing/default/schema.json +0 -6
- package/source/schemas/POST/Registration/admin/schema.json +0 -6
- package/source/schemas/POST/Registration/organizer/schema.json +0 -6
- package/source/schemas/game.schema.json +0 -93
- package/source/schemas/registration.schema.json +0 -123
- package/source/schemas/theme.schema.json +0 -48
- package/source/schemas/venue.schema.json +0 -56
- /package/source/schemas/PATCH/{Registration/organizer/schema.json → registration/admin.json} +0 -0
- /package/source/schemas/POST/{Game/admin/schema.json → game/admin.json} +0 -0
- /package/source/schemas/POST/{Game/default/schema.json → game/organizer.json} +0 -0
- /package/source/schemas/POST/{Registration/default/schema.json → registration/default.json} +0 -0
- /package/source/schemas/{PATCH/Game/default/schema.json → POST/registration/mailing/admin.json} +0 -0
- /package/source/schemas/POST/{Mailing/organizer/schema.json → registration/mailing/organizer.json} +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"channel": {
|
|
5
|
+
"type": "string"
|
|
6
|
+
},
|
|
7
|
+
"confirmed_channel": {
|
|
8
|
+
"type": "string"
|
|
9
|
+
},
|
|
10
|
+
"email": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"vkontakte": {
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"telegramBot": {
|
|
17
|
+
"type": "string"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": [],
|
|
21
|
+
"additionalProperties": false
|
|
22
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"people_count": {
|
|
5
|
+
"type": "integer"
|
|
6
|
+
},
|
|
7
|
+
"human_name": {
|
|
8
|
+
"type": "string"
|
|
9
|
+
},
|
|
10
|
+
"is_alone": {
|
|
11
|
+
"type": "boolean"
|
|
12
|
+
},
|
|
13
|
+
"is_canceled": {
|
|
14
|
+
"type": "boolean"
|
|
15
|
+
},
|
|
16
|
+
"is_confirm": {
|
|
17
|
+
"type": "boolean"
|
|
18
|
+
},
|
|
19
|
+
"is_reserve": {
|
|
20
|
+
"type": "boolean"
|
|
21
|
+
},
|
|
22
|
+
"team_name": {
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
"status": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"enum": [
|
|
28
|
+
"Created",
|
|
29
|
+
"Confirmed",
|
|
30
|
+
"Cancelled"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"lineup": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"enum": [
|
|
36
|
+
"Main",
|
|
37
|
+
"Reserve"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"required": [],
|
|
42
|
+
"additionalProperties": false
|
|
43
|
+
}
|