gambling-bot-shared 0.1.53 → 1.0.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/README.MD +4 -0
- package/dist/{mongoose/atmRequest.schema.js → atm/atmRequest.mongoose.js} +4 -1
- package/dist/{types → atm}/index.js +5 -10
- package/dist/atm/schemas/atm.forms.js +11 -0
- package/dist/blackjack/index.js +21 -0
- package/dist/bonus/index.js +23 -0
- package/dist/bonus/schemas/bonus.forms.js +39 -0
- package/dist/{utils → bonus/utils}/bonusStreak.js +10 -1
- package/dist/{utils → bonus/utils}/calculateBonusReward.js +4 -3
- package/dist/casino/constants/casinoGames.js +5 -0
- package/dist/{constants → casino/constants}/index.js +4 -8
- package/dist/{constants → casino/constants}/plinkoConfig.js +1 -1
- package/dist/casino/index.js +30 -0
- package/dist/casino/schemas/casino.forms.js +80 -0
- package/dist/casino/services/casinoBet.service.js +146 -0
- package/dist/{utils → casino/utils}/calculateRTP.js +7 -4
- package/dist/{utils → common}/formatters.js +9 -2
- package/dist/{server.js → common/index.js} +4 -1
- package/dist/common/zod.js +16 -0
- package/dist/{mongoose/guildConfiguration.schema.js → guild/guildConfiguration.mongoose.js} +6 -5
- package/dist/guild/index.js +26 -0
- package/dist/guild/schemas/guild.forms.js +43 -0
- package/dist/guild/utils/normalizeGlobalSettings.js +46 -0
- package/dist/mongoose/index.js +17 -22
- package/dist/predictions/index.js +29 -0
- package/dist/{mongoose/prediction.schema.js → predictions/prediction.mongoose.js} +3 -2
- package/dist/predictions/schemas/prediction.forms.js +24 -0
- package/dist/predictions/services/normalizePredictionInput.js +53 -0
- package/dist/predictions/services/parsePredictionAutolock.js +20 -0
- package/dist/predictions/services/parsePredictionChoices.js +26 -0
- package/dist/predictions/services/prediction.db.js +72 -0
- package/dist/predictions/services/predictionLifecycle.service.js +133 -0
- package/dist/predictions/services/predictionSummary.js +58 -0
- package/dist/raffle/index.js +24 -0
- package/dist/raffle/schemas/raffle.forms.js +17 -0
- package/dist/raffle/services/raffle.db.js +153 -0
- package/dist/raffle/services/raffleLifecycle.service.js +34 -0
- package/dist/{schemas → transactions/constants}/index.js +2 -1
- package/dist/{index.js → transactions/index.js} +3 -2
- package/dist/transactions/types/transaction.js +2 -0
- package/dist/user/index.js +20 -0
- package/dist/user/types/user.js +2 -0
- package/dist/vip/index.js +21 -0
- package/dist/vip/schemas/vip.forms.js +16 -0
- package/dist/vip/types/vipRoom.js +2 -0
- package/package.json +67 -27
- package/dist/constants/blackjack.d.ts +0 -41
- package/dist/constants/bonusLimits.d.ts +0 -4
- package/dist/constants/commonTimezones.d.ts +0 -4
- package/dist/constants/defaultConfig.d.ts +0 -108
- package/dist/constants/defaultGlobalSettings.d.ts +0 -20
- package/dist/constants/gameRecordFields.d.ts +0 -8
- package/dist/constants/index.d.ts +0 -11
- package/dist/constants/lotteryConfig.d.ts +0 -2
- package/dist/constants/maxSimulations.d.ts +0 -5
- package/dist/constants/plinkoConfig.d.ts +0 -15
- package/dist/constants/rouletteConfig.d.ts +0 -1
- package/dist/constants/transaction.d.ts +0 -2
- package/dist/index.d.ts +0 -3
- package/dist/mongoose/atmRequest.schema.d.ts +0 -139
- package/dist/mongoose/blackjackGame.schema.d.ts +0 -139
- package/dist/mongoose/guildConfiguration.schema.d.ts +0 -237
- package/dist/mongoose/index.d.ts +0 -8
- package/dist/mongoose/prediction.schema.d.ts +0 -112
- package/dist/mongoose/raffle.schema.d.ts +0 -151
- package/dist/mongoose/transaction.schema.d.ts +0 -103
- package/dist/mongoose/user.schema.d.ts +0 -103
- package/dist/mongoose/vipRoom.schema.d.ts +0 -85
- package/dist/schemas/forms.d.ts +0 -183
- package/dist/schemas/forms.js +0 -173
- package/dist/schemas/index.d.ts +0 -1
- package/dist/server.d.ts +0 -1
- package/dist/types/atmRequest.d.ts +0 -15
- package/dist/types/blackjackGame.d.ts +0 -30
- package/dist/types/bonus.d.ts +0 -13
- package/dist/types/guildConfiguration.d.ts +0 -35
- package/dist/types/index.d.ts +0 -11
- package/dist/types/prediction.d.ts +0 -20
- package/dist/types/raffle.d.ts +0 -19
- package/dist/types/transaction.d.ts +0 -11
- package/dist/types/user.d.ts +0 -11
- package/dist/types/vipRoom.d.ts +0 -9
- package/dist/utils/bonusStreak.d.ts +0 -6
- package/dist/utils/calculateBonusReward.d.ts +0 -13
- package/dist/utils/calculateRTP.d.ts +0 -2
- package/dist/utils/formatters.d.ts +0 -13
- package/dist/utils/generateBonusPreview.d.ts +0 -11
- package/dist/utils/generateId.d.ts +0 -1
- package/dist/utils/globalSettings.d.ts +0 -6
- package/dist/utils/guildTimezone.d.ts +0 -6
- package/dist/utils/index.d.ts +0 -15
- package/dist/utils/index.js +0 -31
- package/dist/utils/normalizeBonusSettings.d.ts +0 -6
- package/dist/utils/normalizeCasinoSettings.d.ts +0 -2
- package/dist/utils/normalizeGlobalSettings.d.ts +0 -2
- package/dist/utils/normalizeGlobalSettings.js +0 -45
- package/dist/utils/parseTimeToSeconds.d.ts +0 -1
- package/dist/utils/validateBetAmount.d.ts +0 -8
- package/dist/utils/validatePredictionBet.d.ts +0 -13
- package/dist/utils/winAnnouncements.d.ts +0 -4
- /package/dist/{types → atm/types}/atmRequest.js +0 -0
- /package/dist/{constants → bonus/constants}/bonusLimits.js +0 -0
- /package/dist/{types → bonus/types}/bonus.js +0 -0
- /package/dist/{utils → bonus/utils}/generateBonusPreview.js +0 -0
- /package/dist/{utils → bonus/utils}/normalizeBonusSettings.js +0 -0
- /package/dist/{mongoose/blackjackGame.schema.js → casino/blackjackGame.mongoose.js} +0 -0
- /package/dist/{constants → casino/constants}/blackjack.js +0 -0
- /package/dist/{constants → casino/constants}/defaultConfig.js +0 -0
- /package/dist/{constants → casino/constants}/lotteryConfig.js +0 -0
- /package/dist/{constants → casino/constants}/maxSimulations.js +0 -0
- /package/dist/{constants → casino/constants}/rouletteConfig.js +0 -0
- /package/dist/{types → casino/types}/blackjackGame.js +0 -0
- /package/dist/{types/guildConfiguration.js → casino/types/casinoSettings.js} +0 -0
- /package/dist/{utils → casino/utils}/normalizeCasinoSettings.js +0 -0
- /package/dist/{utils → casino/utils}/validateBetAmount.js +0 -0
- /package/dist/{utils → casino/utils}/winAnnouncements.js +0 -0
- /package/dist/{utils → common}/generateId.js +0 -0
- /package/dist/{utils → common}/parseTimeToSeconds.js +0 -0
- /package/dist/{constants → guild/constants}/commonTimezones.js +0 -0
- /package/dist/{constants → guild/constants}/defaultGlobalSettings.js +0 -0
- /package/dist/{types/prediction.js → guild/types/guildConfiguration.js} +0 -0
- /package/dist/{utils → guild/utils}/globalSettings.js +0 -0
- /package/dist/{utils → guild/utils}/guildTimezone.js +0 -0
- /package/dist/{types/raffle.js → predictions/services/types.js} +0 -0
- /package/dist/{types/transaction.js → predictions/types/prediction.js} +0 -0
- /package/dist/{utils → predictions/utils}/validatePredictionBet.js +0 -0
- /package/dist/{mongoose/raffle.schema.js → raffle/raffle.mongoose.js} +0 -0
- /package/dist/{types/user.js → raffle/services/types.js} +0 -0
- /package/dist/{types/vipRoom.js → raffle/types/raffle.js} +0 -0
- /package/dist/{constants → transactions/constants}/gameRecordFields.js +0 -0
- /package/dist/{constants → transactions/constants}/transaction.js +0 -0
- /package/dist/{mongoose/transaction.schema.js → transactions/transaction.mongoose.js} +0 -0
- /package/dist/{mongoose/user.schema.js → user/user.mongoose.js} +0 -0
- /package/dist/{mongoose/vipRoom.schema.js → vip/vipRoom.mongoose.js} +0 -0
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
import { Schema } from 'mongoose';
|
|
2
|
-
import { TAtmRequest } from '../types';
|
|
3
|
-
export declare const AtmRequestSchema: Schema<TAtmRequest, import("mongoose").Model<TAtmRequest, any, any, any, (import("mongoose").Document<unknown, any, TAtmRequest, any, import("mongoose").DefaultSchemaOptions> & TAtmRequest & {
|
|
4
|
-
_id: import("mongoose").Types.ObjectId;
|
|
5
|
-
} & {
|
|
6
|
-
__v: number;
|
|
7
|
-
} & {
|
|
8
|
-
id: string;
|
|
9
|
-
}) | (import("mongoose").Document<unknown, any, TAtmRequest, any, import("mongoose").DefaultSchemaOptions> & TAtmRequest & {
|
|
10
|
-
_id: import("mongoose").Types.ObjectId;
|
|
11
|
-
} & {
|
|
12
|
-
__v: number;
|
|
13
|
-
}), any, TAtmRequest>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
14
|
-
id: string;
|
|
15
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
16
|
-
_id: import("mongoose").Types.ObjectId;
|
|
17
|
-
} & {
|
|
18
|
-
__v: number;
|
|
19
|
-
}, "id"> & {
|
|
20
|
-
id: string;
|
|
21
|
-
}, {
|
|
22
|
-
requestId?: import("mongoose").SchemaDefinitionProperty<string, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
23
|
-
id: string;
|
|
24
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
25
|
-
_id: import("mongoose").Types.ObjectId;
|
|
26
|
-
} & {
|
|
27
|
-
__v: number;
|
|
28
|
-
}, "id"> & {
|
|
29
|
-
id: string;
|
|
30
|
-
}> | undefined;
|
|
31
|
-
guildId?: import("mongoose").SchemaDefinitionProperty<string, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
32
|
-
id: string;
|
|
33
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
34
|
-
_id: import("mongoose").Types.ObjectId;
|
|
35
|
-
} & {
|
|
36
|
-
__v: number;
|
|
37
|
-
}, "id"> & {
|
|
38
|
-
id: string;
|
|
39
|
-
}> | undefined;
|
|
40
|
-
userId?: import("mongoose").SchemaDefinitionProperty<string, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
41
|
-
id: string;
|
|
42
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
43
|
-
_id: import("mongoose").Types.ObjectId;
|
|
44
|
-
} & {
|
|
45
|
-
__v: number;
|
|
46
|
-
}, "id"> & {
|
|
47
|
-
id: string;
|
|
48
|
-
}> | undefined;
|
|
49
|
-
type?: import("mongoose").SchemaDefinitionProperty<"deposit" | "withdraw", TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
50
|
-
id: string;
|
|
51
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
52
|
-
_id: import("mongoose").Types.ObjectId;
|
|
53
|
-
} & {
|
|
54
|
-
__v: number;
|
|
55
|
-
}, "id"> & {
|
|
56
|
-
id: string;
|
|
57
|
-
}> | undefined;
|
|
58
|
-
amount?: import("mongoose").SchemaDefinitionProperty<number, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
59
|
-
id: string;
|
|
60
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
61
|
-
_id: import("mongoose").Types.ObjectId;
|
|
62
|
-
} & {
|
|
63
|
-
__v: number;
|
|
64
|
-
}, "id"> & {
|
|
65
|
-
id: string;
|
|
66
|
-
}> | undefined;
|
|
67
|
-
account?: import("mongoose").SchemaDefinitionProperty<string, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
68
|
-
id: string;
|
|
69
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
70
|
-
_id: import("mongoose").Types.ObjectId;
|
|
71
|
-
} & {
|
|
72
|
-
__v: number;
|
|
73
|
-
}, "id"> & {
|
|
74
|
-
id: string;
|
|
75
|
-
}> | undefined;
|
|
76
|
-
status?: import("mongoose").SchemaDefinitionProperty<"pending" | "approved" | "rejected", TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
77
|
-
id: string;
|
|
78
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
79
|
-
_id: import("mongoose").Types.ObjectId;
|
|
80
|
-
} & {
|
|
81
|
-
__v: number;
|
|
82
|
-
}, "id"> & {
|
|
83
|
-
id: string;
|
|
84
|
-
}> | undefined;
|
|
85
|
-
handledBy?: import("mongoose").SchemaDefinitionProperty<string | undefined, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
86
|
-
id: string;
|
|
87
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
88
|
-
_id: import("mongoose").Types.ObjectId;
|
|
89
|
-
} & {
|
|
90
|
-
__v: number;
|
|
91
|
-
}, "id"> & {
|
|
92
|
-
id: string;
|
|
93
|
-
}> | undefined;
|
|
94
|
-
handledAt?: import("mongoose").SchemaDefinitionProperty<Date | undefined, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
95
|
-
id: string;
|
|
96
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
97
|
-
_id: import("mongoose").Types.ObjectId;
|
|
98
|
-
} & {
|
|
99
|
-
__v: number;
|
|
100
|
-
}, "id"> & {
|
|
101
|
-
id: string;
|
|
102
|
-
}> | undefined;
|
|
103
|
-
logChannelId?: import("mongoose").SchemaDefinitionProperty<string, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
104
|
-
id: string;
|
|
105
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
106
|
-
_id: import("mongoose").Types.ObjectId;
|
|
107
|
-
} & {
|
|
108
|
-
__v: number;
|
|
109
|
-
}, "id"> & {
|
|
110
|
-
id: string;
|
|
111
|
-
}> | undefined;
|
|
112
|
-
logMessageId?: import("mongoose").SchemaDefinitionProperty<string, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
113
|
-
id: string;
|
|
114
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
115
|
-
_id: import("mongoose").Types.ObjectId;
|
|
116
|
-
} & {
|
|
117
|
-
__v: number;
|
|
118
|
-
}, "id"> & {
|
|
119
|
-
id: string;
|
|
120
|
-
}> | undefined;
|
|
121
|
-
createdAt?: import("mongoose").SchemaDefinitionProperty<Date, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
122
|
-
id: string;
|
|
123
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
124
|
-
_id: import("mongoose").Types.ObjectId;
|
|
125
|
-
} & {
|
|
126
|
-
__v: number;
|
|
127
|
-
}, "id"> & {
|
|
128
|
-
id: string;
|
|
129
|
-
}> | undefined;
|
|
130
|
-
updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, TAtmRequest, import("mongoose").Document<unknown, {}, TAtmRequest, {
|
|
131
|
-
id: string;
|
|
132
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TAtmRequest & {
|
|
133
|
-
_id: import("mongoose").Types.ObjectId;
|
|
134
|
-
} & {
|
|
135
|
-
__v: number;
|
|
136
|
-
}, "id"> & {
|
|
137
|
-
id: string;
|
|
138
|
-
}> | undefined;
|
|
139
|
-
}, TAtmRequest>;
|
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
import { Schema } from 'mongoose';
|
|
2
|
-
import { TBlackjackGame, TBlackjackHand } from '../types';
|
|
3
|
-
export declare const BlackjackGameSchema: Schema<TBlackjackGame, import("mongoose").Model<TBlackjackGame, any, any, any, (import("mongoose").Document<unknown, any, TBlackjackGame, any, import("mongoose").DefaultSchemaOptions> & TBlackjackGame & {
|
|
4
|
-
_id: import("mongoose").Types.ObjectId;
|
|
5
|
-
} & {
|
|
6
|
-
__v: number;
|
|
7
|
-
} & {
|
|
8
|
-
id: string;
|
|
9
|
-
}) | (import("mongoose").Document<unknown, any, TBlackjackGame, any, import("mongoose").DefaultSchemaOptions> & TBlackjackGame & {
|
|
10
|
-
_id: import("mongoose").Types.ObjectId;
|
|
11
|
-
} & {
|
|
12
|
-
__v: number;
|
|
13
|
-
}), any, TBlackjackGame>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
14
|
-
id: string;
|
|
15
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
16
|
-
_id: import("mongoose").Types.ObjectId;
|
|
17
|
-
} & {
|
|
18
|
-
__v: number;
|
|
19
|
-
}, "id"> & {
|
|
20
|
-
id: string;
|
|
21
|
-
}, {
|
|
22
|
-
userId?: import("mongoose").SchemaDefinitionProperty<string, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
23
|
-
id: string;
|
|
24
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
25
|
-
_id: import("mongoose").Types.ObjectId;
|
|
26
|
-
} & {
|
|
27
|
-
__v: number;
|
|
28
|
-
}, "id"> & {
|
|
29
|
-
id: string;
|
|
30
|
-
}> | undefined;
|
|
31
|
-
guildId?: import("mongoose").SchemaDefinitionProperty<string, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
32
|
-
id: string;
|
|
33
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
34
|
-
_id: import("mongoose").Types.ObjectId;
|
|
35
|
-
} & {
|
|
36
|
-
__v: number;
|
|
37
|
-
}, "id"> & {
|
|
38
|
-
id: string;
|
|
39
|
-
}> | undefined;
|
|
40
|
-
channelId?: import("mongoose").SchemaDefinitionProperty<string, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
41
|
-
id: string;
|
|
42
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
43
|
-
_id: import("mongoose").Types.ObjectId;
|
|
44
|
-
} & {
|
|
45
|
-
__v: number;
|
|
46
|
-
}, "id"> & {
|
|
47
|
-
id: string;
|
|
48
|
-
}> | undefined;
|
|
49
|
-
messageId?: import("mongoose").SchemaDefinitionProperty<string, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
50
|
-
id: string;
|
|
51
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
52
|
-
_id: import("mongoose").Types.ObjectId;
|
|
53
|
-
} & {
|
|
54
|
-
__v: number;
|
|
55
|
-
}, "id"> & {
|
|
56
|
-
id: string;
|
|
57
|
-
}> | undefined;
|
|
58
|
-
betId?: import("mongoose").SchemaDefinitionProperty<string, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
59
|
-
id: string;
|
|
60
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
61
|
-
_id: import("mongoose").Types.ObjectId;
|
|
62
|
-
} & {
|
|
63
|
-
__v: number;
|
|
64
|
-
}, "id"> & {
|
|
65
|
-
id: string;
|
|
66
|
-
}> | undefined;
|
|
67
|
-
deck?: import("mongoose").SchemaDefinitionProperty<import("../types").Card[], TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
68
|
-
id: string;
|
|
69
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
70
|
-
_id: import("mongoose").Types.ObjectId;
|
|
71
|
-
} & {
|
|
72
|
-
__v: number;
|
|
73
|
-
}, "id"> & {
|
|
74
|
-
id: string;
|
|
75
|
-
}> | undefined;
|
|
76
|
-
deckIndex?: import("mongoose").SchemaDefinitionProperty<number, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
77
|
-
id: string;
|
|
78
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
79
|
-
_id: import("mongoose").Types.ObjectId;
|
|
80
|
-
} & {
|
|
81
|
-
__v: number;
|
|
82
|
-
}, "id"> & {
|
|
83
|
-
id: string;
|
|
84
|
-
}> | undefined;
|
|
85
|
-
hands?: import("mongoose").SchemaDefinitionProperty<TBlackjackHand[], TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
86
|
-
id: string;
|
|
87
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
88
|
-
_id: import("mongoose").Types.ObjectId;
|
|
89
|
-
} & {
|
|
90
|
-
__v: number;
|
|
91
|
-
}, "id"> & {
|
|
92
|
-
id: string;
|
|
93
|
-
}> | undefined;
|
|
94
|
-
activeHandIndex?: import("mongoose").SchemaDefinitionProperty<number, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
95
|
-
id: string;
|
|
96
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
97
|
-
_id: import("mongoose").Types.ObjectId;
|
|
98
|
-
} & {
|
|
99
|
-
__v: number;
|
|
100
|
-
}, "id"> & {
|
|
101
|
-
id: string;
|
|
102
|
-
}> | undefined;
|
|
103
|
-
phase?: import("mongoose").SchemaDefinitionProperty<import("../types").GamePhase, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
104
|
-
id: string;
|
|
105
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
106
|
-
_id: import("mongoose").Types.ObjectId;
|
|
107
|
-
} & {
|
|
108
|
-
__v: number;
|
|
109
|
-
}, "id"> & {
|
|
110
|
-
id: string;
|
|
111
|
-
}> | undefined;
|
|
112
|
-
dealerCards?: import("mongoose").SchemaDefinitionProperty<import("../types").Card[], TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
113
|
-
id: string;
|
|
114
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
115
|
-
_id: import("mongoose").Types.ObjectId;
|
|
116
|
-
} & {
|
|
117
|
-
__v: number;
|
|
118
|
-
}, "id"> & {
|
|
119
|
-
id: string;
|
|
120
|
-
}> | undefined;
|
|
121
|
-
createdAt?: import("mongoose").SchemaDefinitionProperty<Date, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
122
|
-
id: string;
|
|
123
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
124
|
-
_id: import("mongoose").Types.ObjectId;
|
|
125
|
-
} & {
|
|
126
|
-
__v: number;
|
|
127
|
-
}, "id"> & {
|
|
128
|
-
id: string;
|
|
129
|
-
}> | undefined;
|
|
130
|
-
updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, TBlackjackGame, import("mongoose").Document<unknown, {}, TBlackjackGame, {
|
|
131
|
-
id: string;
|
|
132
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TBlackjackGame & {
|
|
133
|
-
_id: import("mongoose").Types.ObjectId;
|
|
134
|
-
} & {
|
|
135
|
-
__v: number;
|
|
136
|
-
}, "id"> & {
|
|
137
|
-
id: string;
|
|
138
|
-
}> | undefined;
|
|
139
|
-
}, TBlackjackGame>;
|
|
@@ -1,237 +0,0 @@
|
|
|
1
|
-
import { Schema } from 'mongoose';
|
|
2
|
-
import { TGuildConfiguration } from '../types';
|
|
3
|
-
export declare const GuildConfigurationSchema: Schema<TGuildConfiguration, import("mongoose").Model<TGuildConfiguration, any, any, any, (import("mongoose").Document<unknown, any, TGuildConfiguration, any, import("mongoose").DefaultSchemaOptions> & TGuildConfiguration & {
|
|
4
|
-
_id: import("mongoose").Types.ObjectId;
|
|
5
|
-
} & {
|
|
6
|
-
__v: number;
|
|
7
|
-
} & {
|
|
8
|
-
id: string;
|
|
9
|
-
}) | (import("mongoose").Document<unknown, any, TGuildConfiguration, any, import("mongoose").DefaultSchemaOptions> & TGuildConfiguration & {
|
|
10
|
-
_id: import("mongoose").Types.ObjectId;
|
|
11
|
-
} & {
|
|
12
|
-
__v: number;
|
|
13
|
-
}), any, TGuildConfiguration>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
14
|
-
id: string;
|
|
15
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
16
|
-
_id: import("mongoose").Types.ObjectId;
|
|
17
|
-
} & {
|
|
18
|
-
__v: number;
|
|
19
|
-
}, "id"> & {
|
|
20
|
-
id: string;
|
|
21
|
-
}, {
|
|
22
|
-
guildId?: import("mongoose").SchemaDefinitionProperty<string, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
23
|
-
id: string;
|
|
24
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
25
|
-
_id: import("mongoose").Types.ObjectId;
|
|
26
|
-
} & {
|
|
27
|
-
__v: number;
|
|
28
|
-
}, "id"> & {
|
|
29
|
-
id: string;
|
|
30
|
-
}> | undefined;
|
|
31
|
-
atmChannelIds?: import("mongoose").SchemaDefinitionProperty<{
|
|
32
|
-
actions: string;
|
|
33
|
-
logs: string;
|
|
34
|
-
}, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
35
|
-
id: string;
|
|
36
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
37
|
-
_id: import("mongoose").Types.ObjectId;
|
|
38
|
-
} & {
|
|
39
|
-
__v: number;
|
|
40
|
-
}, "id"> & {
|
|
41
|
-
id: string;
|
|
42
|
-
}> | undefined;
|
|
43
|
-
casinoChannelIds?: import("mongoose").SchemaDefinitionProperty<string[], TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
44
|
-
id: string;
|
|
45
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
46
|
-
_id: import("mongoose").Types.ObjectId;
|
|
47
|
-
} & {
|
|
48
|
-
__v: number;
|
|
49
|
-
}, "id"> & {
|
|
50
|
-
id: string;
|
|
51
|
-
}> | undefined;
|
|
52
|
-
winAnnouncementsChannelId?: import("mongoose").SchemaDefinitionProperty<string, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
53
|
-
id: string;
|
|
54
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
55
|
-
_id: import("mongoose").Types.ObjectId;
|
|
56
|
-
} & {
|
|
57
|
-
__v: number;
|
|
58
|
-
}, "id"> & {
|
|
59
|
-
id: string;
|
|
60
|
-
}> | undefined;
|
|
61
|
-
predictionChannelIds?: import("mongoose").SchemaDefinitionProperty<{
|
|
62
|
-
actions: string;
|
|
63
|
-
logs: string;
|
|
64
|
-
}, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
65
|
-
id: string;
|
|
66
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
67
|
-
_id: import("mongoose").Types.ObjectId;
|
|
68
|
-
} & {
|
|
69
|
-
__v: number;
|
|
70
|
-
}, "id"> & {
|
|
71
|
-
id: string;
|
|
72
|
-
}> | undefined;
|
|
73
|
-
raffleChannelIds?: import("mongoose").SchemaDefinitionProperty<{
|
|
74
|
-
actions: string;
|
|
75
|
-
logs: string;
|
|
76
|
-
}, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
77
|
-
id: string;
|
|
78
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
79
|
-
_id: import("mongoose").Types.ObjectId;
|
|
80
|
-
} & {
|
|
81
|
-
__v: number;
|
|
82
|
-
}, "id"> & {
|
|
83
|
-
id: string;
|
|
84
|
-
}> | undefined;
|
|
85
|
-
managerRoleId?: import("mongoose").SchemaDefinitionProperty<string, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
86
|
-
id: string;
|
|
87
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
88
|
-
_id: import("mongoose").Types.ObjectId;
|
|
89
|
-
} & {
|
|
90
|
-
__v: number;
|
|
91
|
-
}, "id"> & {
|
|
92
|
-
id: string;
|
|
93
|
-
}> | undefined;
|
|
94
|
-
casinoSettings?: import("mongoose").SchemaDefinitionProperty<{
|
|
95
|
-
dice: {
|
|
96
|
-
winMultiplier: number;
|
|
97
|
-
maxBet: number;
|
|
98
|
-
minBet: number;
|
|
99
|
-
};
|
|
100
|
-
coinflip: {
|
|
101
|
-
winMultiplier: number;
|
|
102
|
-
maxBet: number;
|
|
103
|
-
minBet: number;
|
|
104
|
-
};
|
|
105
|
-
slots: {
|
|
106
|
-
winMultipliers: {
|
|
107
|
-
'\uD83C\uDF52\uD83C\uDF52\uD83C\uDF52': number;
|
|
108
|
-
'\uD83E\uDED0\uD83E\uDED0\uD83E\uDED0': number;
|
|
109
|
-
'\uD83C\uDF49\uD83C\uDF49\uD83C\uDF49': number;
|
|
110
|
-
'\uD83D\uDD14\uD83D\uDD14\uD83D\uDD14': number;
|
|
111
|
-
'7\uFE0F\u20E37\uFE0F\u20E37\uFE0F\u20E3': number;
|
|
112
|
-
};
|
|
113
|
-
symbolWeights: {
|
|
114
|
-
'\uD83C\uDF52': number;
|
|
115
|
-
'\uD83E\uDED0': number;
|
|
116
|
-
'\uD83C\uDF49': number;
|
|
117
|
-
'\uD83D\uDD14': number;
|
|
118
|
-
'7\uFE0F\u20E3': number;
|
|
119
|
-
};
|
|
120
|
-
maxBet: number;
|
|
121
|
-
minBet: number;
|
|
122
|
-
};
|
|
123
|
-
lottery: {
|
|
124
|
-
winMultipliers: {
|
|
125
|
-
4: number;
|
|
126
|
-
3: number;
|
|
127
|
-
2: number;
|
|
128
|
-
1: number;
|
|
129
|
-
0: number;
|
|
130
|
-
};
|
|
131
|
-
maxBet: number;
|
|
132
|
-
minBet: number;
|
|
133
|
-
};
|
|
134
|
-
roulette: {
|
|
135
|
-
winMultipliers: {
|
|
136
|
-
number: number;
|
|
137
|
-
color: number;
|
|
138
|
-
parity: number;
|
|
139
|
-
range: number;
|
|
140
|
-
dozen: number;
|
|
141
|
-
column: number;
|
|
142
|
-
};
|
|
143
|
-
maxBet: number;
|
|
144
|
-
minBet: number;
|
|
145
|
-
};
|
|
146
|
-
rps: {
|
|
147
|
-
casinoCut: number;
|
|
148
|
-
maxBet: number;
|
|
149
|
-
minBet: number;
|
|
150
|
-
};
|
|
151
|
-
goldenJackpot: {
|
|
152
|
-
winMultiplier: number;
|
|
153
|
-
oneInChance: number;
|
|
154
|
-
maxBet: number;
|
|
155
|
-
minBet: number;
|
|
156
|
-
};
|
|
157
|
-
blackjack: {
|
|
158
|
-
maxBet: number;
|
|
159
|
-
minBet: number;
|
|
160
|
-
};
|
|
161
|
-
prediction: {
|
|
162
|
-
maxBet: number;
|
|
163
|
-
minBet: number;
|
|
164
|
-
};
|
|
165
|
-
raffle: {
|
|
166
|
-
casinoCut: number;
|
|
167
|
-
};
|
|
168
|
-
plinko: {
|
|
169
|
-
binMultipliers: {
|
|
170
|
-
1: number;
|
|
171
|
-
2: number;
|
|
172
|
-
3: number;
|
|
173
|
-
4: number;
|
|
174
|
-
5: number;
|
|
175
|
-
6: number;
|
|
176
|
-
7: number;
|
|
177
|
-
8: number;
|
|
178
|
-
9: number;
|
|
179
|
-
};
|
|
180
|
-
maxBet: number;
|
|
181
|
-
minBet: number;
|
|
182
|
-
};
|
|
183
|
-
winAnnouncements: {
|
|
184
|
-
plinkoMinMultiplier: number;
|
|
185
|
-
goldenJackpotMinMultiplier: number;
|
|
186
|
-
slotsMinMultiplier: number;
|
|
187
|
-
lotteryMinMultiplier: number;
|
|
188
|
-
rouletteMinMultiplier: number;
|
|
189
|
-
blackjackMinMultiplier: number;
|
|
190
|
-
diceMinMultiplier: number;
|
|
191
|
-
coinflipMinMultiplier: number;
|
|
192
|
-
};
|
|
193
|
-
}, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
194
|
-
id: string;
|
|
195
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
196
|
-
_id: import("mongoose").Types.ObjectId;
|
|
197
|
-
} & {
|
|
198
|
-
__v: number;
|
|
199
|
-
}, "id"> & {
|
|
200
|
-
id: string;
|
|
201
|
-
}> | undefined;
|
|
202
|
-
vipSettings?: import("mongoose").SchemaDefinitionProperty<{
|
|
203
|
-
roleOwnerId: string;
|
|
204
|
-
roleMemberId: string;
|
|
205
|
-
categoryId: string;
|
|
206
|
-
pricePerDay: number;
|
|
207
|
-
pricePerCreate: number;
|
|
208
|
-
pricePerAdditionalMember: number;
|
|
209
|
-
maxMembers: number;
|
|
210
|
-
}, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
211
|
-
id: string;
|
|
212
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
213
|
-
_id: import("mongoose").Types.ObjectId;
|
|
214
|
-
} & {
|
|
215
|
-
__v: number;
|
|
216
|
-
}, "id"> & {
|
|
217
|
-
id: string;
|
|
218
|
-
}> | undefined;
|
|
219
|
-
bonusSettings?: import("mongoose").SchemaDefinitionProperty<import("../types").BonusSettings, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
220
|
-
id: string;
|
|
221
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
222
|
-
_id: import("mongoose").Types.ObjectId;
|
|
223
|
-
} & {
|
|
224
|
-
__v: number;
|
|
225
|
-
}, "id"> & {
|
|
226
|
-
id: string;
|
|
227
|
-
}> | undefined;
|
|
228
|
-
globalSettings?: import("mongoose").SchemaDefinitionProperty<import("../constants").GlobalSettings | undefined, TGuildConfiguration, import("mongoose").Document<unknown, {}, TGuildConfiguration, {
|
|
229
|
-
id: string;
|
|
230
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TGuildConfiguration & {
|
|
231
|
-
_id: import("mongoose").Types.ObjectId;
|
|
232
|
-
} & {
|
|
233
|
-
__v: number;
|
|
234
|
-
}, "id"> & {
|
|
235
|
-
id: string;
|
|
236
|
-
}> | undefined;
|
|
237
|
-
}, TGuildConfiguration>;
|
package/dist/mongoose/index.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * from './user.schema';
|
|
2
|
-
export * from './vipRoom.schema';
|
|
3
|
-
export * from './prediction.schema';
|
|
4
|
-
export * from './transaction.schema';
|
|
5
|
-
export * from './guildConfiguration.schema';
|
|
6
|
-
export * from './atmRequest.schema';
|
|
7
|
-
export * from './raffle.schema';
|
|
8
|
-
export * from './blackjackGame.schema';
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import { Schema } from 'mongoose';
|
|
2
|
-
import { TPrediction } from '../types';
|
|
3
|
-
export declare const PredictionSchema: Schema<TPrediction, import("mongoose").Model<TPrediction, any, any, any, (import("mongoose").Document<unknown, any, TPrediction, any, import("mongoose").DefaultSchemaOptions> & TPrediction & {
|
|
4
|
-
_id: import("mongoose").Types.ObjectId;
|
|
5
|
-
} & {
|
|
6
|
-
__v: number;
|
|
7
|
-
} & {
|
|
8
|
-
id: string;
|
|
9
|
-
}) | (import("mongoose").Document<unknown, any, TPrediction, any, import("mongoose").DefaultSchemaOptions> & TPrediction & {
|
|
10
|
-
_id: import("mongoose").Types.ObjectId;
|
|
11
|
-
} & {
|
|
12
|
-
__v: number;
|
|
13
|
-
}), any, TPrediction>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
14
|
-
id: string;
|
|
15
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
16
|
-
_id: import("mongoose").Types.ObjectId;
|
|
17
|
-
} & {
|
|
18
|
-
__v: number;
|
|
19
|
-
}, "id"> & {
|
|
20
|
-
id: string;
|
|
21
|
-
}, {
|
|
22
|
-
predictionId?: import("mongoose").SchemaDefinitionProperty<string, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
23
|
-
id: string;
|
|
24
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
25
|
-
_id: import("mongoose").Types.ObjectId;
|
|
26
|
-
} & {
|
|
27
|
-
__v: number;
|
|
28
|
-
}, "id"> & {
|
|
29
|
-
id: string;
|
|
30
|
-
}> | undefined;
|
|
31
|
-
guildId?: import("mongoose").SchemaDefinitionProperty<string, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
32
|
-
id: string;
|
|
33
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
34
|
-
_id: import("mongoose").Types.ObjectId;
|
|
35
|
-
} & {
|
|
36
|
-
__v: number;
|
|
37
|
-
}, "id"> & {
|
|
38
|
-
id: string;
|
|
39
|
-
}> | undefined;
|
|
40
|
-
channelId?: import("mongoose").SchemaDefinitionProperty<string, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
41
|
-
id: string;
|
|
42
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
43
|
-
_id: import("mongoose").Types.ObjectId;
|
|
44
|
-
} & {
|
|
45
|
-
__v: number;
|
|
46
|
-
}, "id"> & {
|
|
47
|
-
id: string;
|
|
48
|
-
}> | undefined;
|
|
49
|
-
creatorId?: import("mongoose").SchemaDefinitionProperty<string, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
50
|
-
id: string;
|
|
51
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
52
|
-
_id: import("mongoose").Types.ObjectId;
|
|
53
|
-
} & {
|
|
54
|
-
__v: number;
|
|
55
|
-
}, "id"> & {
|
|
56
|
-
id: string;
|
|
57
|
-
}> | undefined;
|
|
58
|
-
title?: import("mongoose").SchemaDefinitionProperty<string, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
59
|
-
id: string;
|
|
60
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
61
|
-
_id: import("mongoose").Types.ObjectId;
|
|
62
|
-
} & {
|
|
63
|
-
__v: number;
|
|
64
|
-
}, "id"> & {
|
|
65
|
-
id: string;
|
|
66
|
-
}> | undefined;
|
|
67
|
-
choices?: import("mongoose").SchemaDefinitionProperty<import("../types").TPredictionOption[], TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
68
|
-
id: string;
|
|
69
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
70
|
-
_id: import("mongoose").Types.ObjectId;
|
|
71
|
-
} & {
|
|
72
|
-
__v: number;
|
|
73
|
-
}, "id"> & {
|
|
74
|
-
id: string;
|
|
75
|
-
}> | undefined;
|
|
76
|
-
status?: import("mongoose").SchemaDefinitionProperty<"active" | "ended" | "paid" | "canceled", TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
77
|
-
id: string;
|
|
78
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
79
|
-
_id: import("mongoose").Types.ObjectId;
|
|
80
|
-
} & {
|
|
81
|
-
__v: number;
|
|
82
|
-
}, "id"> & {
|
|
83
|
-
id: string;
|
|
84
|
-
}> | undefined;
|
|
85
|
-
autolock?: import("mongoose").SchemaDefinitionProperty<Date | null | undefined, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
86
|
-
id: string;
|
|
87
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
88
|
-
_id: import("mongoose").Types.ObjectId;
|
|
89
|
-
} & {
|
|
90
|
-
__v: number;
|
|
91
|
-
}, "id"> & {
|
|
92
|
-
id: string;
|
|
93
|
-
}> | undefined;
|
|
94
|
-
createdAt?: import("mongoose").SchemaDefinitionProperty<Date, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
95
|
-
id: string;
|
|
96
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
97
|
-
_id: import("mongoose").Types.ObjectId;
|
|
98
|
-
} & {
|
|
99
|
-
__v: number;
|
|
100
|
-
}, "id"> & {
|
|
101
|
-
id: string;
|
|
102
|
-
}> | undefined;
|
|
103
|
-
updatedAt?: import("mongoose").SchemaDefinitionProperty<Date, TPrediction, import("mongoose").Document<unknown, {}, TPrediction, {
|
|
104
|
-
id: string;
|
|
105
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TPrediction & {
|
|
106
|
-
_id: import("mongoose").Types.ObjectId;
|
|
107
|
-
} & {
|
|
108
|
-
__v: number;
|
|
109
|
-
}, "id"> & {
|
|
110
|
-
id: string;
|
|
111
|
-
}> | undefined;
|
|
112
|
-
}, TPrediction>;
|