@shakerquiz/utilities 0.4.38 → 0.4.40

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "0.4.38",
4
+ "version": "0.4.40",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "scripts": {
@@ -0,0 +1,37 @@
1
+ {
2
+ "type": "object",
3
+ "properties": {
4
+ "city_id": {
5
+ "type": "string",
6
+ "format": "uuid"
7
+ },
8
+ "location_id": {
9
+ "type": "string",
10
+ "format": "uuid"
11
+ },
12
+ "theme_id": {
13
+ "type": "string",
14
+ "format": "uuid"
15
+ },
16
+ "number": {
17
+ "type": "string"
18
+ },
19
+ "event_time": {
20
+ "type": "string",
21
+ "format": "iso-date-time"
22
+ },
23
+ "price": {
24
+ "type": "number"
25
+ },
26
+ "min_members_count": {
27
+ "type": "integer"
28
+ },
29
+ "max_members_count": {
30
+ "type": "integer"
31
+ },
32
+ "status": {
33
+ "type": "string"
34
+ }
35
+ },
36
+ "additionalProperties": false
37
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "type": "object",
3
+ "properties": {
4
+ "created_by_id": {
5
+ "type": "string",
6
+ "format": "uuid"
7
+ },
8
+ "city_id": {
9
+ "type": "string",
10
+ "format": "uuid"
11
+ },
12
+ "location_id": {
13
+ "type": "string",
14
+ "format": "uuid"
15
+ },
16
+ "theme_id": {
17
+ "type": "string",
18
+ "format": "uuid"
19
+ },
20
+ "number": {
21
+ "type": "string"
22
+ },
23
+ "event_time": {
24
+ "type": "string",
25
+ "format": "iso-date-time"
26
+ }
27
+ },
28
+ "required": [
29
+ "created_by_id",
30
+ "city_id",
31
+ "location_id",
32
+ "theme_id",
33
+ "number",
34
+ "event_time"
35
+ ],
36
+ "additionalProperties": false
37
+ }
@@ -1,94 +0,0 @@
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
- "created_by_id",
87
- "event_time",
88
- "location_id",
89
- "number",
90
- "price",
91
- "theme_id"
92
- ],
93
- "additionalProperties": false
94
- }