@shakerquiz/utilities 0.4.43 → 0.4.45
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/schemas/PATCH/Game/default/schema.json +37 -0
- package/source/schemas/PATCH/Game/organizer/schema.json +37 -0
- package/source/schemas/PATCH/Registration/organizer/schema.json +6 -0
- package/source/schemas/POST/Game/default/schema.json +27 -0
- package/source/schemas/POST/Game/schema.json +27 -0
- package/source/schemas/POST/Registration/admin/schema.json +6 -0
- package/source/schemas/POST/Registration/default/schema.json +6 -0
- package/source/schemas/POST/Registration/organizer/schema.json +6 -0
- package/source/schemas/game.schema.json +93 -0
- /package/source/schemas/{game/patch.schema.json → PATCH/Game/admin/schema.json} +0 -0
- /package/source/schemas/{registration/patch.schema.json → PATCH/Registration/admin/schema.json} +0 -0
- /package/source/schemas/{registration/post.schema.json → PATCH/Registration/default/schema.json} +0 -0
- /package/source/schemas/{game/post.schema.json → POST/Game/admin/schema.json} +0 -0
- /package/source/schemas/{registration/schema.json → registration.schema.json} +0 -0
- /package/source/schemas/{theme/schema.json → theme.schema.json} +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"location_id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"theme_id": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "uuid"
|
|
11
|
+
},
|
|
12
|
+
"number": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"event_time": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": "iso-date-time"
|
|
18
|
+
},
|
|
19
|
+
"price": {
|
|
20
|
+
"type": "number"
|
|
21
|
+
},
|
|
22
|
+
"min_members_count": {
|
|
23
|
+
"type": "integer"
|
|
24
|
+
},
|
|
25
|
+
"max_members_count": {
|
|
26
|
+
"type": "integer"
|
|
27
|
+
},
|
|
28
|
+
"status": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"required": [
|
|
33
|
+
"location_id",
|
|
34
|
+
"theme_id"
|
|
35
|
+
],
|
|
36
|
+
"additionalProperties": false
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"location_id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"theme_id": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "uuid"
|
|
11
|
+
},
|
|
12
|
+
"number": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"event_time": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": "iso-date-time"
|
|
18
|
+
},
|
|
19
|
+
"price": {
|
|
20
|
+
"type": "number"
|
|
21
|
+
},
|
|
22
|
+
"min_members_count": {
|
|
23
|
+
"type": "integer"
|
|
24
|
+
},
|
|
25
|
+
"max_members_count": {
|
|
26
|
+
"type": "integer"
|
|
27
|
+
},
|
|
28
|
+
"status": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"required": [
|
|
33
|
+
"location_id",
|
|
34
|
+
"theme_id"
|
|
35
|
+
],
|
|
36
|
+
"additionalProperties": false
|
|
37
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"location_id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"theme_id": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "uuid"
|
|
11
|
+
},
|
|
12
|
+
"number": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"event_time": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": "iso-date-time"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": [
|
|
21
|
+
"location_id",
|
|
22
|
+
"theme_id",
|
|
23
|
+
"number",
|
|
24
|
+
"event_time"
|
|
25
|
+
],
|
|
26
|
+
"additionalProperties": false
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"location_id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"theme_id": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "uuid"
|
|
11
|
+
},
|
|
12
|
+
"number": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"event_time": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": "iso-date-time"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": [
|
|
21
|
+
"location_id",
|
|
22
|
+
"theme_id",
|
|
23
|
+
"number",
|
|
24
|
+
"event_time"
|
|
25
|
+
],
|
|
26
|
+
"additionalProperties": false
|
|
27
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"city_id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"created_by_id": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "uuid"
|
|
11
|
+
},
|
|
12
|
+
"currency": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"description": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"event_time": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"format": "iso-date-time"
|
|
21
|
+
},
|
|
22
|
+
"game_pack_id": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"format": "uuid"
|
|
25
|
+
},
|
|
26
|
+
"id": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"format": "uuid"
|
|
29
|
+
},
|
|
30
|
+
"image_id": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"format": "uuid"
|
|
33
|
+
},
|
|
34
|
+
"location_id": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"format": "uuid"
|
|
37
|
+
},
|
|
38
|
+
"max_members_count": {
|
|
39
|
+
"type": "integer"
|
|
40
|
+
},
|
|
41
|
+
"min_members_count": {
|
|
42
|
+
"type": "integer"
|
|
43
|
+
},
|
|
44
|
+
"name": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"number": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"owner_id": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"format": "uuid"
|
|
53
|
+
},
|
|
54
|
+
"personal_comment": {
|
|
55
|
+
"type": "string"
|
|
56
|
+
},
|
|
57
|
+
"price": {
|
|
58
|
+
"type": "number"
|
|
59
|
+
},
|
|
60
|
+
"short_description": {
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"status": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"theme_id": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"format": "uuid"
|
|
69
|
+
},
|
|
70
|
+
"time_created": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"format": "iso-date-time"
|
|
73
|
+
},
|
|
74
|
+
"time_updated": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"format": "iso-date-time"
|
|
77
|
+
},
|
|
78
|
+
"timezone": {
|
|
79
|
+
"type": "integer"
|
|
80
|
+
},
|
|
81
|
+
"weekday": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"required": [
|
|
86
|
+
"theme_id",
|
|
87
|
+
"location_id",
|
|
88
|
+
"event_time",
|
|
89
|
+
"number",
|
|
90
|
+
"price"
|
|
91
|
+
],
|
|
92
|
+
"additionalProperties": false
|
|
93
|
+
}
|
|
File without changes
|
/package/source/schemas/{registration/patch.schema.json → PATCH/Registration/admin/schema.json}
RENAMED
|
File without changes
|
/package/source/schemas/{registration/post.schema.json → PATCH/Registration/default/schema.json}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|