@shakerquiz/utilities 0.4.16 → 0.4.17
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/index.d.ts +1139 -13
- package/source/index.js +0 -16
- package/source/api.d.ts +0 -880
- package/source/database.d.ts +0 -187
- package/source/enumerations/schemas.d.ts +0 -16
- package/source/enumerations/schemas.js +0 -17
- package/source/functions/schema.d.ts +0 -5
- package/source/functions/schema.js +0 -59
- package/source/globals.d.ts +0 -72
- package/source/schemas/city.d.ts +0 -275
- package/source/schemas/city.js +0 -224
- package/source/schemas/game.d.ts +0 -97
- package/source/schemas/game.js +0 -97
- package/source/schemas/registration.d.ts +0 -129
- package/source/schemas/registration.js +0 -129
- package/source/schemas/role.d.ts +0 -21
- package/source/schemas/role.js +0 -21
- package/source/schemas/theme.d.ts +0 -29
- package/source/schemas/theme.js +0 -29
- package/source/schemas/user.d.ts +0 -73
- package/source/schemas/user.js +0 -73
- package/source/schemas/venue.d.ts +0 -77
- package/source/schemas/venue.js +0 -77
package/source/schemas/city.js
DELETED
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
export var CitySchema = /** @type {const} */ ({
|
|
2
|
-
address: {
|
|
3
|
-
type: 'String',
|
|
4
|
-
minLength: 1,
|
|
5
|
-
maxLength: 255,
|
|
6
|
-
},
|
|
7
|
-
|
|
8
|
-
alias: {
|
|
9
|
-
type: 'String',
|
|
10
|
-
minLength: 1,
|
|
11
|
-
maxLength: 255,
|
|
12
|
-
},
|
|
13
|
-
|
|
14
|
-
chatapp_category: {
|
|
15
|
-
type: 'String',
|
|
16
|
-
},
|
|
17
|
-
|
|
18
|
-
chatapp_legacy: {
|
|
19
|
-
type: 'Boolean',
|
|
20
|
-
},
|
|
21
|
-
|
|
22
|
-
chatapp_line: {
|
|
23
|
-
type: 'String',
|
|
24
|
-
minLength: 1,
|
|
25
|
-
maxLength: 255,
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
chatapp_tag: {
|
|
29
|
-
type: 'String',
|
|
30
|
-
minLength: 1,
|
|
31
|
-
maxLength: 255,
|
|
32
|
-
},
|
|
33
|
-
|
|
34
|
-
chatapp_user: {
|
|
35
|
-
type: 'String',
|
|
36
|
-
minLength: 1,
|
|
37
|
-
maxLength: 255,
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
country: {
|
|
41
|
-
type: 'String',
|
|
42
|
-
minLength: 2,
|
|
43
|
-
maxLength: 2,
|
|
44
|
-
},
|
|
45
|
-
|
|
46
|
-
currency: {
|
|
47
|
-
type: 'String',
|
|
48
|
-
minLength: 3,
|
|
49
|
-
maxLength: 3,
|
|
50
|
-
},
|
|
51
|
-
|
|
52
|
-
custom_html: {
|
|
53
|
-
type: 'String',
|
|
54
|
-
},
|
|
55
|
-
|
|
56
|
-
custom_script: {
|
|
57
|
-
type: 'String',
|
|
58
|
-
},
|
|
59
|
-
|
|
60
|
-
description: {
|
|
61
|
-
type: 'String',
|
|
62
|
-
minLength: 1,
|
|
63
|
-
maxLength: 255,
|
|
64
|
-
},
|
|
65
|
-
|
|
66
|
-
email: {
|
|
67
|
-
type: 'String',
|
|
68
|
-
minLength: 1,
|
|
69
|
-
maxLength: 255,
|
|
70
|
-
format: 'email',
|
|
71
|
-
},
|
|
72
|
-
|
|
73
|
-
game_time: {
|
|
74
|
-
type: 'String',
|
|
75
|
-
format: 'time',
|
|
76
|
-
},
|
|
77
|
-
|
|
78
|
-
id: {
|
|
79
|
-
type: 'String',
|
|
80
|
-
format: 'uuid',
|
|
81
|
-
},
|
|
82
|
-
|
|
83
|
-
inst_comment: {
|
|
84
|
-
type: 'String',
|
|
85
|
-
deprecated: true,
|
|
86
|
-
},
|
|
87
|
-
|
|
88
|
-
inst_link: {
|
|
89
|
-
type: 'String',
|
|
90
|
-
deprecated: true,
|
|
91
|
-
},
|
|
92
|
-
|
|
93
|
-
inst_login: {
|
|
94
|
-
type: 'String',
|
|
95
|
-
deprecated: true,
|
|
96
|
-
},
|
|
97
|
-
|
|
98
|
-
inst_password: {
|
|
99
|
-
type: 'String',
|
|
100
|
-
deprecated: true,
|
|
101
|
-
},
|
|
102
|
-
|
|
103
|
-
is_default: {
|
|
104
|
-
type: 'Boolean',
|
|
105
|
-
},
|
|
106
|
-
|
|
107
|
-
is_franchise: {
|
|
108
|
-
type: 'Boolean',
|
|
109
|
-
},
|
|
110
|
-
|
|
111
|
-
max_members_count: {
|
|
112
|
-
type: 'Number',
|
|
113
|
-
format: 'integer',
|
|
114
|
-
},
|
|
115
|
-
|
|
116
|
-
meta_description: {
|
|
117
|
-
type: 'String',
|
|
118
|
-
minLength: 1,
|
|
119
|
-
maxLength: 255,
|
|
120
|
-
},
|
|
121
|
-
|
|
122
|
-
meta_title: {
|
|
123
|
-
type: 'String',
|
|
124
|
-
minLength: 1,
|
|
125
|
-
maxLength: 255,
|
|
126
|
-
},
|
|
127
|
-
|
|
128
|
-
min_members_count: {
|
|
129
|
-
type: 'Number',
|
|
130
|
-
format: 'integer',
|
|
131
|
-
},
|
|
132
|
-
|
|
133
|
-
name: {
|
|
134
|
-
type: 'String',
|
|
135
|
-
minLength: 1,
|
|
136
|
-
maxLength: 255,
|
|
137
|
-
},
|
|
138
|
-
|
|
139
|
-
phone: {
|
|
140
|
-
type: 'String',
|
|
141
|
-
minLength: 1,
|
|
142
|
-
maxLength: 255,
|
|
143
|
-
},
|
|
144
|
-
|
|
145
|
-
price: {
|
|
146
|
-
type: 'Number',
|
|
147
|
-
format: 'float',
|
|
148
|
-
},
|
|
149
|
-
|
|
150
|
-
region: {
|
|
151
|
-
type: 'String',
|
|
152
|
-
minLength: 1,
|
|
153
|
-
maxLength: 255,
|
|
154
|
-
},
|
|
155
|
-
|
|
156
|
-
telegram_chat_id: {
|
|
157
|
-
type: 'String',
|
|
158
|
-
minLength: 1,
|
|
159
|
-
maxLength: 255,
|
|
160
|
-
},
|
|
161
|
-
|
|
162
|
-
tg_comment: {
|
|
163
|
-
type: 'String',
|
|
164
|
-
minLength: 1,
|
|
165
|
-
maxLength: 255,
|
|
166
|
-
},
|
|
167
|
-
|
|
168
|
-
tg_link: {
|
|
169
|
-
type: 'String',
|
|
170
|
-
minLength: 1,
|
|
171
|
-
maxLength: 255,
|
|
172
|
-
},
|
|
173
|
-
|
|
174
|
-
tg_login: {
|
|
175
|
-
type: 'String',
|
|
176
|
-
deprecated: true,
|
|
177
|
-
minLength: 1,
|
|
178
|
-
maxLength: 255,
|
|
179
|
-
},
|
|
180
|
-
|
|
181
|
-
tg_password: {
|
|
182
|
-
type: 'String',
|
|
183
|
-
deprecated: true,
|
|
184
|
-
minLength: 1,
|
|
185
|
-
maxLength: 255,
|
|
186
|
-
},
|
|
187
|
-
|
|
188
|
-
time_created: {
|
|
189
|
-
type: 'String',
|
|
190
|
-
format: 'Date',
|
|
191
|
-
},
|
|
192
|
-
|
|
193
|
-
time_updated: {
|
|
194
|
-
type: 'String',
|
|
195
|
-
format: 'Date',
|
|
196
|
-
},
|
|
197
|
-
|
|
198
|
-
timezone: {
|
|
199
|
-
type: 'String',
|
|
200
|
-
format: 'integer',
|
|
201
|
-
},
|
|
202
|
-
|
|
203
|
-
title: {
|
|
204
|
-
type: 'String',
|
|
205
|
-
minLength: 1,
|
|
206
|
-
maxLength: 255,
|
|
207
|
-
},
|
|
208
|
-
|
|
209
|
-
vk_comment: {
|
|
210
|
-
type: 'String',
|
|
211
|
-
},
|
|
212
|
-
|
|
213
|
-
vk_group_id: {
|
|
214
|
-
type: 'String',
|
|
215
|
-
},
|
|
216
|
-
|
|
217
|
-
vk_link: {
|
|
218
|
-
type: 'String',
|
|
219
|
-
},
|
|
220
|
-
|
|
221
|
-
yandex_metrica: {
|
|
222
|
-
type: 'String',
|
|
223
|
-
},
|
|
224
|
-
})
|
package/source/schemas/game.d.ts
DELETED
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
export namespace GameSchema {
|
|
2
|
-
namespace alias {
|
|
3
|
-
let type: "Undefined";
|
|
4
|
-
}
|
|
5
|
-
namespace city_id {
|
|
6
|
-
let type_1: "Undefined";
|
|
7
|
-
export { type_1 as type };
|
|
8
|
-
}
|
|
9
|
-
namespace created_by_id {
|
|
10
|
-
let type_2: "Undefined";
|
|
11
|
-
export { type_2 as type };
|
|
12
|
-
}
|
|
13
|
-
namespace currency {
|
|
14
|
-
let type_3: "Undefined";
|
|
15
|
-
export { type_3 as type };
|
|
16
|
-
}
|
|
17
|
-
namespace description {
|
|
18
|
-
let type_4: "Undefined";
|
|
19
|
-
export { type_4 as type };
|
|
20
|
-
}
|
|
21
|
-
namespace event_time {
|
|
22
|
-
let type_5: "Undefined";
|
|
23
|
-
export { type_5 as type };
|
|
24
|
-
}
|
|
25
|
-
namespace game_pack_id {
|
|
26
|
-
let type_6: "Undefined";
|
|
27
|
-
export { type_6 as type };
|
|
28
|
-
}
|
|
29
|
-
namespace id {
|
|
30
|
-
let type_7: "Undefined";
|
|
31
|
-
export { type_7 as type };
|
|
32
|
-
}
|
|
33
|
-
namespace image_id {
|
|
34
|
-
let type_8: "Undefined";
|
|
35
|
-
export { type_8 as type };
|
|
36
|
-
}
|
|
37
|
-
namespace location_id {
|
|
38
|
-
let type_9: "Undefined";
|
|
39
|
-
export { type_9 as type };
|
|
40
|
-
}
|
|
41
|
-
namespace max_members_count {
|
|
42
|
-
let type_10: "Undefined";
|
|
43
|
-
export { type_10 as type };
|
|
44
|
-
}
|
|
45
|
-
namespace min_members_count {
|
|
46
|
-
let type_11: "Undefined";
|
|
47
|
-
export { type_11 as type };
|
|
48
|
-
}
|
|
49
|
-
namespace name {
|
|
50
|
-
let type_12: "Undefined";
|
|
51
|
-
export { type_12 as type };
|
|
52
|
-
}
|
|
53
|
-
namespace number {
|
|
54
|
-
let type_13: "Undefined";
|
|
55
|
-
export { type_13 as type };
|
|
56
|
-
}
|
|
57
|
-
namespace owner_id {
|
|
58
|
-
let type_14: "Undefined";
|
|
59
|
-
export { type_14 as type };
|
|
60
|
-
}
|
|
61
|
-
namespace personal_comment {
|
|
62
|
-
let type_15: "Undefined";
|
|
63
|
-
export { type_15 as type };
|
|
64
|
-
}
|
|
65
|
-
namespace price {
|
|
66
|
-
let type_16: "Undefined";
|
|
67
|
-
export { type_16 as type };
|
|
68
|
-
}
|
|
69
|
-
namespace short_description {
|
|
70
|
-
let type_17: "Undefined";
|
|
71
|
-
export { type_17 as type };
|
|
72
|
-
}
|
|
73
|
-
namespace status {
|
|
74
|
-
let type_18: "Undefined";
|
|
75
|
-
export { type_18 as type };
|
|
76
|
-
}
|
|
77
|
-
namespace theme_id {
|
|
78
|
-
let type_19: "Undefined";
|
|
79
|
-
export { type_19 as type };
|
|
80
|
-
}
|
|
81
|
-
namespace time_created {
|
|
82
|
-
let type_20: "Undefined";
|
|
83
|
-
export { type_20 as type };
|
|
84
|
-
}
|
|
85
|
-
namespace time_updated {
|
|
86
|
-
let type_21: "Undefined";
|
|
87
|
-
export { type_21 as type };
|
|
88
|
-
}
|
|
89
|
-
namespace timezone {
|
|
90
|
-
let type_22: "Undefined";
|
|
91
|
-
export { type_22 as type };
|
|
92
|
-
}
|
|
93
|
-
namespace weekday {
|
|
94
|
-
let type_23: "Undefined";
|
|
95
|
-
export { type_23 as type };
|
|
96
|
-
}
|
|
97
|
-
}
|
package/source/schemas/game.js
DELETED
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
export var GameSchema = /** @type {const} */ ({
|
|
2
|
-
alias: {
|
|
3
|
-
type: 'Undefined',
|
|
4
|
-
},
|
|
5
|
-
|
|
6
|
-
city_id: {
|
|
7
|
-
type: 'Undefined',
|
|
8
|
-
},
|
|
9
|
-
|
|
10
|
-
created_by_id: {
|
|
11
|
-
type: 'Undefined',
|
|
12
|
-
},
|
|
13
|
-
|
|
14
|
-
currency: {
|
|
15
|
-
type: 'Undefined',
|
|
16
|
-
},
|
|
17
|
-
|
|
18
|
-
description: {
|
|
19
|
-
type: 'Undefined',
|
|
20
|
-
},
|
|
21
|
-
|
|
22
|
-
event_time: {
|
|
23
|
-
type: 'Undefined',
|
|
24
|
-
},
|
|
25
|
-
|
|
26
|
-
game_pack_id: {
|
|
27
|
-
type: 'Undefined',
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
id: {
|
|
31
|
-
type: 'Undefined',
|
|
32
|
-
},
|
|
33
|
-
|
|
34
|
-
image_id: {
|
|
35
|
-
type: 'Undefined',
|
|
36
|
-
},
|
|
37
|
-
|
|
38
|
-
location_id: {
|
|
39
|
-
type: 'Undefined',
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
max_members_count: {
|
|
43
|
-
type: 'Undefined',
|
|
44
|
-
},
|
|
45
|
-
|
|
46
|
-
min_members_count: {
|
|
47
|
-
type: 'Undefined',
|
|
48
|
-
},
|
|
49
|
-
|
|
50
|
-
name: {
|
|
51
|
-
type: 'Undefined',
|
|
52
|
-
},
|
|
53
|
-
|
|
54
|
-
number: {
|
|
55
|
-
type: 'Undefined',
|
|
56
|
-
},
|
|
57
|
-
|
|
58
|
-
owner_id: {
|
|
59
|
-
type: 'Undefined',
|
|
60
|
-
},
|
|
61
|
-
|
|
62
|
-
personal_comment: {
|
|
63
|
-
type: 'Undefined',
|
|
64
|
-
},
|
|
65
|
-
|
|
66
|
-
price: {
|
|
67
|
-
type: 'Undefined',
|
|
68
|
-
},
|
|
69
|
-
|
|
70
|
-
short_description: {
|
|
71
|
-
type: 'Undefined',
|
|
72
|
-
},
|
|
73
|
-
|
|
74
|
-
status: {
|
|
75
|
-
type: 'Undefined',
|
|
76
|
-
},
|
|
77
|
-
|
|
78
|
-
theme_id: {
|
|
79
|
-
type: 'Undefined',
|
|
80
|
-
},
|
|
81
|
-
|
|
82
|
-
time_created: {
|
|
83
|
-
type: 'Undefined',
|
|
84
|
-
},
|
|
85
|
-
|
|
86
|
-
time_updated: {
|
|
87
|
-
type: 'Undefined',
|
|
88
|
-
},
|
|
89
|
-
|
|
90
|
-
timezone: {
|
|
91
|
-
type: 'Undefined',
|
|
92
|
-
},
|
|
93
|
-
|
|
94
|
-
weekday: {
|
|
95
|
-
type: 'Undefined',
|
|
96
|
-
},
|
|
97
|
-
})
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
export namespace RegistrationSchema {
|
|
2
|
-
namespace ads_from {
|
|
3
|
-
let type: "Undefined";
|
|
4
|
-
}
|
|
5
|
-
namespace change_people_count {
|
|
6
|
-
let type_1: "Undefined";
|
|
7
|
-
export { type_1 as type };
|
|
8
|
-
}
|
|
9
|
-
namespace channel {
|
|
10
|
-
let type_2: "Undefined";
|
|
11
|
-
export { type_2 as type };
|
|
12
|
-
}
|
|
13
|
-
namespace chatapp_id {
|
|
14
|
-
let type_3: "Undefined";
|
|
15
|
-
export { type_3 as type };
|
|
16
|
-
}
|
|
17
|
-
namespace comment {
|
|
18
|
-
let type_4: "Undefined";
|
|
19
|
-
export { type_4 as type };
|
|
20
|
-
}
|
|
21
|
-
namespace email {
|
|
22
|
-
let type_5: "Undefined";
|
|
23
|
-
export { type_5 as type };
|
|
24
|
-
}
|
|
25
|
-
namespace event_id {
|
|
26
|
-
let type_6: "Undefined";
|
|
27
|
-
export { type_6 as type };
|
|
28
|
-
}
|
|
29
|
-
namespace fact_people_count {
|
|
30
|
-
let type_7: "Undefined";
|
|
31
|
-
export { type_7 as type };
|
|
32
|
-
}
|
|
33
|
-
namespace human_name {
|
|
34
|
-
let type_8: "Undefined";
|
|
35
|
-
export { type_8 as type };
|
|
36
|
-
}
|
|
37
|
-
namespace id {
|
|
38
|
-
let type_9: "Undefined";
|
|
39
|
-
export { type_9 as type };
|
|
40
|
-
}
|
|
41
|
-
namespace is_actual_presence {
|
|
42
|
-
let type_10: "Undefined";
|
|
43
|
-
export { type_10 as type };
|
|
44
|
-
}
|
|
45
|
-
namespace is_alone {
|
|
46
|
-
let type_11: "Undefined";
|
|
47
|
-
export { type_11 as type };
|
|
48
|
-
}
|
|
49
|
-
namespace is_birthday {
|
|
50
|
-
let type_12: "Undefined";
|
|
51
|
-
export { type_12 as type };
|
|
52
|
-
}
|
|
53
|
-
namespace is_canceled {
|
|
54
|
-
let type_13: "Undefined";
|
|
55
|
-
export { type_13 as type };
|
|
56
|
-
}
|
|
57
|
-
namespace is_confirm {
|
|
58
|
-
let type_14: "Undefined";
|
|
59
|
-
export { type_14 as type };
|
|
60
|
-
}
|
|
61
|
-
namespace is_extensible {
|
|
62
|
-
let type_15: "Undefined";
|
|
63
|
-
export { type_15 as type };
|
|
64
|
-
}
|
|
65
|
-
namespace is_first {
|
|
66
|
-
let type_16: "Undefined";
|
|
67
|
-
export { type_16 as type };
|
|
68
|
-
}
|
|
69
|
-
namespace is_reserve {
|
|
70
|
-
let type_17: "Undefined";
|
|
71
|
-
export { type_17 as type };
|
|
72
|
-
}
|
|
73
|
-
namespace last_broadcast {
|
|
74
|
-
let type_18: "Undefined";
|
|
75
|
-
export { type_18 as type };
|
|
76
|
-
}
|
|
77
|
-
namespace people_count {
|
|
78
|
-
let type_19: "Undefined";
|
|
79
|
-
export { type_19 as type };
|
|
80
|
-
}
|
|
81
|
-
namespace phone {
|
|
82
|
-
let type_20: "Undefined";
|
|
83
|
-
export { type_20 as type };
|
|
84
|
-
}
|
|
85
|
-
namespace promocode {
|
|
86
|
-
let type_21: "Undefined";
|
|
87
|
-
export { type_21 as type };
|
|
88
|
-
}
|
|
89
|
-
namespace team_name {
|
|
90
|
-
let type_22: "Undefined";
|
|
91
|
-
export { type_22 as type };
|
|
92
|
-
}
|
|
93
|
-
namespace telegramBot {
|
|
94
|
-
let type_23: "Undefined";
|
|
95
|
-
export { type_23 as type };
|
|
96
|
-
}
|
|
97
|
-
namespace time_created {
|
|
98
|
-
let type_24: "Undefined";
|
|
99
|
-
export { type_24 as type };
|
|
100
|
-
}
|
|
101
|
-
namespace time_updated {
|
|
102
|
-
let type_25: "Undefined";
|
|
103
|
-
export { type_25 as type };
|
|
104
|
-
}
|
|
105
|
-
namespace utm_campaign {
|
|
106
|
-
let type_26: "Undefined";
|
|
107
|
-
export { type_26 as type };
|
|
108
|
-
}
|
|
109
|
-
namespace utm_content {
|
|
110
|
-
let type_27: "Undefined";
|
|
111
|
-
export { type_27 as type };
|
|
112
|
-
}
|
|
113
|
-
namespace utm_medium {
|
|
114
|
-
let type_28: "Undefined";
|
|
115
|
-
export { type_28 as type };
|
|
116
|
-
}
|
|
117
|
-
namespace utm_source {
|
|
118
|
-
let type_29: "Undefined";
|
|
119
|
-
export { type_29 as type };
|
|
120
|
-
}
|
|
121
|
-
namespace utm_term {
|
|
122
|
-
let type_30: "Undefined";
|
|
123
|
-
export { type_30 as type };
|
|
124
|
-
}
|
|
125
|
-
namespace vkontakte {
|
|
126
|
-
let type_31: "Undefined";
|
|
127
|
-
export { type_31 as type };
|
|
128
|
-
}
|
|
129
|
-
}
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
export var RegistrationSchema = /** @type {const} */ ({
|
|
2
|
-
ads_from: {
|
|
3
|
-
type: 'Undefined',
|
|
4
|
-
},
|
|
5
|
-
|
|
6
|
-
change_people_count: {
|
|
7
|
-
type: 'Undefined',
|
|
8
|
-
},
|
|
9
|
-
|
|
10
|
-
channel: {
|
|
11
|
-
type: 'Undefined',
|
|
12
|
-
},
|
|
13
|
-
|
|
14
|
-
chatapp_id: {
|
|
15
|
-
type: 'Undefined',
|
|
16
|
-
},
|
|
17
|
-
|
|
18
|
-
comment: {
|
|
19
|
-
type: 'Undefined',
|
|
20
|
-
},
|
|
21
|
-
|
|
22
|
-
email: {
|
|
23
|
-
type: 'Undefined',
|
|
24
|
-
},
|
|
25
|
-
|
|
26
|
-
event_id: {
|
|
27
|
-
type: 'Undefined',
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
fact_people_count: {
|
|
31
|
-
type: 'Undefined',
|
|
32
|
-
},
|
|
33
|
-
|
|
34
|
-
human_name: {
|
|
35
|
-
type: 'Undefined',
|
|
36
|
-
},
|
|
37
|
-
|
|
38
|
-
id: {
|
|
39
|
-
type: 'Undefined',
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
is_actual_presence: {
|
|
43
|
-
type: 'Undefined',
|
|
44
|
-
},
|
|
45
|
-
|
|
46
|
-
is_alone: {
|
|
47
|
-
type: 'Undefined',
|
|
48
|
-
},
|
|
49
|
-
|
|
50
|
-
is_birthday: {
|
|
51
|
-
type: 'Undefined',
|
|
52
|
-
},
|
|
53
|
-
|
|
54
|
-
is_canceled: {
|
|
55
|
-
type: 'Undefined',
|
|
56
|
-
},
|
|
57
|
-
|
|
58
|
-
is_confirm: {
|
|
59
|
-
type: 'Undefined',
|
|
60
|
-
},
|
|
61
|
-
|
|
62
|
-
is_extensible: {
|
|
63
|
-
type: 'Undefined',
|
|
64
|
-
},
|
|
65
|
-
|
|
66
|
-
is_first: {
|
|
67
|
-
type: 'Undefined',
|
|
68
|
-
},
|
|
69
|
-
|
|
70
|
-
is_reserve: {
|
|
71
|
-
type: 'Undefined',
|
|
72
|
-
},
|
|
73
|
-
|
|
74
|
-
last_broadcast: {
|
|
75
|
-
type: 'Undefined',
|
|
76
|
-
},
|
|
77
|
-
|
|
78
|
-
people_count: {
|
|
79
|
-
type: 'Undefined',
|
|
80
|
-
},
|
|
81
|
-
|
|
82
|
-
phone: {
|
|
83
|
-
type: 'Undefined',
|
|
84
|
-
},
|
|
85
|
-
|
|
86
|
-
promocode: {
|
|
87
|
-
type: 'Undefined',
|
|
88
|
-
},
|
|
89
|
-
|
|
90
|
-
team_name: {
|
|
91
|
-
type: 'Undefined',
|
|
92
|
-
},
|
|
93
|
-
|
|
94
|
-
telegramBot: {
|
|
95
|
-
type: 'Undefined',
|
|
96
|
-
},
|
|
97
|
-
|
|
98
|
-
time_created: {
|
|
99
|
-
type: 'Undefined',
|
|
100
|
-
},
|
|
101
|
-
|
|
102
|
-
time_updated: {
|
|
103
|
-
type: 'Undefined',
|
|
104
|
-
},
|
|
105
|
-
|
|
106
|
-
utm_campaign: {
|
|
107
|
-
type: 'Undefined',
|
|
108
|
-
},
|
|
109
|
-
|
|
110
|
-
utm_content: {
|
|
111
|
-
type: 'Undefined',
|
|
112
|
-
},
|
|
113
|
-
|
|
114
|
-
utm_medium: {
|
|
115
|
-
type: 'Undefined',
|
|
116
|
-
},
|
|
117
|
-
|
|
118
|
-
utm_source: {
|
|
119
|
-
type: 'Undefined',
|
|
120
|
-
},
|
|
121
|
-
|
|
122
|
-
utm_term: {
|
|
123
|
-
type: 'Undefined',
|
|
124
|
-
},
|
|
125
|
-
|
|
126
|
-
vkontakte: {
|
|
127
|
-
type: 'Undefined',
|
|
128
|
-
},
|
|
129
|
-
})
|
package/source/schemas/role.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export namespace RoleSchema {
|
|
2
|
-
namespace description {
|
|
3
|
-
let type: "String";
|
|
4
|
-
}
|
|
5
|
-
namespace id {
|
|
6
|
-
let type_1: "String";
|
|
7
|
-
export { type_1 as type };
|
|
8
|
-
}
|
|
9
|
-
namespace name {
|
|
10
|
-
let type_2: "String";
|
|
11
|
-
export { type_2 as type };
|
|
12
|
-
}
|
|
13
|
-
namespace time_created {
|
|
14
|
-
let type_3: "String";
|
|
15
|
-
export { type_3 as type };
|
|
16
|
-
}
|
|
17
|
-
namespace time_updated {
|
|
18
|
-
let type_4: "String";
|
|
19
|
-
export { type_4 as type };
|
|
20
|
-
}
|
|
21
|
-
}
|
package/source/schemas/role.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export var RoleSchema = /** @type {const} */ ({
|
|
2
|
-
description: {
|
|
3
|
-
type: 'String',
|
|
4
|
-
},
|
|
5
|
-
|
|
6
|
-
id: {
|
|
7
|
-
type: 'String',
|
|
8
|
-
},
|
|
9
|
-
|
|
10
|
-
name: {
|
|
11
|
-
type: 'String',
|
|
12
|
-
},
|
|
13
|
-
|
|
14
|
-
time_created: {
|
|
15
|
-
type: 'String',
|
|
16
|
-
},
|
|
17
|
-
|
|
18
|
-
time_updated: {
|
|
19
|
-
type: 'String',
|
|
20
|
-
},
|
|
21
|
-
})
|