@shakerquiz/utilities 0.4.25 → 0.4.27
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,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@shakerquiz/utilities",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.27",
|
|
5
5
|
"author": "yurkimus <yurkimus@gmail.com>",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"exports": {
|
|
8
|
-
"
|
|
9
|
-
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./source/index.d.ts",
|
|
10
|
+
"default": "./source/index.js"
|
|
11
|
+
},
|
|
12
|
+
"./schemas/": "./source/schemas/"
|
|
10
13
|
},
|
|
11
14
|
"dependencies": {
|
|
12
15
|
"urlpattern-polyfill": "10.1.0"
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"alias": {
|
|
5
|
+
"type": "string"
|
|
6
|
+
},
|
|
7
|
+
"city_id": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"format": "uuid"
|
|
10
|
+
},
|
|
11
|
+
"created_by_id": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"format": "uuid"
|
|
14
|
+
},
|
|
15
|
+
"currency": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"description": {
|
|
19
|
+
"type": "string"
|
|
20
|
+
},
|
|
21
|
+
"event_time": {
|
|
22
|
+
"type": "string",
|
|
23
|
+
"format": "date-time"
|
|
24
|
+
},
|
|
25
|
+
"game_pack_id": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"format": "uuid"
|
|
28
|
+
},
|
|
29
|
+
"id": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"format": "uuid"
|
|
32
|
+
},
|
|
33
|
+
"image_id": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"format": "uuid"
|
|
36
|
+
},
|
|
37
|
+
"location_id": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"format": "uuid"
|
|
40
|
+
},
|
|
41
|
+
"max_members_count": {
|
|
42
|
+
"type": "integer"
|
|
43
|
+
},
|
|
44
|
+
"min_members_count": {
|
|
45
|
+
"type": "integer"
|
|
46
|
+
},
|
|
47
|
+
"name": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"number": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
53
|
+
"owner_id": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"format": "uuid"
|
|
56
|
+
},
|
|
57
|
+
"personal_comment": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"price": {
|
|
61
|
+
"type": "number"
|
|
62
|
+
},
|
|
63
|
+
"short_description": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"status": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
"theme_id": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"format": "uuid"
|
|
72
|
+
},
|
|
73
|
+
"time_created": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"format": "date-time"
|
|
76
|
+
},
|
|
77
|
+
"time_updated": {
|
|
78
|
+
"type": "string",
|
|
79
|
+
"format": "date-time"
|
|
80
|
+
},
|
|
81
|
+
"timezone": {
|
|
82
|
+
"type": "integer"
|
|
83
|
+
},
|
|
84
|
+
"weekday": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"required": [
|
|
89
|
+
"created_by_id",
|
|
90
|
+
"currency",
|
|
91
|
+
"event_time",
|
|
92
|
+
"id",
|
|
93
|
+
"image_id",
|
|
94
|
+
"location_id",
|
|
95
|
+
"name",
|
|
96
|
+
"number",
|
|
97
|
+
"owner_id",
|
|
98
|
+
"price",
|
|
99
|
+
"status",
|
|
100
|
+
"theme_id",
|
|
101
|
+
"timezone"
|
|
102
|
+
],
|
|
103
|
+
"additionalProperties": false
|
|
104
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"ads_from": {
|
|
5
|
+
"type": "string"
|
|
6
|
+
},
|
|
7
|
+
"change_people_count": {
|
|
8
|
+
"type": "integer"
|
|
9
|
+
},
|
|
10
|
+
"channel": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"chatapp_id": {
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"comment": {
|
|
17
|
+
"type": "string"
|
|
18
|
+
},
|
|
19
|
+
"email": {
|
|
20
|
+
"type": "string"
|
|
21
|
+
},
|
|
22
|
+
"event_id": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"format": "uuid"
|
|
25
|
+
},
|
|
26
|
+
"fact_people_count": {
|
|
27
|
+
"type": "integer"
|
|
28
|
+
},
|
|
29
|
+
"human_name": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
"id": {
|
|
33
|
+
"type": "string",
|
|
34
|
+
"format": "uuid"
|
|
35
|
+
},
|
|
36
|
+
"is_actual_presence": {
|
|
37
|
+
"type": "boolean"
|
|
38
|
+
},
|
|
39
|
+
"is_alone": {
|
|
40
|
+
"type": "boolean"
|
|
41
|
+
},
|
|
42
|
+
"is_birthday": {
|
|
43
|
+
"type": "boolean"
|
|
44
|
+
},
|
|
45
|
+
"is_canceled": {
|
|
46
|
+
"type": "boolean"
|
|
47
|
+
},
|
|
48
|
+
"is_confirm": {
|
|
49
|
+
"type": "boolean"
|
|
50
|
+
},
|
|
51
|
+
"is_extensible": {
|
|
52
|
+
"type": "boolean"
|
|
53
|
+
},
|
|
54
|
+
"is_first": {
|
|
55
|
+
"type": "boolean"
|
|
56
|
+
},
|
|
57
|
+
"is_reserve": {
|
|
58
|
+
"type": "boolean"
|
|
59
|
+
},
|
|
60
|
+
"last_broadcast": {
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"people_count": {
|
|
64
|
+
"type": "integer"
|
|
65
|
+
},
|
|
66
|
+
"phone": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
"promocode": {
|
|
70
|
+
"type": "string"
|
|
71
|
+
},
|
|
72
|
+
"team_name": {
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
75
|
+
"telegramBot": {
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
"time_created": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"format": "date-time"
|
|
81
|
+
},
|
|
82
|
+
"time_updated": {
|
|
83
|
+
"type": "string",
|
|
84
|
+
"format": "date-time"
|
|
85
|
+
},
|
|
86
|
+
"utm_campaign": {
|
|
87
|
+
"type": "string"
|
|
88
|
+
},
|
|
89
|
+
"utm_content": {
|
|
90
|
+
"type": "string"
|
|
91
|
+
},
|
|
92
|
+
"utm_medium": {
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
"utm_source": {
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
"utm_term": {
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
"vkontakte": {
|
|
102
|
+
"type": "string"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"required": [
|
|
106
|
+
"email",
|
|
107
|
+
"event_id",
|
|
108
|
+
"human_name",
|
|
109
|
+
"id",
|
|
110
|
+
"is_actual_presence",
|
|
111
|
+
"is_alone",
|
|
112
|
+
"is_birthday",
|
|
113
|
+
"is_canceled",
|
|
114
|
+
"is_confirm",
|
|
115
|
+
"is_extensible",
|
|
116
|
+
"is_first",
|
|
117
|
+
"is_reserve",
|
|
118
|
+
"people_count",
|
|
119
|
+
"phone",
|
|
120
|
+
"team_name"
|
|
121
|
+
],
|
|
122
|
+
"additionalProperties": false
|
|
123
|
+
}
|