jp.db.schemas 2.1.14 → 2.2.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 +6 -1
- package/dist/index.js.map +1 -1
- 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/repositories/setting.repository.d.ts +1 -1
- package/dist/repositories/setting.repository.d.ts.map +1 -1
- package/dist/repositories/setting.repository.js +1 -1
- package/dist/repositories/setting.repository.js.map +1 -1
- package/dist/repositories/settings-options.repository.d.ts +8 -0
- package/dist/repositories/settings-options.repository.d.ts.map +1 -0
- package/dist/repositories/settings-options.repository.js +39 -0
- package/dist/repositories/settings-options.repository.js.map +1 -0
- package/dist/schemas/product.schema.d.ts +20 -0
- package/dist/schemas/product.schema.d.ts.map +1 -1
- package/dist/schemas/product.schema.js +8 -0
- package/dist/schemas/product.schema.js.map +1 -1
- package/dist/schemas/setting.schema.d.ts +10 -40
- package/dist/schemas/setting.schema.d.ts.map +1 -1
- package/dist/schemas/setting.schema.js +9 -21
- package/dist/schemas/setting.schema.js.map +1 -1
- package/dist/schemas/settings_option.schema.d.ts +105 -0
- package/dist/schemas/settings_option.schema.d.ts.map +1 -0
- package/dist/schemas/settings_option.schema.js +57 -0
- package/dist/schemas/settings_option.schema.js.map +1 -0
- package/package.json +31 -31
- package/readme.md +3 -3
- package/src/index.ts +257 -251
- package/src/models/activity-log-user-login.interface copy.ts +9 -9
- package/src/models/activity-log-user-login.interface.ts +9 -9
- package/src/models/activity-log.enum.ts +7 -7
- package/src/models/currency.enum.ts +4 -4
- package/src/models/rating-add-bulk-item.interface.ts +6 -6
- package/src/models/rating-monthly-result.interface.ts +10 -10
- 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/achievement.repository.ts +18 -18
- package/src/repositories/activity-log.repository.ts +110 -110
- 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 +25 -25
- package/src/repositories/friend.repository.ts +19 -19
- package/src/repositories/game-result.repository.ts +15 -15
- package/src/repositories/game-statistic.repository.ts +21 -21
- package/src/repositories/index.ts +59 -57
- package/src/repositories/menu.repository.ts +21 -21
- package/src/repositories/notification.repository.ts +54 -54
- package/src/repositories/premium.repository.ts +17 -17
- package/src/repositories/products.repository.ts +29 -29
- package/src/repositories/purchase.repository.ts +95 -95
- package/src/repositories/rating.repository.ts +83 -83
- package/src/repositories/rooms.repository.ts +17 -17
- package/src/repositories/rule.repository.ts +17 -17
- 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/settings-options.repository.ts +20 -0
- 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 +151 -151
- package/src/repositories/welcome.repository.ts +17 -17
- package/src/schemas/achievement.schema.ts +40 -40
- package/src/schemas/activity_log.schema.ts +37 -37
- 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/friend.schema.ts +50 -50
- package/src/schemas/game_result.schema.ts +68 -68
- package/src/schemas/game_statistic.schema.ts +40 -40
- 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 +129 -123
- package/src/schemas/purchase.schema.ts +58 -58
- package/src/schemas/purchase_channel.schema.ts +31 -31
- package/src/schemas/rating.schema.ts +37 -37
- 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 +46 -55
- package/src/schemas/settings_option.schema.ts +37 -0
- 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 +182 -182
- 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
package/dist/index.d.ts
CHANGED
|
@@ -72,8 +72,10 @@ import type { WelcomeDocument } from './schemas/welcome.schema';
|
|
|
72
72
|
import { ActivityLog, ActivityLogSchema } from './schemas/activity_log.schema';
|
|
73
73
|
import type { ActivityLogDocument } from './schemas/activity_log.schema';
|
|
74
74
|
import type { IActivityLogUserLogin } from './models/activity-log-user-login.interface';
|
|
75
|
-
import {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
export {
|
|
75
|
+
import { SettingsOption, SettingsOptionSchema } from './schemas/settings_option.schema';
|
|
76
|
+
import type { SettingsOptionDocument } from './schemas/settings_option.schema';
|
|
77
|
+
import { AdminRepository, ArticleRepository, BannersRepository, ComplainsRepository, NotificationRepository, ProductsRepository, ScheduledTournamentsRepository, ServersRepository, UsersRepository, MenuRepository, GameStatisticRepository, FriendRepository, WelcomeRepository, RatingRepository, PremiumRepository, RuleRepository, DailyBonusRepository, SettingRepository, RoomsRepository, GameResultRepository, BalanceHistoryRepository, SimpleRoomsRepository, TournamentOneTableRoomsRepository, TournamentManyTablesRoomsRepository, ActivityLogRepository, AchievementRepository, PurchaseRepository, SettingsOptionsRepository } from './repositories';
|
|
78
|
+
export type { UserDocument, FBUserDocument, GoogleUserDocument, OKUserDocument, TGUserDocument, VKUserDocument, YAUserDocument, PurchaseDocument, ComplainDocument, NotificationDocument, ScheduledTournamentDocument, AdminDocument, RoomDocument, ArticleDocument, BannerDocument, ServerDocument, AchievementDocument, ChannelMessageDocument, FeatureDocument, ProductDocument, PurchaseChannelDocument, RatingDocument, GameStatisticDocument, SettingDocument, PremiumDocument, MenuDocument, WelcomeDocument, RuleDocument, FriendDocument, DailyBonusDocument, GameResultDocument, BalanceHistoryDocument, SimpleRoomDocument, TournamentOneTableRoomDocument, TournamentManyTablesRoomDocument, ActivityLogDocument, SettingsOptionDocument, };
|
|
79
|
+
export { User, UserSchema, FBUser, FBUserSchema, GoogleUser, GoogleUserSchema, OKUser, OKUserSchema, TGUser, TGUserSchema, VKUser, VKUserSchema, YAUser, YAUserSchema, Purchase, PurchaseSchema, Complain, ComplainSchema, Notification, NotificationSchema, ScheduledTournament, ScheduledTournamentSchema, Admin, AdminSchema, Room, RoomSchema, Article, ArticleSchema, Banner, BannerSchema, Server, ServerSchema, Achievement, AchievementSchema, ChannelMessage, ChannelMessageSchema, Feature, FeatureSchema, Product, ProductSchema, PurchaseChannel, PurchaseChannelSchema, Rating, RatingSchema, IRatingMonthlyResult, Setting, SettingSchema, GameStatistic, GameStatisticSchema, Menu, MenuSchema, DailyBonus, DailyBonusSchema, Rule, RuleSchema, Premium, PremiumSchema, Welcome, WelcomeSchema, Friend, FriendSchema, GameResult, GameResultSchema, BalanceHistory, BalanceHistorySchema, SimpleRoom, SimpleRoomSchema, TournamentOneTableRoom, TournamentOneTableRoomSchema, TournamentManyTablesRoom, TournamentManyTablesRoomSchema, ActivityLog, ActivityLogSchema, IActivityLogUserLogin, SettingsOption, SettingsOptionSchema, };
|
|
80
|
+
export { AdminRepository, ArticleRepository, BannersRepository, ComplainsRepository, NotificationRepository, ProductsRepository, ScheduledTournamentsRepository, ServersRepository, UsersRepository, MenuRepository, DailyBonusRepository, PremiumRepository, RuleRepository, RatingRepository, GameStatisticRepository, FriendRepository, WelcomeRepository, SettingRepository, RoomsRepository, GameResultRepository, BalanceHistoryRepository, SimpleRoomsRepository, TournamentOneTableRoomsRepository, TournamentManyTablesRoomsRepository, ActivityLogRepository, AchievementRepository, PurchaseRepository, SettingsOptionsRepository, };
|
|
79
81
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MenuSchema = exports.Menu = exports.GameStatisticSchema = exports.GameStatistic = exports.SettingSchema = exports.Setting = exports.RatingSchema = exports.Rating = exports.PurchaseChannelSchema = exports.PurchaseChannel = exports.ProductSchema = exports.Product = exports.FeatureSchema = exports.Feature = exports.ChannelMessageSchema = exports.ChannelMessage = exports.AchievementSchema = exports.Achievement = exports.ServerSchema = exports.Server = exports.BannerSchema = exports.Banner = exports.ArticleSchema = exports.Article = exports.RoomSchema = exports.Room = exports.AdminSchema = exports.Admin = exports.ScheduledTournamentSchema = exports.ScheduledTournament = exports.NotificationSchema = exports.Notification = exports.ComplainSchema = exports.Complain = exports.PurchaseSchema = exports.Purchase = exports.YAUserSchema = exports.YAUser = exports.VKUserSchema = exports.VKUser = exports.TGUserSchema = exports.TGUser = exports.OKUserSchema = exports.OKUser = exports.GoogleUserSchema = exports.GoogleUser = exports.FBUserSchema = exports.FBUser = exports.UserSchema = exports.User = void 0;
|
|
4
|
-
exports.
|
|
4
|
+
exports.AchievementRepository = exports.ActivityLogRepository = exports.TournamentManyTablesRoomsRepository = exports.TournamentOneTableRoomsRepository = exports.SimpleRoomsRepository = exports.BalanceHistoryRepository = exports.GameResultRepository = exports.RoomsRepository = exports.SettingRepository = exports.WelcomeRepository = exports.FriendRepository = exports.GameStatisticRepository = exports.RatingRepository = exports.RuleRepository = exports.PremiumRepository = exports.DailyBonusRepository = exports.MenuRepository = exports.UsersRepository = exports.ServersRepository = exports.ScheduledTournamentsRepository = exports.ProductsRepository = exports.NotificationRepository = exports.ComplainsRepository = exports.BannersRepository = exports.ArticleRepository = exports.AdminRepository = exports.SettingsOptionSchema = exports.SettingsOption = exports.ActivityLogSchema = exports.ActivityLog = exports.TournamentManyTablesRoomSchema = exports.TournamentManyTablesRoom = exports.TournamentOneTableRoomSchema = exports.TournamentOneTableRoom = exports.SimpleRoomSchema = exports.SimpleRoom = exports.BalanceHistorySchema = exports.BalanceHistory = exports.GameResultSchema = exports.GameResult = exports.FriendSchema = exports.Friend = exports.WelcomeSchema = exports.Welcome = exports.PremiumSchema = exports.Premium = exports.RuleSchema = exports.Rule = exports.DailyBonusSchema = exports.DailyBonus = void 0;
|
|
5
|
+
exports.SettingsOptionsRepository = exports.PurchaseRepository = void 0;
|
|
5
6
|
const user_schema_1 = require("./schemas/user.schema");
|
|
6
7
|
Object.defineProperty(exports, "User", { enumerable: true, get: function () { return user_schema_1.User; } });
|
|
7
8
|
Object.defineProperty(exports, "UserSchema", { enumerable: true, get: function () { return user_schema_1.UserSchema; } });
|
|
@@ -110,6 +111,9 @@ Object.defineProperty(exports, "WelcomeSchema", { enumerable: true, get: functio
|
|
|
110
111
|
const activity_log_schema_1 = require("./schemas/activity_log.schema");
|
|
111
112
|
Object.defineProperty(exports, "ActivityLog", { enumerable: true, get: function () { return activity_log_schema_1.ActivityLog; } });
|
|
112
113
|
Object.defineProperty(exports, "ActivityLogSchema", { enumerable: true, get: function () { return activity_log_schema_1.ActivityLogSchema; } });
|
|
114
|
+
const settings_option_schema_1 = require("./schemas/settings_option.schema");
|
|
115
|
+
Object.defineProperty(exports, "SettingsOption", { enumerable: true, get: function () { return settings_option_schema_1.SettingsOption; } });
|
|
116
|
+
Object.defineProperty(exports, "SettingsOptionSchema", { enumerable: true, get: function () { return settings_option_schema_1.SettingsOptionSchema; } });
|
|
113
117
|
const repositories_1 = require("./repositories");
|
|
114
118
|
Object.defineProperty(exports, "AdminRepository", { enumerable: true, get: function () { return repositories_1.AdminRepository; } });
|
|
115
119
|
Object.defineProperty(exports, "ArticleRepository", { enumerable: true, get: function () { return repositories_1.ArticleRepository; } });
|
|
@@ -138,4 +142,5 @@ Object.defineProperty(exports, "TournamentManyTablesRoomsRepository", { enumerab
|
|
|
138
142
|
Object.defineProperty(exports, "ActivityLogRepository", { enumerable: true, get: function () { return repositories_1.ActivityLogRepository; } });
|
|
139
143
|
Object.defineProperty(exports, "AchievementRepository", { enumerable: true, get: function () { return repositories_1.AchievementRepository; } });
|
|
140
144
|
Object.defineProperty(exports, "PurchaseRepository", { enumerable: true, get: function () { return repositories_1.PurchaseRepository; } });
|
|
145
|
+
Object.defineProperty(exports, "SettingsOptionsRepository", { enumerable: true, get: function () { return repositories_1.SettingsOptionsRepository; } });
|
|
141
146
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -25,5 +25,6 @@ import { TournamentManyTablesRoomsRepository } from './tournament-many-tables-ro
|
|
|
25
25
|
import { ActivityLogRepository } from './activity-log.repository';
|
|
26
26
|
import { AchievementRepository } from './achievement.repository';
|
|
27
27
|
import { PurchaseRepository } from './purchase.repository';
|
|
28
|
-
|
|
28
|
+
import { SettingsOptionsRepository } from './settings-options.repository';
|
|
29
|
+
export { AdminRepository, ArticleRepository, BannersRepository, ComplainsRepository, NotificationRepository, ProductsRepository, ScheduledTournamentsRepository, ServersRepository, UsersRepository, MenuRepository, RatingRepository, GameStatisticRepository, RuleRepository, FriendRepository, SettingRepository, PremiumRepository, WelcomeRepository, DailyBonusRepository, RoomsRepository, GameResultRepository, BalanceHistoryRepository, SimpleRoomsRepository, TournamentOneTableRoomsRepository, TournamentManyTablesRoomsRepository, ActivityLogRepository, AchievementRepository, PurchaseRepository, SettingsOptionsRepository, };
|
|
29
30
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/repositories/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,oCAAoC,CAAC;AACpF,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AACtE,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,iCAAiC,EAAE,MAAM,yCAAyC,CAAC;AAC5F,OAAO,EAAE,mCAAmC,EAAE,MAAM,2CAA2C,CAAC;AAChG,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/repositories/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,8BAA8B,EAAE,MAAM,oCAAoC,CAAC;AACpF,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AACtE,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,iCAAiC,EAAE,MAAM,yCAAyC,CAAC;AAC5F,OAAO,EAAE,mCAAmC,EAAE,MAAM,2CAA2C,CAAC;AAChG,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AAE1E,OAAO,EACH,eAAe,EACf,iBAAiB,EACjB,iBAAiB,EACjB,mBAAmB,EACnB,sBAAsB,EACtB,kBAAkB,EAClB,8BAA8B,EAC9B,iBAAiB,EACjB,eAAe,EACf,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,cAAc,EACd,gBAAgB,EAChB,iBAAiB,EACjB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,EACf,oBAAoB,EACpB,wBAAwB,EACxB,qBAAqB,EACrB,iCAAiC,EACjC,mCAAmC,EACnC,qBAAqB,EACrB,qBAAqB,EACrB,kBAAkB,EAClB,yBAAyB,GAC5B,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PurchaseRepository = exports.AchievementRepository = exports.ActivityLogRepository = exports.TournamentManyTablesRoomsRepository = exports.TournamentOneTableRoomsRepository = exports.SimpleRoomsRepository = exports.BalanceHistoryRepository = exports.GameResultRepository = exports.RoomsRepository = exports.DailyBonusRepository = exports.WelcomeRepository = exports.PremiumRepository = exports.SettingRepository = exports.FriendRepository = exports.RuleRepository = exports.GameStatisticRepository = exports.RatingRepository = exports.MenuRepository = exports.UsersRepository = exports.ServersRepository = exports.ScheduledTournamentsRepository = exports.ProductsRepository = exports.NotificationRepository = exports.ComplainsRepository = exports.BannersRepository = exports.ArticleRepository = exports.AdminRepository = void 0;
|
|
3
|
+
exports.SettingsOptionsRepository = exports.PurchaseRepository = exports.AchievementRepository = exports.ActivityLogRepository = exports.TournamentManyTablesRoomsRepository = exports.TournamentOneTableRoomsRepository = exports.SimpleRoomsRepository = exports.BalanceHistoryRepository = exports.GameResultRepository = exports.RoomsRepository = exports.DailyBonusRepository = exports.WelcomeRepository = exports.PremiumRepository = exports.SettingRepository = exports.FriendRepository = exports.RuleRepository = exports.GameStatisticRepository = exports.RatingRepository = exports.MenuRepository = exports.UsersRepository = exports.ServersRepository = exports.ScheduledTournamentsRepository = exports.ProductsRepository = exports.NotificationRepository = exports.ComplainsRepository = exports.BannersRepository = exports.ArticleRepository = exports.AdminRepository = void 0;
|
|
4
4
|
const admin_repository_1 = require("./admin.repository");
|
|
5
5
|
Object.defineProperty(exports, "AdminRepository", { enumerable: true, get: function () { return admin_repository_1.AdminRepository; } });
|
|
6
6
|
const article_repository_1 = require("./article.repository");
|
|
@@ -55,4 +55,6 @@ const achievement_repository_1 = require("./achievement.repository");
|
|
|
55
55
|
Object.defineProperty(exports, "AchievementRepository", { enumerable: true, get: function () { return achievement_repository_1.AchievementRepository; } });
|
|
56
56
|
const purchase_repository_1 = require("./purchase.repository");
|
|
57
57
|
Object.defineProperty(exports, "PurchaseRepository", { enumerable: true, get: function () { return purchase_repository_1.PurchaseRepository; } });
|
|
58
|
+
const settings_options_repository_1 = require("./settings-options.repository");
|
|
59
|
+
Object.defineProperty(exports, "SettingsOptionsRepository", { enumerable: true, get: function () { return settings_options_repository_1.SettingsOptionsRepository; } });
|
|
58
60
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/repositories/index.ts"],"names":[],"mappings":";;;AAAA,yDAAqD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/repositories/index.ts"],"names":[],"mappings":";;;AAAA,yDAAqD;AA8BjD,gGA9BK,kCAAe,OA8BL;AA7BnB,6DAAyD;AA8BrD,kGA9BK,sCAAiB,OA8BL;AA7BrB,6DAAyD;AA8BrD,kGA9BK,sCAAiB,OA8BL;AA7BrB,iEAA6D;AA8BzD,oGA9BK,0CAAmB,OA8BL;AA7BvB,uEAAmE;AA8B/D,uGA9BK,gDAAsB,OA8BL;AA7B1B,+DAA2D;AA8BvD,mGA9BK,wCAAkB,OA8BL;AA7BtB,yFAAoF;AA8BhF,+GA9BK,iEAA8B,OA8BL;AA7BlC,6DAAyD;AA8BrD,kGA9BK,sCAAiB,OA8BL;AA7BrB,yDAAqD;AA8BjD,gGA9BK,kCAAe,OA8BL;AA7BnB,uDAAmD;AA8B/C,+FA9BK,gCAAc,OA8BL;AA7BlB,uDAAmD;AAgC/C,+FAhCK,gCAAc,OAgCL;AA/BlB,2DAAuD;AA6BnD,iGA7BK,oCAAgB,OA6BL;AA5BpB,2EAAsE;AA6BlE,wGA7BK,mDAAuB,OA6BL;AA5B3B,2DAAuD;AA8BnD,iGA9BK,oCAAgB,OA8BL;AA7BpB,6DAAyD;AA8BrD,kGA9BK,sCAAiB,OA8BL;AA7BrB,6DAAyD;AA8BrD,kGA9BK,sCAAiB,OA8BL;AA7BrB,6DAAyD;AA8BrD,kGA9BK,sCAAiB,OA8BL;AA7BrB,qEAAgE;AA8B5D,qGA9BK,6CAAoB,OA8BL;AA7BxB,yDAAqD;AA8BjD,gGA9BK,kCAAe,OA8BL;AA7BnB,qEAAgE;AA8B5D,qGA9BK,6CAAoB,OA8BL;AA7BxB,6EAAwE;AA8BpE,yGA9BK,qDAAwB,OA8BL;AA7B5B,uEAAkE;AA8B9D,sGA9BK,+CAAqB,OA8BL;AA7BzB,mGAA4F;AA8BxF,kHA9BK,yEAAiC,OA8BL;AA7BrC,uGAAgG;AA8B5F,oHA9BK,6EAAmC,OA8BL;AA7BvC,uEAAkE;AA8B9D,sGA9BK,+CAAqB,OA8BL;AA7BzB,qEAAiE;AA8B7D,sGA9BK,8CAAqB,OA8BL;AA7BzB,+DAA2D;AA8BvD,mGA9BK,wCAAkB,OA8BL;AA7BtB,+EAA0E;AA8BtE,0GA9BK,uDAAyB,OA8BL"}
|
|
@@ -3,6 +3,6 @@ import { Setting, SettingDocument } from '..';
|
|
|
3
3
|
export declare class SettingRepository {
|
|
4
4
|
private settingModel;
|
|
5
5
|
constructor(settingModel: Model<SettingDocument>);
|
|
6
|
-
|
|
6
|
+
findSettings(channel: string, game: string): Promise<Array<Setting> | null>;
|
|
7
7
|
}
|
|
8
8
|
//# sourceMappingURL=setting.repository.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setting.repository.d.ts","sourceRoot":"","sources":["../../src/repositories/setting.repository.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEjC,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,IAAI,CAAC;AAG9C,qBACa,iBAAiB;IACc,OAAO,CAAC,YAAY;gBAAZ,YAAY,EAAE,KAAK,CAAC,eAAe,CAAC;IAG9E,
|
|
1
|
+
{"version":3,"file":"setting.repository.d.ts","sourceRoot":"","sources":["../../src/repositories/setting.repository.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEjC,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,IAAI,CAAC;AAG9C,qBACa,iBAAiB;IACc,OAAO,CAAC,YAAY;gBAAZ,YAAY,EAAE,KAAK,CAAC,eAAe,CAAC;IAG9E,YAAY,CAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;CAOrF"}
|
|
@@ -22,7 +22,7 @@ let SettingRepository = class SettingRepository {
|
|
|
22
22
|
constructor(settingModel) {
|
|
23
23
|
this.settingModel = settingModel;
|
|
24
24
|
}
|
|
25
|
-
async
|
|
25
|
+
async findSettings(channel, game) {
|
|
26
26
|
return this.settingModel
|
|
27
27
|
.find({
|
|
28
28
|
channels: (0, utils_1.getChannelRegExpFilter)(channel),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setting.repository.js","sourceRoot":"","sources":["../../src/repositories/setting.repository.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA4C;AAC5C,+CAA+C;AAC/C,uCAAiC;AAEjC,0BAA8C;AAC9C,oCAAkD;AAG3C,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;IAC1B,YAAgD,YAAoC;QAApC,iBAAY,GAAZ,YAAY,CAAwB;IACpF,CAAC;IAED,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"setting.repository.js","sourceRoot":"","sources":["../../src/repositories/setting.repository.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA4C;AAC5C,+CAA+C;AAC/C,uCAAiC;AAEjC,0BAA8C;AAC9C,oCAAkD;AAG3C,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;IAC1B,YAAgD,YAAoC;QAApC,iBAAY,GAAZ,YAAY,CAAwB;IACpF,CAAC;IAED,KAAK,CAAC,YAAY,CAAE,OAAe,EAAE,IAAY;QAC7C,OAAO,IAAI,CAAC,YAAY;aACnB,IAAI,CAAC;YACF,QAAQ,EAAE,IAAA,8BAAsB,EAAC,OAAO,CAAC;SAC5C,CAAC;aACD,IAAI,EAAE,CAAC;IAChB,CAAC;CACJ,CAAA;AAXY,8CAAiB;4BAAjB,iBAAiB;IAD7B,IAAA,mBAAU,GAAE;IAEK,WAAA,IAAA,sBAAW,EAAC,WAAO,CAAC,IAAI,CAAC,CAAA;qCAAuB,gBAAK;GAD1D,iBAAiB,CAW7B"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Model } from 'mongoose';
|
|
2
|
+
import { SettingsOption, SettingsOptionDocument } from '..';
|
|
3
|
+
export declare class SettingsOptionsRepository {
|
|
4
|
+
private settingOptionsModel;
|
|
5
|
+
constructor(settingOptionsModel: Model<SettingsOptionDocument>);
|
|
6
|
+
findSettingsOptions(channel: string, game: string): Promise<Array<SettingsOption> | null>;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=settings-options.repository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"settings-options.repository.d.ts","sourceRoot":"","sources":["../../src/repositories/settings-options.repository.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEjC,OAAO,EAAE,cAAc,EAAE,sBAAsB,EAAE,MAAM,IAAI,CAAC;AAG5D,qBACa,yBAAyB;IACa,OAAO,CAAC,mBAAmB;gBAAnB,mBAAmB,EAAE,KAAK,CAAC,sBAAsB,CAAC;IAGnG,mBAAmB,CAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;CAOnG"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.SettingsOptionsRepository = void 0;
|
|
16
|
+
const common_1 = require("@nestjs/common");
|
|
17
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
18
|
+
const mongoose_2 = require("mongoose");
|
|
19
|
+
const __1 = require("..");
|
|
20
|
+
const utils_1 = require("../utils");
|
|
21
|
+
let SettingsOptionsRepository = class SettingsOptionsRepository {
|
|
22
|
+
constructor(settingOptionsModel) {
|
|
23
|
+
this.settingOptionsModel = settingOptionsModel;
|
|
24
|
+
}
|
|
25
|
+
async findSettingsOptions(channel, game) {
|
|
26
|
+
return this.settingOptionsModel
|
|
27
|
+
.find({
|
|
28
|
+
channels: (0, utils_1.getChannelRegExpFilter)(channel),
|
|
29
|
+
})
|
|
30
|
+
.exec();
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
exports.SettingsOptionsRepository = SettingsOptionsRepository;
|
|
34
|
+
exports.SettingsOptionsRepository = SettingsOptionsRepository = __decorate([
|
|
35
|
+
(0, common_1.Injectable)(),
|
|
36
|
+
__param(0, (0, mongoose_1.InjectModel)(__1.SettingsOption.name)),
|
|
37
|
+
__metadata("design:paramtypes", [mongoose_2.Model])
|
|
38
|
+
], SettingsOptionsRepository);
|
|
39
|
+
//# sourceMappingURL=settings-options.repository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"settings-options.repository.js","sourceRoot":"","sources":["../../src/repositories/settings-options.repository.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA4C;AAC5C,+CAA+C;AAC/C,uCAAiC;AAEjC,0BAA4D;AAC5D,oCAAkD;AAG3C,IAAM,yBAAyB,GAA/B,MAAM,yBAAyB;IAClC,YAAuD,mBAAkD;QAAlD,wBAAmB,GAAnB,mBAAmB,CAA+B;IACzG,CAAC;IAED,KAAK,CAAC,mBAAmB,CAAE,OAAe,EAAE,IAAY;QACpD,OAAO,IAAI,CAAC,mBAAmB;aAC1B,IAAI,CAAC;YACF,QAAQ,EAAE,IAAA,8BAAsB,EAAC,OAAO,CAAC;SAC5C,CAAC;aACD,IAAI,EAAE,CAAC;IAChB,CAAC;CACJ,CAAA;AAXY,8DAAyB;oCAAzB,yBAAyB;IADrC,IAAA,mBAAU,GAAE;IAEK,WAAA,IAAA,sBAAW,EAAC,kBAAc,CAAC,IAAI,CAAC,CAAA;qCAA8B,gBAAK;GADxE,yBAAyB,CAWrC"}
|
|
@@ -37,6 +37,8 @@ export declare class Product {
|
|
|
37
37
|
period?: string;
|
|
38
38
|
type?: string;
|
|
39
39
|
game?: string;
|
|
40
|
+
isProduct: boolean;
|
|
41
|
+
enableOnlyForPremium: boolean;
|
|
40
42
|
}
|
|
41
43
|
export declare const ProductSchema: import("mongoose").Schema<Product, import("mongoose").Model<Product, any, any, any, (Document<unknown, any, Product, any, import("mongoose").DefaultSchemaOptions> & Product & {
|
|
42
44
|
_id: import("mongoose").Types.ObjectId;
|
|
@@ -381,5 +383,23 @@ export declare const ProductSchema: import("mongoose").Schema<Product, import("m
|
|
|
381
383
|
}, "id"> & {
|
|
382
384
|
id: string;
|
|
383
385
|
}>;
|
|
386
|
+
isProduct?: import("mongoose").SchemaDefinitionProperty<boolean, Product, Document<unknown, {}, Product, {
|
|
387
|
+
id: string;
|
|
388
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
389
|
+
_id: import("mongoose").Types.ObjectId;
|
|
390
|
+
} & {
|
|
391
|
+
__v: number;
|
|
392
|
+
}, "id"> & {
|
|
393
|
+
id: string;
|
|
394
|
+
}>;
|
|
395
|
+
enableOnlyForPremium?: import("mongoose").SchemaDefinitionProperty<boolean, Product, Document<unknown, {}, Product, {
|
|
396
|
+
id: string;
|
|
397
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
398
|
+
_id: import("mongoose").Types.ObjectId;
|
|
399
|
+
} & {
|
|
400
|
+
__v: number;
|
|
401
|
+
}, "id"> & {
|
|
402
|
+
id: string;
|
|
403
|
+
}>;
|
|
384
404
|
}, Product>;
|
|
385
405
|
//# sourceMappingURL=product.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/product.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;AAExD,qBACa,OAAO;IAMhB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAG3B,KAAK,EAAE,MAAM,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAGjB,UAAU,EAAE,MAAM,CAAC;IAGnB,WAAW,EAAE,MAAM,CAAC;IAGpB,aAAa,EAAE,MAAM,CAAC;IAGtB,mBAAmB,EAAE,MAAM,CAAC;IAG5B,qBAAqB,EAAE,MAAM,CAAC;IAG9B,cAAc,EAAE,MAAM,CAAC;IAGvB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,MAAM,CAAC;IAGjB,MAAM,EAAE,OAAO,CAAC;IAGhB,KAAK,EAAE,MAAM,CAAC;IAGd,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,YAAY,EAAE,OAAO,CAAC;IAKtB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAGzB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,eAAe,CAAC,EAAE,MAAM,CAAC;IAGzB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,IAAI,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"product.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/product.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;AAExD,qBACa,OAAO;IAMhB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAG3B,KAAK,EAAE,MAAM,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAGjB,UAAU,EAAE,MAAM,CAAC;IAGnB,WAAW,EAAE,MAAM,CAAC;IAGpB,aAAa,EAAE,MAAM,CAAC;IAGtB,mBAAmB,EAAE,MAAM,CAAC;IAG5B,qBAAqB,EAAE,MAAM,CAAC;IAG9B,cAAc,EAAE,MAAM,CAAC;IAGvB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,MAAM,CAAC;IAGjB,MAAM,EAAE,OAAO,CAAC;IAGhB,KAAK,EAAE,MAAM,CAAC;IAGd,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,YAAY,EAAE,OAAO,CAAC;IAKtB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAGzB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,eAAe,CAAC,EAAE,MAAM,CAAC;IAGzB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,SAAS,EAAE,OAAO,CAAC;IAGnB,oBAAoB,EAAE,OAAO,CAAC;CACjC;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAwC,CAAC"}
|
|
@@ -162,6 +162,14 @@ __decorate([
|
|
|
162
162
|
(0, mongoose_1.Prop)(),
|
|
163
163
|
__metadata("design:type", String)
|
|
164
164
|
], Product.prototype, "game", void 0);
|
|
165
|
+
__decorate([
|
|
166
|
+
(0, mongoose_1.Prop)({ default: false }),
|
|
167
|
+
__metadata("design:type", Boolean)
|
|
168
|
+
], Product.prototype, "isProduct", void 0);
|
|
169
|
+
__decorate([
|
|
170
|
+
(0, mongoose_1.Prop)({ default: false }),
|
|
171
|
+
__metadata("design:type", Boolean)
|
|
172
|
+
], Product.prototype, "enableOnlyForPremium", void 0);
|
|
165
173
|
exports.Product = Product = __decorate([
|
|
166
174
|
(0, mongoose_1.Schema)()
|
|
167
175
|
], Product);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product.schema.js","sourceRoot":"","sources":["../../src/schemas/product.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;
|
|
1
|
+
{"version":3,"file":"product.schema.js","sourceRoot":"","sources":["../../src/schemas/product.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CAwHnB,CAAA;AAxHY,0BAAO;AAMP;IALR,IAAA,kBAAO,EAAC;QACL,GAAG,EAAE;YACD,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC/B,CAAC;KACJ,CAAC;;0CACyB;AAG3B;IADC,IAAA,eAAI,GAAE;;sCACO;AAGd;IADC,IAAA,eAAI,GAAE;;wCACS;AAGhB;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;2CACY;AAGnB;IADC,IAAA,eAAI,GAAE;;4CACa;AAGpB;IADC,IAAA,eAAI,GAAE;;8CACe;AAGtB;IADC,IAAA,eAAI,GAAE;;oDACqB;AAG5B;IADC,IAAA,eAAI,GAAE;;sDACuB;AAG9B;IADC,IAAA,eAAI,GAAE;;+CACgB;AAGvB;IADC,IAAA,eAAI,GAAE;;iDACkB;AAGzB;IADC,IAAA,eAAI,GAAE;;uCACQ;AAGf;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;uCACQ;AAGf;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;uCACS;AAGhB;IADC,IAAA,eAAI,GAAE;;sCACO;AAGd;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;yCACW;AAGlB;IADC,IAAA,eAAI,GAAE;;6CACe;AAKtB;IADC,IAAA,eAAI,GAAE;;yCACkB;AAGzB;IADC,IAAA,eAAI,GAAE;;sCACQ;AAGf;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;gDACkB;AAGzB;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;6CACe;AAGtB;IADC,IAAA,eAAI,GAAE;;sCACQ;AAGf;IADC,IAAA,eAAI,GAAE;;uCACS;AAGhB;IADC,IAAA,eAAI,GAAE;;qCACO;AAGd;IADC,IAAA,eAAI,GAAE;;qCACO;AAGd;IADC,IAAA,eAAI,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;0CACN;AAGnB;IADC,IAAA,eAAI,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;qDACK;kBAvHrB,OAAO;IADnB,IAAA,iBAAM,GAAE;GACI,OAAO,CAwHnB;AAEY,QAAA,aAAa,GAAG,wBAAa,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC"}
|
|
@@ -2,19 +2,16 @@ import { Document, HydratedDocument } from 'mongoose';
|
|
|
2
2
|
export type SettingDocument = HydratedDocument<Setting>;
|
|
3
3
|
export declare class Setting {
|
|
4
4
|
readonly settingId: string;
|
|
5
|
-
|
|
5
|
+
position: number;
|
|
6
6
|
title: string;
|
|
7
7
|
titleEn: string;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
code: string;
|
|
11
|
-
productId?: string;
|
|
12
|
-
url: string;
|
|
8
|
+
subtitle: string;
|
|
9
|
+
subtitleEn: string;
|
|
13
10
|
icon: string;
|
|
14
|
-
|
|
11
|
+
hasChevron: boolean;
|
|
12
|
+
url: string;
|
|
15
13
|
game: string;
|
|
16
14
|
channel: string;
|
|
17
|
-
hasChevron: boolean;
|
|
18
15
|
}
|
|
19
16
|
export declare const SettingSchema: import("mongoose").Schema<Setting, import("mongoose").Model<Setting, any, any, any, (Document<unknown, any, Setting, any, import("mongoose").DefaultSchemaOptions> & Setting & {
|
|
20
17
|
_id: import("mongoose").Types.ObjectId;
|
|
@@ -44,7 +41,7 @@ export declare const SettingSchema: import("mongoose").Schema<Setting, import("m
|
|
|
44
41
|
}, "id"> & {
|
|
45
42
|
id: string;
|
|
46
43
|
}>;
|
|
47
|
-
|
|
44
|
+
position?: import("mongoose").SchemaDefinitionProperty<number, Setting, Document<unknown, {}, Setting, {
|
|
48
45
|
id: string;
|
|
49
46
|
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
50
47
|
_id: import("mongoose").Types.ObjectId;
|
|
@@ -71,7 +68,7 @@ export declare const SettingSchema: import("mongoose").Schema<Setting, import("m
|
|
|
71
68
|
}, "id"> & {
|
|
72
69
|
id: string;
|
|
73
70
|
}>;
|
|
74
|
-
|
|
71
|
+
subtitle?: import("mongoose").SchemaDefinitionProperty<string, Setting, Document<unknown, {}, Setting, {
|
|
75
72
|
id: string;
|
|
76
73
|
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
77
74
|
_id: import("mongoose").Types.ObjectId;
|
|
@@ -80,7 +77,7 @@ export declare const SettingSchema: import("mongoose").Schema<Setting, import("m
|
|
|
80
77
|
}, "id"> & {
|
|
81
78
|
id: string;
|
|
82
79
|
}>;
|
|
83
|
-
|
|
80
|
+
subtitleEn?: import("mongoose").SchemaDefinitionProperty<string, Setting, Document<unknown, {}, Setting, {
|
|
84
81
|
id: string;
|
|
85
82
|
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
86
83
|
_id: import("mongoose").Types.ObjectId;
|
|
@@ -89,7 +86,7 @@ export declare const SettingSchema: import("mongoose").Schema<Setting, import("m
|
|
|
89
86
|
}, "id"> & {
|
|
90
87
|
id: string;
|
|
91
88
|
}>;
|
|
92
|
-
|
|
89
|
+
icon?: import("mongoose").SchemaDefinitionProperty<string, Setting, Document<unknown, {}, Setting, {
|
|
93
90
|
id: string;
|
|
94
91
|
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
95
92
|
_id: import("mongoose").Types.ObjectId;
|
|
@@ -98,7 +95,7 @@ export declare const SettingSchema: import("mongoose").Schema<Setting, import("m
|
|
|
98
95
|
}, "id"> & {
|
|
99
96
|
id: string;
|
|
100
97
|
}>;
|
|
101
|
-
|
|
98
|
+
hasChevron?: import("mongoose").SchemaDefinitionProperty<boolean, Setting, Document<unknown, {}, Setting, {
|
|
102
99
|
id: string;
|
|
103
100
|
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
104
101
|
_id: import("mongoose").Types.ObjectId;
|
|
@@ -116,24 +113,6 @@ export declare const SettingSchema: import("mongoose").Schema<Setting, import("m
|
|
|
116
113
|
}, "id"> & {
|
|
117
114
|
id: string;
|
|
118
115
|
}>;
|
|
119
|
-
icon?: import("mongoose").SchemaDefinitionProperty<string, Setting, Document<unknown, {}, Setting, {
|
|
120
|
-
id: string;
|
|
121
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
122
|
-
_id: import("mongoose").Types.ObjectId;
|
|
123
|
-
} & {
|
|
124
|
-
__v: number;
|
|
125
|
-
}, "id"> & {
|
|
126
|
-
id: string;
|
|
127
|
-
}>;
|
|
128
|
-
premium?: import("mongoose").SchemaDefinitionProperty<boolean, Setting, Document<unknown, {}, Setting, {
|
|
129
|
-
id: string;
|
|
130
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
131
|
-
_id: import("mongoose").Types.ObjectId;
|
|
132
|
-
} & {
|
|
133
|
-
__v: number;
|
|
134
|
-
}, "id"> & {
|
|
135
|
-
id: string;
|
|
136
|
-
}>;
|
|
137
116
|
game?: import("mongoose").SchemaDefinitionProperty<string, Setting, Document<unknown, {}, Setting, {
|
|
138
117
|
id: string;
|
|
139
118
|
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
@@ -152,14 +131,5 @@ export declare const SettingSchema: import("mongoose").Schema<Setting, import("m
|
|
|
152
131
|
}, "id"> & {
|
|
153
132
|
id: string;
|
|
154
133
|
}>;
|
|
155
|
-
hasChevron?: import("mongoose").SchemaDefinitionProperty<boolean, Setting, Document<unknown, {}, Setting, {
|
|
156
|
-
id: string;
|
|
157
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Setting & {
|
|
158
|
-
_id: import("mongoose").Types.ObjectId;
|
|
159
|
-
} & {
|
|
160
|
-
__v: number;
|
|
161
|
-
}, "id"> & {
|
|
162
|
-
id: string;
|
|
163
|
-
}>;
|
|
164
134
|
}, Setting>;
|
|
165
135
|
//# sourceMappingURL=setting.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setting.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/setting.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;AAExD,qBACa,OAAO;IAMhB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAG3B,
|
|
1
|
+
{"version":3,"file":"setting.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/setting.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;AAExD,qBACa,OAAO;IAMhB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAG3B,QAAQ,EAAE,MAAM,CAAC;IAGjB,KAAK,EAAE,MAAM,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAA;IAGhB,UAAU,EAAE,MAAM,CAAA;IAGlB,IAAI,EAAE,MAAM,CAAC;IAGb,UAAU,EAAE,OAAO,CAAC;IAGpB,GAAG,EAAE,MAAM,CAAC;IAGZ,IAAI,EAAE,MAAM,CAAC;IAGb,OAAO,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAwC,CAAC"}
|
|
@@ -24,8 +24,8 @@ __decorate([
|
|
|
24
24
|
], Setting.prototype, "settingId", void 0);
|
|
25
25
|
__decorate([
|
|
26
26
|
(0, mongoose_1.Prop)(),
|
|
27
|
-
__metadata("design:type",
|
|
28
|
-
], Setting.prototype, "
|
|
27
|
+
__metadata("design:type", Number)
|
|
28
|
+
], Setting.prototype, "position", void 0);
|
|
29
29
|
__decorate([
|
|
30
30
|
(0, mongoose_1.Prop)(),
|
|
31
31
|
__metadata("design:type", String)
|
|
@@ -34,26 +34,14 @@ __decorate([
|
|
|
34
34
|
(0, mongoose_1.Prop)(),
|
|
35
35
|
__metadata("design:type", String)
|
|
36
36
|
], Setting.prototype, "titleEn", void 0);
|
|
37
|
-
__decorate([
|
|
38
|
-
(0, mongoose_1.Prop)(),
|
|
39
|
-
__metadata("design:type", Number)
|
|
40
|
-
], Setting.prototype, "position", void 0);
|
|
41
|
-
__decorate([
|
|
42
|
-
(0, mongoose_1.Prop)(),
|
|
43
|
-
__metadata("design:type", Boolean)
|
|
44
|
-
], Setting.prototype, "payd", void 0);
|
|
45
37
|
__decorate([
|
|
46
38
|
(0, mongoose_1.Prop)(),
|
|
47
39
|
__metadata("design:type", String)
|
|
48
|
-
], Setting.prototype, "
|
|
40
|
+
], Setting.prototype, "subtitle", void 0);
|
|
49
41
|
__decorate([
|
|
50
42
|
(0, mongoose_1.Prop)(),
|
|
51
43
|
__metadata("design:type", String)
|
|
52
|
-
], Setting.prototype, "
|
|
53
|
-
__decorate([
|
|
54
|
-
(0, mongoose_1.Prop)(),
|
|
55
|
-
__metadata("design:type", String)
|
|
56
|
-
], Setting.prototype, "url", void 0);
|
|
44
|
+
], Setting.prototype, "subtitleEn", void 0);
|
|
57
45
|
__decorate([
|
|
58
46
|
(0, mongoose_1.Prop)(),
|
|
59
47
|
__metadata("design:type", String)
|
|
@@ -61,19 +49,19 @@ __decorate([
|
|
|
61
49
|
__decorate([
|
|
62
50
|
(0, mongoose_1.Prop)(),
|
|
63
51
|
__metadata("design:type", Boolean)
|
|
64
|
-
], Setting.prototype, "
|
|
52
|
+
], Setting.prototype, "hasChevron", void 0);
|
|
65
53
|
__decorate([
|
|
66
54
|
(0, mongoose_1.Prop)(),
|
|
67
55
|
__metadata("design:type", String)
|
|
68
|
-
], Setting.prototype, "
|
|
56
|
+
], Setting.prototype, "url", void 0);
|
|
69
57
|
__decorate([
|
|
70
58
|
(0, mongoose_1.Prop)(),
|
|
71
59
|
__metadata("design:type", String)
|
|
72
|
-
], Setting.prototype, "
|
|
60
|
+
], Setting.prototype, "game", void 0);
|
|
73
61
|
__decorate([
|
|
74
62
|
(0, mongoose_1.Prop)(),
|
|
75
|
-
__metadata("design:type",
|
|
76
|
-
], Setting.prototype, "
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], Setting.prototype, "channel", void 0);
|
|
77
65
|
exports.Setting = Setting = __decorate([
|
|
78
66
|
(0, mongoose_1.Schema)({ collection: 'settings' })
|
|
79
67
|
], Setting);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setting.schema.js","sourceRoot":"","sources":["../../src/schemas/setting.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;
|
|
1
|
+
{"version":3,"file":"setting.schema.js","sourceRoot":"","sources":["../../src/schemas/setting.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CAqCnB,CAAA;AArCY,0BAAO;AAMP;IALR,IAAA,kBAAO,EAAC;QACL,GAAG,EAAE;YACD,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC/B,CAAC;KACJ,CAAC;;0CACyB;AAG3B;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;sCACO;AAGd;IADC,IAAA,eAAI,GAAE;;wCACS;AAGhB;IADC,IAAA,eAAI,GAAE;;yCACS;AAGhB;IADC,IAAA,eAAI,GAAE;;2CACW;AAGlB;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;2CACa;AAGpB;IADC,IAAA,eAAI,GAAE;;oCACK;AAGZ;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;wCACS;kBApCP,OAAO;IADnB,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC;GACtB,OAAO,CAqCnB;AAEY,QAAA,aAAa,GAAG,wBAAa,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC"}
|