jp.db.schemas 2.0.27 → 2.1.0
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/dist/index.d.ts +6 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/models/activity-log.enum.d.ts +5 -0
- package/dist/models/activity-log.enum.d.ts.map +1 -0
- package/dist/models/activity-log.enum.js +9 -0
- package/dist/models/activity-log.enum.js.map +1 -0
- package/dist/repositories/activity-log.repository.d.ts +11 -0
- package/dist/repositories/activity-log.repository.d.ts.map +1 -0
- package/dist/repositories/activity-log.repository.js +93 -0
- package/dist/repositories/activity-log.repository.js.map +1 -0
- package/dist/repositories/index.d.ts +2 -1
- package/dist/repositories/index.d.ts.map +1 -1
- package/dist/repositories/index.js +3 -1
- package/dist/repositories/index.js.map +1 -1
- package/dist/schemas/activity_log.schema.d.ts +105 -0
- package/dist/schemas/activity_log.schema.d.ts.map +1 -0
- package/dist/schemas/activity_log.schema.js +57 -0
- package/dist/schemas/activity_log.schema.js.map +1 -0
- package/package.json +31 -30
- package/readme.md +3 -3
- package/src/index.ts +226 -219
- package/src/models/activity-log.enum.ts +4 -0
- package/src/models/tournament-participant.interface.ts +5 -5
- package/src/models/tournament-status.enum.ts +6 -6
- package/src/models/tournament-template.enum.ts +3 -3
- package/src/models/tournament-winner.interface.ts +7 -7
- package/src/repositories/activity-log.repository.ts +93 -0
- package/src/repositories/admin.repository.ts +23 -23
- package/src/repositories/article.repository.ts +33 -33
- package/src/repositories/balance-history.repository.ts +15 -15
- package/src/repositories/banners.repository.ts +54 -54
- package/src/repositories/complains.repository.ts +30 -30
- package/src/repositories/daily-bonus.repository.ts +19 -19
- package/src/repositories/game-result.repository.ts +15 -15
- package/src/repositories/index.ts +47 -45
- package/src/repositories/menu.repository.ts +21 -21
- package/src/repositories/notification.repository.ts +54 -54
- package/src/repositories/premium.repository.ts +19 -19
- package/src/repositories/products.repository.ts +29 -29
- package/src/repositories/rooms.repository.ts +17 -17
- package/src/repositories/rule.repository.ts +19 -19
- package/src/repositories/scheduled-tournaments.repository.ts +30 -30
- package/src/repositories/servers.repository.ts +18 -18
- package/src/repositories/setting.repository.ts +19 -19
- package/src/repositories/simple-rooms.repository.ts +17 -17
- package/src/repositories/tournament-many-tables-rooms.repository.ts +132 -132
- package/src/repositories/tournament-one-table-rooms.repository.ts +106 -106
- package/src/repositories/users.repository.ts +124 -124
- package/src/repositories/welcome.repository.ts +19 -19
- package/src/schemas/achievement.schema.ts +40 -40
- package/src/schemas/activity_log.schema.ts +37 -0
- package/src/schemas/admin.schema.ts +22 -22
- package/src/schemas/article.schema.ts +37 -37
- package/src/schemas/balance_history.schema.ts +37 -37
- package/src/schemas/banner.schema.ts +40 -40
- package/src/schemas/channel_message.schema.ts +31 -31
- package/src/schemas/complain.schema.ts +46 -46
- package/src/schemas/daily_bonus.schema.ts +56 -56
- package/src/schemas/feature.schema.ts +28 -28
- package/src/schemas/game_result.schema.ts +68 -68
- package/src/schemas/menu.schema.ts +40 -40
- package/src/schemas/notification.schema.ts +61 -61
- package/src/schemas/premium.schema.ts +45 -45
- package/src/schemas/product.schema.ts +123 -123
- package/src/schemas/purchase.schema.ts +64 -64
- package/src/schemas/purchase_channel.schema.ts +31 -31
- package/src/schemas/rating.schema.ts +46 -46
- package/src/schemas/rooms.schema.ts +63 -63
- package/src/schemas/rule.schema.ts +45 -45
- package/src/schemas/scheduled_tournament.schema.ts +93 -93
- package/src/schemas/server.schema.ts +22 -22
- package/src/schemas/setting.schema.ts +55 -55
- package/src/schemas/simple_rooms.schema.ts +46 -46
- package/src/schemas/tournament_many_tables_rooms.schema.ts +84 -84
- package/src/schemas/tournament_one_table_rooms.schema.ts +81 -81
- package/src/schemas/user.fb.schema.ts +33 -33
- package/src/schemas/user.google.schema.ts +24 -24
- package/src/schemas/user.ok.schema.ts +52 -52
- package/src/schemas/user.schema.ts +184 -184
- package/src/schemas/user.tg.schema.ts +30 -30
- package/src/schemas/user.vk.schema.ts +70 -70
- package/src/schemas/user.ya.schema.ts +24 -24
- package/src/schemas/welcome.schema.ts +45 -45
- package/src/utils.ts +3 -3
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
|
|
2
|
-
import { HydratedDocument } from 'mongoose';
|
|
3
|
-
|
|
4
|
-
export type VKUserCityDocument = HydratedDocument<VKUserCity>;
|
|
5
|
-
|
|
6
|
-
@Schema()
|
|
7
|
-
export class VKUserCity {
|
|
8
|
-
@Prop()
|
|
9
|
-
id: number;
|
|
10
|
-
|
|
11
|
-
@Prop()
|
|
12
|
-
title: string;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export const VKUserCitySchema = SchemaFactory.createForClass(VKUserCity);
|
|
16
|
-
|
|
17
|
-
export type VKUserDocument = HydratedDocument<VKUser>;
|
|
18
|
-
|
|
19
|
-
@Schema()
|
|
20
|
-
export class VKUser {
|
|
21
|
-
@Prop()
|
|
22
|
-
id: number;
|
|
23
|
-
|
|
24
|
-
@Prop()
|
|
25
|
-
first_name: string;
|
|
26
|
-
|
|
27
|
-
@Prop()
|
|
28
|
-
last_name: string;
|
|
29
|
-
|
|
30
|
-
@Prop()
|
|
31
|
-
sex: number;
|
|
32
|
-
|
|
33
|
-
@Prop()
|
|
34
|
-
bdate: string;
|
|
35
|
-
|
|
36
|
-
@Prop()
|
|
37
|
-
city: VKUserCity;
|
|
38
|
-
|
|
39
|
-
@Prop()
|
|
40
|
-
country: VKUserCity;
|
|
41
|
-
|
|
42
|
-
@Prop()
|
|
43
|
-
photo_100: string;
|
|
44
|
-
|
|
45
|
-
@Prop()
|
|
46
|
-
photo_200: string;
|
|
47
|
-
|
|
48
|
-
@Prop()
|
|
49
|
-
photo_max_orig: string;
|
|
50
|
-
|
|
51
|
-
@Prop()
|
|
52
|
-
timezone: number;
|
|
53
|
-
|
|
54
|
-
@Prop()
|
|
55
|
-
is_closed: boolean;
|
|
56
|
-
|
|
57
|
-
@Prop()
|
|
58
|
-
can_access_closed: boolean;
|
|
59
|
-
|
|
60
|
-
@Prop()
|
|
61
|
-
can_invite_to_chats: boolean;
|
|
62
|
-
|
|
63
|
-
@Prop()
|
|
64
|
-
is_app_ios: boolean;
|
|
65
|
-
|
|
66
|
-
@Prop()
|
|
67
|
-
is_vk_user_id?: boolean;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export const VKUserSchema = SchemaFactory.createForClass(VKUser);
|
|
1
|
+
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
|
|
2
|
+
import { HydratedDocument } from 'mongoose';
|
|
3
|
+
|
|
4
|
+
export type VKUserCityDocument = HydratedDocument<VKUserCity>;
|
|
5
|
+
|
|
6
|
+
@Schema()
|
|
7
|
+
export class VKUserCity {
|
|
8
|
+
@Prop()
|
|
9
|
+
id: number;
|
|
10
|
+
|
|
11
|
+
@Prop()
|
|
12
|
+
title: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export const VKUserCitySchema = SchemaFactory.createForClass(VKUserCity);
|
|
16
|
+
|
|
17
|
+
export type VKUserDocument = HydratedDocument<VKUser>;
|
|
18
|
+
|
|
19
|
+
@Schema()
|
|
20
|
+
export class VKUser {
|
|
21
|
+
@Prop()
|
|
22
|
+
id: number;
|
|
23
|
+
|
|
24
|
+
@Prop()
|
|
25
|
+
first_name: string;
|
|
26
|
+
|
|
27
|
+
@Prop()
|
|
28
|
+
last_name: string;
|
|
29
|
+
|
|
30
|
+
@Prop()
|
|
31
|
+
sex: number;
|
|
32
|
+
|
|
33
|
+
@Prop()
|
|
34
|
+
bdate: string;
|
|
35
|
+
|
|
36
|
+
@Prop()
|
|
37
|
+
city: VKUserCity;
|
|
38
|
+
|
|
39
|
+
@Prop()
|
|
40
|
+
country: VKUserCity;
|
|
41
|
+
|
|
42
|
+
@Prop()
|
|
43
|
+
photo_100: string;
|
|
44
|
+
|
|
45
|
+
@Prop()
|
|
46
|
+
photo_200: string;
|
|
47
|
+
|
|
48
|
+
@Prop()
|
|
49
|
+
photo_max_orig: string;
|
|
50
|
+
|
|
51
|
+
@Prop()
|
|
52
|
+
timezone: number;
|
|
53
|
+
|
|
54
|
+
@Prop()
|
|
55
|
+
is_closed: boolean;
|
|
56
|
+
|
|
57
|
+
@Prop()
|
|
58
|
+
can_access_closed: boolean;
|
|
59
|
+
|
|
60
|
+
@Prop()
|
|
61
|
+
can_invite_to_chats: boolean;
|
|
62
|
+
|
|
63
|
+
@Prop()
|
|
64
|
+
is_app_ios: boolean;
|
|
65
|
+
|
|
66
|
+
@Prop()
|
|
67
|
+
is_vk_user_id?: boolean;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export const VKUserSchema = SchemaFactory.createForClass(VKUser);
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
|
|
2
|
-
import { HydratedDocument } from 'mongoose';
|
|
3
|
-
|
|
4
|
-
export type YAUserDocument = HydratedDocument<YAUser>;
|
|
5
|
-
|
|
6
|
-
@Schema()
|
|
7
|
-
export class YAUser {
|
|
8
|
-
@Prop()
|
|
9
|
-
userId: string;
|
|
10
|
-
|
|
11
|
-
@Prop()
|
|
12
|
-
fullName: string;
|
|
13
|
-
|
|
14
|
-
@Prop()
|
|
15
|
-
language: string;
|
|
16
|
-
|
|
17
|
-
@Prop()
|
|
18
|
-
avatarUrl: string;
|
|
19
|
-
|
|
20
|
-
@Prop()
|
|
21
|
-
isGuest: boolean;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export const YAUserSchema = SchemaFactory.createForClass(YAUser);
|
|
1
|
+
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
|
|
2
|
+
import { HydratedDocument } from 'mongoose';
|
|
3
|
+
|
|
4
|
+
export type YAUserDocument = HydratedDocument<YAUser>;
|
|
5
|
+
|
|
6
|
+
@Schema()
|
|
7
|
+
export class YAUser {
|
|
8
|
+
@Prop()
|
|
9
|
+
userId: string;
|
|
10
|
+
|
|
11
|
+
@Prop()
|
|
12
|
+
fullName: string;
|
|
13
|
+
|
|
14
|
+
@Prop()
|
|
15
|
+
language: string;
|
|
16
|
+
|
|
17
|
+
@Prop()
|
|
18
|
+
avatarUrl: string;
|
|
19
|
+
|
|
20
|
+
@Prop()
|
|
21
|
+
isGuest: boolean;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export const YAUserSchema = SchemaFactory.createForClass(YAUser);
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import { Prop, Schema, SchemaFactory, Virtual } from '@nestjs/mongoose';
|
|
2
|
-
import { Document, HydratedDocument } from 'mongoose';
|
|
3
|
-
|
|
4
|
-
export type WelcomeDocument = HydratedDocument<Welcome>;
|
|
5
|
-
|
|
6
|
-
@Schema({ collection: 'welcoms' })
|
|
7
|
-
export class Welcome {
|
|
8
|
-
@Virtual({
|
|
9
|
-
get: function (this: Document) {
|
|
10
|
-
return this._id.toString();
|
|
11
|
-
},
|
|
12
|
-
})
|
|
13
|
-
readonly ruleId: string;
|
|
14
|
-
|
|
15
|
-
@Prop()
|
|
16
|
-
id: string;
|
|
17
|
-
|
|
18
|
-
@Prop()
|
|
19
|
-
description: string;
|
|
20
|
-
|
|
21
|
-
@Prop()
|
|
22
|
-
descriptionEn: string;
|
|
23
|
-
|
|
24
|
-
@Prop()
|
|
25
|
-
text: string;
|
|
26
|
-
|
|
27
|
-
@Prop()
|
|
28
|
-
textEn: string;
|
|
29
|
-
|
|
30
|
-
@Prop()
|
|
31
|
-
icon: string;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
@Prop()
|
|
35
|
-
url: string;
|
|
36
|
-
|
|
37
|
-
@Prop()
|
|
38
|
-
game: string;
|
|
39
|
-
|
|
40
|
-
@Prop()
|
|
41
|
-
channel: string;
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
|
|
1
|
+
import { Prop, Schema, SchemaFactory, Virtual } from '@nestjs/mongoose';
|
|
2
|
+
import { Document, HydratedDocument } from 'mongoose';
|
|
3
|
+
|
|
4
|
+
export type WelcomeDocument = HydratedDocument<Welcome>;
|
|
5
|
+
|
|
6
|
+
@Schema({ collection: 'welcoms' })
|
|
7
|
+
export class Welcome {
|
|
8
|
+
@Virtual({
|
|
9
|
+
get: function (this: Document) {
|
|
10
|
+
return this._id.toString();
|
|
11
|
+
},
|
|
12
|
+
})
|
|
13
|
+
readonly ruleId: string;
|
|
14
|
+
|
|
15
|
+
@Prop()
|
|
16
|
+
id: string;
|
|
17
|
+
|
|
18
|
+
@Prop()
|
|
19
|
+
description: string;
|
|
20
|
+
|
|
21
|
+
@Prop()
|
|
22
|
+
descriptionEn: string;
|
|
23
|
+
|
|
24
|
+
@Prop()
|
|
25
|
+
text: string;
|
|
26
|
+
|
|
27
|
+
@Prop()
|
|
28
|
+
textEn: string;
|
|
29
|
+
|
|
30
|
+
@Prop()
|
|
31
|
+
icon: string;
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
@Prop()
|
|
35
|
+
url: string;
|
|
36
|
+
|
|
37
|
+
@Prop()
|
|
38
|
+
game: string;
|
|
39
|
+
|
|
40
|
+
@Prop()
|
|
41
|
+
channel: string;
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
|
|
46
46
|
export const WelcomeSchema = SchemaFactory.createForClass(Welcome);
|
package/src/utils.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export function getChannelRegExpFilter(channel: string) {
|
|
2
|
-
return new RegExp(`ALL|${channel}`, 'i');
|
|
3
|
-
}
|
|
1
|
+
export function getChannelRegExpFilter(channel: string) {
|
|
2
|
+
return new RegExp(`ALL|${channel}`, 'i');
|
|
3
|
+
}
|