@fnlb-project/database 1.0.12 → 1.0.14
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 +984 -948
- package/dist/index.js +234 -234
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -96,14 +96,16 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
96
96
|
name: string;
|
|
97
97
|
disabled?: boolean | null | undefined;
|
|
98
98
|
config?: {
|
|
99
|
-
replyLangs
|
|
100
|
-
searchLangs
|
|
101
|
-
platform
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
99
|
+
replyLangs?: string[] | null | undefined;
|
|
100
|
+
searchLangs?: string[] | null | undefined;
|
|
101
|
+
platform?: string[] | null | undefined;
|
|
102
|
+
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
103
|
+
prefixes?: string[] | null | undefined;
|
|
104
|
+
statusText?: string[] | null | undefined;
|
|
105
|
+
statusInterval?: number | null | undefined;
|
|
106
|
+
level?: number[] | null | undefined;
|
|
107
|
+
bpLevel?: number[] | null | undefined;
|
|
108
|
+
extraOwners?: import("mongoose").Types.DocumentArray<{
|
|
107
109
|
id?: string | null | undefined;
|
|
108
110
|
_id?: unknown;
|
|
109
111
|
name?: string | null | undefined;
|
|
@@ -115,8 +117,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
115
117
|
id?: string | null | undefined;
|
|
116
118
|
_id?: unknown;
|
|
117
119
|
name?: string | null | undefined;
|
|
118
|
-
}
|
|
119
|
-
admins
|
|
120
|
+
}> | null | undefined;
|
|
121
|
+
admins?: import("mongoose").Types.DocumentArray<{
|
|
120
122
|
id?: string | null | undefined;
|
|
121
123
|
_id?: unknown;
|
|
122
124
|
name?: string | null | undefined;
|
|
@@ -128,8 +130,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
128
130
|
id?: string | null | undefined;
|
|
129
131
|
_id?: unknown;
|
|
130
132
|
name?: string | null | undefined;
|
|
131
|
-
}
|
|
132
|
-
whitelistUsers
|
|
133
|
+
}> | null | undefined;
|
|
134
|
+
whitelistUsers?: import("mongoose").Types.DocumentArray<{
|
|
133
135
|
id?: string | null | undefined;
|
|
134
136
|
_id?: unknown;
|
|
135
137
|
name?: string | null | undefined;
|
|
@@ -141,8 +143,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
141
143
|
id?: string | null | undefined;
|
|
142
144
|
_id?: unknown;
|
|
143
145
|
name?: string | null | undefined;
|
|
144
|
-
}
|
|
145
|
-
blacklistUsers
|
|
146
|
+
}> | null | undefined;
|
|
147
|
+
blacklistUsers?: import("mongoose").Types.DocumentArray<{
|
|
146
148
|
id?: string | null | undefined;
|
|
147
149
|
_id?: unknown;
|
|
148
150
|
name?: string | null | undefined;
|
|
@@ -154,8 +156,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
154
156
|
id?: string | null | undefined;
|
|
155
157
|
_id?: unknown;
|
|
156
158
|
name?: string | null | undefined;
|
|
157
|
-
}
|
|
158
|
-
excludedAutoAddFriends
|
|
159
|
+
}> | null | undefined;
|
|
160
|
+
excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
|
|
159
161
|
id?: string | null | undefined;
|
|
160
162
|
_id?: unknown;
|
|
161
163
|
name?: string | null | undefined;
|
|
@@ -167,8 +169,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
167
169
|
id?: string | null | undefined;
|
|
168
170
|
_id?: unknown;
|
|
169
171
|
name?: string | null | undefined;
|
|
170
|
-
}
|
|
171
|
-
otherBots
|
|
172
|
+
}> | null | undefined;
|
|
173
|
+
otherBots?: import("mongoose").Types.DocumentArray<{
|
|
172
174
|
id?: string | null | undefined;
|
|
173
175
|
_id?: unknown;
|
|
174
176
|
name?: string | null | undefined;
|
|
@@ -180,122 +182,141 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
180
182
|
id?: string | null | undefined;
|
|
181
183
|
_id?: unknown;
|
|
182
184
|
name?: string | null | undefined;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
185
|
+
}> | null | undefined;
|
|
186
|
+
inviteTimeout?: number | null | undefined;
|
|
187
|
+
maxBotsPerLobby?: number | null | undefined;
|
|
188
|
+
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
189
|
+
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
190
|
+
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
191
|
+
allowMatchmaking?: boolean | null | undefined;
|
|
192
|
+
disableMatchmakingChecks?: boolean | null | undefined;
|
|
193
|
+
disableJoinMessages?: boolean | null | undefined;
|
|
194
|
+
acceptFriendRequests?: boolean | null | undefined;
|
|
195
|
+
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
196
|
+
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
197
|
+
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
198
|
+
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
199
|
+
usernameTriggers?: import("mongoose").Types.DocumentArray<{
|
|
189
200
|
_id?: unknown;
|
|
201
|
+
triggers?: string[] | null | undefined;
|
|
202
|
+
detectionMethods?: number[] | null | undefined;
|
|
203
|
+
actions?: number[] | null | undefined;
|
|
204
|
+
messages?: string[] | null | undefined;
|
|
190
205
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
191
|
-
triggers: string[];
|
|
192
|
-
detectionMethods: number[];
|
|
193
|
-
actions: number[];
|
|
194
|
-
messages: string[];
|
|
195
206
|
_id?: unknown;
|
|
207
|
+
triggers?: string[] | null | undefined;
|
|
208
|
+
detectionMethods?: number[] | null | undefined;
|
|
209
|
+
actions?: number[] | null | undefined;
|
|
210
|
+
messages?: string[] | null | undefined;
|
|
196
211
|
}> & {
|
|
197
|
-
triggers: string[];
|
|
198
|
-
detectionMethods: number[];
|
|
199
|
-
actions: number[];
|
|
200
|
-
messages: string[];
|
|
201
212
|
_id?: unknown;
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
213
|
+
triggers?: string[] | null | undefined;
|
|
214
|
+
detectionMethods?: number[] | null | undefined;
|
|
215
|
+
actions?: number[] | null | undefined;
|
|
216
|
+
messages?: string[] | null | undefined;
|
|
217
|
+
}> | null | undefined;
|
|
218
|
+
messageContentTriggers?: import("mongoose").Types.DocumentArray<{
|
|
208
219
|
_id?: unknown;
|
|
220
|
+
triggers?: string[] | null | undefined;
|
|
221
|
+
detectionMethods?: number[] | null | undefined;
|
|
222
|
+
actions?: number[] | null | undefined;
|
|
223
|
+
messages?: string[] | null | undefined;
|
|
209
224
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
210
|
-
triggers: string[];
|
|
211
|
-
detectionMethods: number[];
|
|
212
|
-
actions: number[];
|
|
213
|
-
messages: string[];
|
|
214
225
|
_id?: unknown;
|
|
226
|
+
triggers?: string[] | null | undefined;
|
|
227
|
+
detectionMethods?: number[] | null | undefined;
|
|
228
|
+
actions?: number[] | null | undefined;
|
|
229
|
+
messages?: string[] | null | undefined;
|
|
215
230
|
}> & {
|
|
216
|
-
triggers: string[];
|
|
217
|
-
detectionMethods: number[];
|
|
218
|
-
actions: number[];
|
|
219
|
-
messages: string[];
|
|
220
231
|
_id?: unknown;
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
232
|
+
triggers?: string[] | null | undefined;
|
|
233
|
+
detectionMethods?: number[] | null | undefined;
|
|
234
|
+
actions?: number[] | null | undefined;
|
|
235
|
+
messages?: string[] | null | undefined;
|
|
236
|
+
}> | null | undefined;
|
|
237
|
+
cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
227
238
|
_id?: unknown;
|
|
239
|
+
triggers?: string[] | null | undefined;
|
|
240
|
+
detectionMethods?: number[] | null | undefined;
|
|
241
|
+
actions?: number[] | null | undefined;
|
|
242
|
+
messages?: string[] | null | undefined;
|
|
228
243
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
229
|
-
triggers: string[];
|
|
230
|
-
detectionMethods: number[];
|
|
231
|
-
actions: number[];
|
|
232
|
-
messages: string[];
|
|
233
244
|
_id?: unknown;
|
|
245
|
+
triggers?: string[] | null | undefined;
|
|
246
|
+
detectionMethods?: number[] | null | undefined;
|
|
247
|
+
actions?: number[] | null | undefined;
|
|
248
|
+
messages?: string[] | null | undefined;
|
|
234
249
|
}> & {
|
|
235
|
-
triggers: string[];
|
|
236
|
-
detectionMethods: number[];
|
|
237
|
-
actions: number[];
|
|
238
|
-
messages: string[];
|
|
239
250
|
_id?: unknown;
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
251
|
+
triggers?: string[] | null | undefined;
|
|
252
|
+
detectionMethods?: number[] | null | undefined;
|
|
253
|
+
actions?: number[] | null | undefined;
|
|
254
|
+
messages?: string[] | null | undefined;
|
|
255
|
+
}> | null | undefined;
|
|
256
|
+
addFriendTriggers?: import("mongoose").Types.DocumentArray<{
|
|
246
257
|
_id?: unknown;
|
|
258
|
+
triggers?: string[] | null | undefined;
|
|
259
|
+
detectionMethods?: number[] | null | undefined;
|
|
260
|
+
actions?: number[] | null | undefined;
|
|
261
|
+
messages?: string[] | null | undefined;
|
|
247
262
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
248
|
-
triggers: string[];
|
|
249
|
-
detectionMethods: number[];
|
|
250
|
-
actions: number[];
|
|
251
|
-
messages: string[];
|
|
252
263
|
_id?: unknown;
|
|
264
|
+
triggers?: string[] | null | undefined;
|
|
265
|
+
detectionMethods?: number[] | null | undefined;
|
|
266
|
+
actions?: number[] | null | undefined;
|
|
267
|
+
messages?: string[] | null | undefined;
|
|
253
268
|
}> & {
|
|
254
|
-
triggers: string[];
|
|
255
|
-
detectionMethods: number[];
|
|
256
|
-
actions: number[];
|
|
257
|
-
messages: string[];
|
|
258
269
|
_id?: unknown;
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
270
|
+
triggers?: string[] | null | undefined;
|
|
271
|
+
detectionMethods?: number[] | null | undefined;
|
|
272
|
+
actions?: number[] | null | undefined;
|
|
273
|
+
messages?: string[] | null | undefined;
|
|
274
|
+
}> | null | undefined;
|
|
275
|
+
memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
|
|
265
276
|
_id?: unknown;
|
|
277
|
+
triggers?: string[] | null | undefined;
|
|
278
|
+
detectionMethods?: number[] | null | undefined;
|
|
279
|
+
actions?: number[] | null | undefined;
|
|
280
|
+
messages?: string[] | null | undefined;
|
|
266
281
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
267
|
-
triggers: string[];
|
|
268
|
-
detectionMethods: number[];
|
|
269
|
-
actions: number[];
|
|
270
|
-
messages: string[];
|
|
271
282
|
_id?: unknown;
|
|
283
|
+
triggers?: string[] | null | undefined;
|
|
284
|
+
detectionMethods?: number[] | null | undefined;
|
|
285
|
+
actions?: number[] | null | undefined;
|
|
286
|
+
messages?: string[] | null | undefined;
|
|
272
287
|
}> & {
|
|
273
|
-
triggers: string[];
|
|
274
|
-
detectionMethods: number[];
|
|
275
|
-
actions: number[];
|
|
276
|
-
messages: string[];
|
|
277
288
|
_id?: unknown;
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
289
|
+
triggers?: string[] | null | undefined;
|
|
290
|
+
detectionMethods?: number[] | null | undefined;
|
|
291
|
+
actions?: number[] | null | undefined;
|
|
292
|
+
messages?: string[] | null | undefined;
|
|
293
|
+
}> | null | undefined;
|
|
294
|
+
changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
284
295
|
_id?: unknown;
|
|
296
|
+
triggers?: string[] | null | undefined;
|
|
297
|
+
detectionMethods?: number[] | null | undefined;
|
|
298
|
+
actions?: number[] | null | undefined;
|
|
299
|
+
messages?: string[] | null | undefined;
|
|
285
300
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
286
|
-
triggers: string[];
|
|
287
|
-
detectionMethods: number[];
|
|
288
|
-
actions: number[];
|
|
289
|
-
messages: string[];
|
|
290
301
|
_id?: unknown;
|
|
302
|
+
triggers?: string[] | null | undefined;
|
|
303
|
+
detectionMethods?: number[] | null | undefined;
|
|
304
|
+
actions?: number[] | null | undefined;
|
|
305
|
+
messages?: string[] | null | undefined;
|
|
291
306
|
}> & {
|
|
292
|
-
triggers: string[];
|
|
293
|
-
detectionMethods: number[];
|
|
294
|
-
actions: number[];
|
|
295
|
-
messages: string[];
|
|
296
307
|
_id?: unknown;
|
|
297
|
-
|
|
298
|
-
|
|
308
|
+
triggers?: string[] | null | undefined;
|
|
309
|
+
detectionMethods?: number[] | null | undefined;
|
|
310
|
+
actions?: number[] | null | undefined;
|
|
311
|
+
messages?: string[] | null | undefined;
|
|
312
|
+
}> | null | undefined;
|
|
313
|
+
onlyOwnerCommands?: string[] | null | undefined;
|
|
314
|
+
onlyAdminCommands?: string[] | null | undefined;
|
|
315
|
+
onlyWhitelistUsersCommands?: string[] | null | undefined;
|
|
316
|
+
onlyFriendsCommands?: string[] | null | undefined;
|
|
317
|
+
onlyPartyMembersCommands?: string[] | null | undefined;
|
|
318
|
+
onlyWhisperCommands?: string[] | null | undefined;
|
|
319
|
+
startOutfit?: import("mongoose").Types.DocumentArray<{
|
|
299
320
|
variants: number[];
|
|
300
321
|
id?: string | null | undefined;
|
|
301
322
|
_id?: unknown;
|
|
@@ -307,8 +328,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
307
328
|
variants: number[];
|
|
308
329
|
id?: string | null | undefined;
|
|
309
330
|
_id?: unknown;
|
|
310
|
-
}
|
|
311
|
-
startBackpack
|
|
331
|
+
}> | null | undefined;
|
|
332
|
+
startBackpack?: import("mongoose").Types.DocumentArray<{
|
|
312
333
|
variants: number[];
|
|
313
334
|
id?: string | null | undefined;
|
|
314
335
|
_id?: unknown;
|
|
@@ -320,8 +341,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
320
341
|
variants: number[];
|
|
321
342
|
id?: string | null | undefined;
|
|
322
343
|
_id?: unknown;
|
|
323
|
-
}
|
|
324
|
-
startPickaxe
|
|
344
|
+
}> | null | undefined;
|
|
345
|
+
startPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
325
346
|
variants: number[];
|
|
326
347
|
id?: string | null | undefined;
|
|
327
348
|
_id?: unknown;
|
|
@@ -333,8 +354,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
333
354
|
variants: number[];
|
|
334
355
|
id?: string | null | undefined;
|
|
335
356
|
_id?: unknown;
|
|
336
|
-
}
|
|
337
|
-
startShoes
|
|
357
|
+
}> | null | undefined;
|
|
358
|
+
startShoes?: import("mongoose").Types.DocumentArray<{
|
|
338
359
|
variants: number[];
|
|
339
360
|
id?: string | null | undefined;
|
|
340
361
|
_id?: unknown;
|
|
@@ -346,8 +367,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
346
367
|
variants: number[];
|
|
347
368
|
id?: string | null | undefined;
|
|
348
369
|
_id?: unknown;
|
|
349
|
-
}
|
|
350
|
-
startBanner
|
|
370
|
+
}> | null | undefined;
|
|
371
|
+
startBanner?: import("mongoose").Types.DocumentArray<{
|
|
351
372
|
id?: string | null | undefined;
|
|
352
373
|
_id?: unknown;
|
|
353
374
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -356,8 +377,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
356
377
|
}> & {
|
|
357
378
|
id?: string | null | undefined;
|
|
358
379
|
_id?: unknown;
|
|
359
|
-
}
|
|
360
|
-
startBannerColor
|
|
380
|
+
}> | null | undefined;
|
|
381
|
+
startBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
361
382
|
id?: string | null | undefined;
|
|
362
383
|
_id?: unknown;
|
|
363
384
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -366,8 +387,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
366
387
|
}> & {
|
|
367
388
|
id?: string | null | undefined;
|
|
368
389
|
_id?: unknown;
|
|
369
|
-
}
|
|
370
|
-
joinOutfit
|
|
390
|
+
}> | null | undefined;
|
|
391
|
+
joinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
371
392
|
variants: number[];
|
|
372
393
|
id?: string | null | undefined;
|
|
373
394
|
_id?: unknown;
|
|
@@ -379,8 +400,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
379
400
|
variants: number[];
|
|
380
401
|
id?: string | null | undefined;
|
|
381
402
|
_id?: unknown;
|
|
382
|
-
}
|
|
383
|
-
joinBackpack
|
|
403
|
+
}> | null | undefined;
|
|
404
|
+
joinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
384
405
|
variants: number[];
|
|
385
406
|
id?: string | null | undefined;
|
|
386
407
|
_id?: unknown;
|
|
@@ -392,8 +413,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
392
413
|
variants: number[];
|
|
393
414
|
id?: string | null | undefined;
|
|
394
415
|
_id?: unknown;
|
|
395
|
-
}
|
|
396
|
-
joinPickaxe
|
|
416
|
+
}> | null | undefined;
|
|
417
|
+
joinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
397
418
|
variants: number[];
|
|
398
419
|
id?: string | null | undefined;
|
|
399
420
|
_id?: unknown;
|
|
@@ -405,8 +426,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
405
426
|
variants: number[];
|
|
406
427
|
id?: string | null | undefined;
|
|
407
428
|
_id?: unknown;
|
|
408
|
-
}
|
|
409
|
-
joinEmote
|
|
429
|
+
}> | null | undefined;
|
|
430
|
+
joinEmote?: import("mongoose").Types.DocumentArray<{
|
|
410
431
|
id?: string | null | undefined;
|
|
411
432
|
_id?: unknown;
|
|
412
433
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -415,8 +436,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
415
436
|
}> & {
|
|
416
437
|
id?: string | null | undefined;
|
|
417
438
|
_id?: unknown;
|
|
418
|
-
}
|
|
419
|
-
joinShoes
|
|
439
|
+
}> | null | undefined;
|
|
440
|
+
joinShoes?: import("mongoose").Types.DocumentArray<{
|
|
420
441
|
variants: number[];
|
|
421
442
|
id?: string | null | undefined;
|
|
422
443
|
_id?: unknown;
|
|
@@ -428,8 +449,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
428
449
|
variants: number[];
|
|
429
450
|
id?: string | null | undefined;
|
|
430
451
|
_id?: unknown;
|
|
431
|
-
}
|
|
432
|
-
joinBanner
|
|
452
|
+
}> | null | undefined;
|
|
453
|
+
joinBanner?: import("mongoose").Types.DocumentArray<{
|
|
433
454
|
id?: string | null | undefined;
|
|
434
455
|
_id?: unknown;
|
|
435
456
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -438,8 +459,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
438
459
|
}> & {
|
|
439
460
|
id?: string | null | undefined;
|
|
440
461
|
_id?: unknown;
|
|
441
|
-
}
|
|
442
|
-
joinBannerColor
|
|
462
|
+
}> | null | undefined;
|
|
463
|
+
joinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
443
464
|
id?: string | null | undefined;
|
|
444
465
|
_id?: unknown;
|
|
445
466
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -448,8 +469,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
448
469
|
}> & {
|
|
449
470
|
id?: string | null | undefined;
|
|
450
471
|
_id?: unknown;
|
|
451
|
-
}
|
|
452
|
-
memberJoinOutfit
|
|
472
|
+
}> | null | undefined;
|
|
473
|
+
memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
453
474
|
variants: number[];
|
|
454
475
|
id?: string | null | undefined;
|
|
455
476
|
_id?: unknown;
|
|
@@ -461,8 +482,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
461
482
|
variants: number[];
|
|
462
483
|
id?: string | null | undefined;
|
|
463
484
|
_id?: unknown;
|
|
464
|
-
}
|
|
465
|
-
memberJoinBackpack
|
|
485
|
+
}> | null | undefined;
|
|
486
|
+
memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
466
487
|
variants: number[];
|
|
467
488
|
id?: string | null | undefined;
|
|
468
489
|
_id?: unknown;
|
|
@@ -474,8 +495,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
474
495
|
variants: number[];
|
|
475
496
|
id?: string | null | undefined;
|
|
476
497
|
_id?: unknown;
|
|
477
|
-
}
|
|
478
|
-
memberJoinPickaxe
|
|
498
|
+
}> | null | undefined;
|
|
499
|
+
memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
479
500
|
variants: number[];
|
|
480
501
|
id?: string | null | undefined;
|
|
481
502
|
_id?: unknown;
|
|
@@ -487,8 +508,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
487
508
|
variants: number[];
|
|
488
509
|
id?: string | null | undefined;
|
|
489
510
|
_id?: unknown;
|
|
490
|
-
}
|
|
491
|
-
memberJoinEmote
|
|
511
|
+
}> | null | undefined;
|
|
512
|
+
memberJoinEmote?: import("mongoose").Types.DocumentArray<{
|
|
492
513
|
id?: string | null | undefined;
|
|
493
514
|
_id?: unknown;
|
|
494
515
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -497,8 +518,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
497
518
|
}> & {
|
|
498
519
|
id?: string | null | undefined;
|
|
499
520
|
_id?: unknown;
|
|
500
|
-
}
|
|
501
|
-
memberJoinShoes
|
|
521
|
+
}> | null | undefined;
|
|
522
|
+
memberJoinShoes?: import("mongoose").Types.DocumentArray<{
|
|
502
523
|
variants: number[];
|
|
503
524
|
id?: string | null | undefined;
|
|
504
525
|
_id?: unknown;
|
|
@@ -510,8 +531,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
510
531
|
variants: number[];
|
|
511
532
|
id?: string | null | undefined;
|
|
512
533
|
_id?: unknown;
|
|
513
|
-
}
|
|
514
|
-
memberJoinBanner
|
|
534
|
+
}> | null | undefined;
|
|
535
|
+
memberJoinBanner?: import("mongoose").Types.DocumentArray<{
|
|
515
536
|
id?: string | null | undefined;
|
|
516
537
|
_id?: unknown;
|
|
517
538
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -520,8 +541,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
520
541
|
}> & {
|
|
521
542
|
id?: string | null | undefined;
|
|
522
543
|
_id?: unknown;
|
|
523
|
-
}
|
|
524
|
-
memberJoinBannerColor
|
|
544
|
+
}> | null | undefined;
|
|
545
|
+
memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
525
546
|
id?: string | null | undefined;
|
|
526
547
|
_id?: unknown;
|
|
527
548
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -530,36 +551,23 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
530
551
|
}> & {
|
|
531
552
|
id?: string | null | undefined;
|
|
532
553
|
_id?: unknown;
|
|
533
|
-
}
|
|
534
|
-
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
535
|
-
statusInterval?: number | null | undefined;
|
|
536
|
-
inviteTimeout?: number | null | undefined;
|
|
537
|
-
maxBotsPerLobby?: number | null | undefined;
|
|
538
|
-
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
539
|
-
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
540
|
-
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
541
|
-
allowMatchmaking?: boolean | null | undefined;
|
|
542
|
-
disableMatchmakingChecks?: boolean | null | undefined;
|
|
543
|
-
disableJoinMessages?: boolean | null | undefined;
|
|
544
|
-
acceptFriendRequests?: boolean | null | undefined;
|
|
545
|
-
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
546
|
-
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
547
|
-
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
548
|
-
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
554
|
+
}> | null | undefined;
|
|
549
555
|
} | null | undefined;
|
|
550
556
|
}, {}, {}, {}, import("mongoose").Document<unknown, {}, {
|
|
551
557
|
owner: import("mongoose").Types.ObjectId;
|
|
552
558
|
name: string;
|
|
553
559
|
disabled?: boolean | null | undefined;
|
|
554
560
|
config?: {
|
|
555
|
-
replyLangs
|
|
556
|
-
searchLangs
|
|
557
|
-
platform
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
561
|
+
replyLangs?: string[] | null | undefined;
|
|
562
|
+
searchLangs?: string[] | null | undefined;
|
|
563
|
+
platform?: string[] | null | undefined;
|
|
564
|
+
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
565
|
+
prefixes?: string[] | null | undefined;
|
|
566
|
+
statusText?: string[] | null | undefined;
|
|
567
|
+
statusInterval?: number | null | undefined;
|
|
568
|
+
level?: number[] | null | undefined;
|
|
569
|
+
bpLevel?: number[] | null | undefined;
|
|
570
|
+
extraOwners?: import("mongoose").Types.DocumentArray<{
|
|
563
571
|
id?: string | null | undefined;
|
|
564
572
|
_id?: unknown;
|
|
565
573
|
name?: string | null | undefined;
|
|
@@ -571,8 +579,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
571
579
|
id?: string | null | undefined;
|
|
572
580
|
_id?: unknown;
|
|
573
581
|
name?: string | null | undefined;
|
|
574
|
-
}
|
|
575
|
-
admins
|
|
582
|
+
}> | null | undefined;
|
|
583
|
+
admins?: import("mongoose").Types.DocumentArray<{
|
|
576
584
|
id?: string | null | undefined;
|
|
577
585
|
_id?: unknown;
|
|
578
586
|
name?: string | null | undefined;
|
|
@@ -584,8 +592,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
584
592
|
id?: string | null | undefined;
|
|
585
593
|
_id?: unknown;
|
|
586
594
|
name?: string | null | undefined;
|
|
587
|
-
}
|
|
588
|
-
whitelistUsers
|
|
595
|
+
}> | null | undefined;
|
|
596
|
+
whitelistUsers?: import("mongoose").Types.DocumentArray<{
|
|
589
597
|
id?: string | null | undefined;
|
|
590
598
|
_id?: unknown;
|
|
591
599
|
name?: string | null | undefined;
|
|
@@ -597,8 +605,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
597
605
|
id?: string | null | undefined;
|
|
598
606
|
_id?: unknown;
|
|
599
607
|
name?: string | null | undefined;
|
|
600
|
-
}
|
|
601
|
-
blacklistUsers
|
|
608
|
+
}> | null | undefined;
|
|
609
|
+
blacklistUsers?: import("mongoose").Types.DocumentArray<{
|
|
602
610
|
id?: string | null | undefined;
|
|
603
611
|
_id?: unknown;
|
|
604
612
|
name?: string | null | undefined;
|
|
@@ -610,8 +618,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
610
618
|
id?: string | null | undefined;
|
|
611
619
|
_id?: unknown;
|
|
612
620
|
name?: string | null | undefined;
|
|
613
|
-
}
|
|
614
|
-
excludedAutoAddFriends
|
|
621
|
+
}> | null | undefined;
|
|
622
|
+
excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
|
|
615
623
|
id?: string | null | undefined;
|
|
616
624
|
_id?: unknown;
|
|
617
625
|
name?: string | null | undefined;
|
|
@@ -623,8 +631,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
623
631
|
id?: string | null | undefined;
|
|
624
632
|
_id?: unknown;
|
|
625
633
|
name?: string | null | undefined;
|
|
626
|
-
}
|
|
627
|
-
otherBots
|
|
634
|
+
}> | null | undefined;
|
|
635
|
+
otherBots?: import("mongoose").Types.DocumentArray<{
|
|
628
636
|
id?: string | null | undefined;
|
|
629
637
|
_id?: unknown;
|
|
630
638
|
name?: string | null | undefined;
|
|
@@ -636,122 +644,141 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
636
644
|
id?: string | null | undefined;
|
|
637
645
|
_id?: unknown;
|
|
638
646
|
name?: string | null | undefined;
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
647
|
+
}> | null | undefined;
|
|
648
|
+
inviteTimeout?: number | null | undefined;
|
|
649
|
+
maxBotsPerLobby?: number | null | undefined;
|
|
650
|
+
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
651
|
+
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
652
|
+
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
653
|
+
allowMatchmaking?: boolean | null | undefined;
|
|
654
|
+
disableMatchmakingChecks?: boolean | null | undefined;
|
|
655
|
+
disableJoinMessages?: boolean | null | undefined;
|
|
656
|
+
acceptFriendRequests?: boolean | null | undefined;
|
|
657
|
+
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
658
|
+
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
659
|
+
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
660
|
+
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
661
|
+
usernameTriggers?: import("mongoose").Types.DocumentArray<{
|
|
645
662
|
_id?: unknown;
|
|
663
|
+
triggers?: string[] | null | undefined;
|
|
664
|
+
detectionMethods?: number[] | null | undefined;
|
|
665
|
+
actions?: number[] | null | undefined;
|
|
666
|
+
messages?: string[] | null | undefined;
|
|
646
667
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
647
|
-
triggers: string[];
|
|
648
|
-
detectionMethods: number[];
|
|
649
|
-
actions: number[];
|
|
650
|
-
messages: string[];
|
|
651
668
|
_id?: unknown;
|
|
669
|
+
triggers?: string[] | null | undefined;
|
|
670
|
+
detectionMethods?: number[] | null | undefined;
|
|
671
|
+
actions?: number[] | null | undefined;
|
|
672
|
+
messages?: string[] | null | undefined;
|
|
652
673
|
}> & {
|
|
653
|
-
triggers: string[];
|
|
654
|
-
detectionMethods: number[];
|
|
655
|
-
actions: number[];
|
|
656
|
-
messages: string[];
|
|
657
674
|
_id?: unknown;
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
675
|
+
triggers?: string[] | null | undefined;
|
|
676
|
+
detectionMethods?: number[] | null | undefined;
|
|
677
|
+
actions?: number[] | null | undefined;
|
|
678
|
+
messages?: string[] | null | undefined;
|
|
679
|
+
}> | null | undefined;
|
|
680
|
+
messageContentTriggers?: import("mongoose").Types.DocumentArray<{
|
|
664
681
|
_id?: unknown;
|
|
682
|
+
triggers?: string[] | null | undefined;
|
|
683
|
+
detectionMethods?: number[] | null | undefined;
|
|
684
|
+
actions?: number[] | null | undefined;
|
|
685
|
+
messages?: string[] | null | undefined;
|
|
665
686
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
666
|
-
triggers: string[];
|
|
667
|
-
detectionMethods: number[];
|
|
668
|
-
actions: number[];
|
|
669
|
-
messages: string[];
|
|
670
687
|
_id?: unknown;
|
|
688
|
+
triggers?: string[] | null | undefined;
|
|
689
|
+
detectionMethods?: number[] | null | undefined;
|
|
690
|
+
actions?: number[] | null | undefined;
|
|
691
|
+
messages?: string[] | null | undefined;
|
|
671
692
|
}> & {
|
|
672
|
-
triggers: string[];
|
|
673
|
-
detectionMethods: number[];
|
|
674
|
-
actions: number[];
|
|
675
|
-
messages: string[];
|
|
676
693
|
_id?: unknown;
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
694
|
+
triggers?: string[] | null | undefined;
|
|
695
|
+
detectionMethods?: number[] | null | undefined;
|
|
696
|
+
actions?: number[] | null | undefined;
|
|
697
|
+
messages?: string[] | null | undefined;
|
|
698
|
+
}> | null | undefined;
|
|
699
|
+
cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
683
700
|
_id?: unknown;
|
|
701
|
+
triggers?: string[] | null | undefined;
|
|
702
|
+
detectionMethods?: number[] | null | undefined;
|
|
703
|
+
actions?: number[] | null | undefined;
|
|
704
|
+
messages?: string[] | null | undefined;
|
|
684
705
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
685
|
-
triggers: string[];
|
|
686
|
-
detectionMethods: number[];
|
|
687
|
-
actions: number[];
|
|
688
|
-
messages: string[];
|
|
689
706
|
_id?: unknown;
|
|
707
|
+
triggers?: string[] | null | undefined;
|
|
708
|
+
detectionMethods?: number[] | null | undefined;
|
|
709
|
+
actions?: number[] | null | undefined;
|
|
710
|
+
messages?: string[] | null | undefined;
|
|
690
711
|
}> & {
|
|
691
|
-
triggers: string[];
|
|
692
|
-
detectionMethods: number[];
|
|
693
|
-
actions: number[];
|
|
694
|
-
messages: string[];
|
|
695
712
|
_id?: unknown;
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
713
|
+
triggers?: string[] | null | undefined;
|
|
714
|
+
detectionMethods?: number[] | null | undefined;
|
|
715
|
+
actions?: number[] | null | undefined;
|
|
716
|
+
messages?: string[] | null | undefined;
|
|
717
|
+
}> | null | undefined;
|
|
718
|
+
addFriendTriggers?: import("mongoose").Types.DocumentArray<{
|
|
702
719
|
_id?: unknown;
|
|
720
|
+
triggers?: string[] | null | undefined;
|
|
721
|
+
detectionMethods?: number[] | null | undefined;
|
|
722
|
+
actions?: number[] | null | undefined;
|
|
723
|
+
messages?: string[] | null | undefined;
|
|
703
724
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
704
|
-
triggers: string[];
|
|
705
|
-
detectionMethods: number[];
|
|
706
|
-
actions: number[];
|
|
707
|
-
messages: string[];
|
|
708
725
|
_id?: unknown;
|
|
726
|
+
triggers?: string[] | null | undefined;
|
|
727
|
+
detectionMethods?: number[] | null | undefined;
|
|
728
|
+
actions?: number[] | null | undefined;
|
|
729
|
+
messages?: string[] | null | undefined;
|
|
709
730
|
}> & {
|
|
710
|
-
triggers: string[];
|
|
711
|
-
detectionMethods: number[];
|
|
712
|
-
actions: number[];
|
|
713
|
-
messages: string[];
|
|
714
731
|
_id?: unknown;
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
732
|
+
triggers?: string[] | null | undefined;
|
|
733
|
+
detectionMethods?: number[] | null | undefined;
|
|
734
|
+
actions?: number[] | null | undefined;
|
|
735
|
+
messages?: string[] | null | undefined;
|
|
736
|
+
}> | null | undefined;
|
|
737
|
+
memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
|
|
721
738
|
_id?: unknown;
|
|
739
|
+
triggers?: string[] | null | undefined;
|
|
740
|
+
detectionMethods?: number[] | null | undefined;
|
|
741
|
+
actions?: number[] | null | undefined;
|
|
742
|
+
messages?: string[] | null | undefined;
|
|
722
743
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
723
|
-
triggers: string[];
|
|
724
|
-
detectionMethods: number[];
|
|
725
|
-
actions: number[];
|
|
726
|
-
messages: string[];
|
|
727
744
|
_id?: unknown;
|
|
745
|
+
triggers?: string[] | null | undefined;
|
|
746
|
+
detectionMethods?: number[] | null | undefined;
|
|
747
|
+
actions?: number[] | null | undefined;
|
|
748
|
+
messages?: string[] | null | undefined;
|
|
728
749
|
}> & {
|
|
729
|
-
triggers: string[];
|
|
730
|
-
detectionMethods: number[];
|
|
731
|
-
actions: number[];
|
|
732
|
-
messages: string[];
|
|
733
750
|
_id?: unknown;
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
751
|
+
triggers?: string[] | null | undefined;
|
|
752
|
+
detectionMethods?: number[] | null | undefined;
|
|
753
|
+
actions?: number[] | null | undefined;
|
|
754
|
+
messages?: string[] | null | undefined;
|
|
755
|
+
}> | null | undefined;
|
|
756
|
+
changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
740
757
|
_id?: unknown;
|
|
758
|
+
triggers?: string[] | null | undefined;
|
|
759
|
+
detectionMethods?: number[] | null | undefined;
|
|
760
|
+
actions?: number[] | null | undefined;
|
|
761
|
+
messages?: string[] | null | undefined;
|
|
741
762
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
742
|
-
triggers: string[];
|
|
743
|
-
detectionMethods: number[];
|
|
744
|
-
actions: number[];
|
|
745
|
-
messages: string[];
|
|
746
763
|
_id?: unknown;
|
|
764
|
+
triggers?: string[] | null | undefined;
|
|
765
|
+
detectionMethods?: number[] | null | undefined;
|
|
766
|
+
actions?: number[] | null | undefined;
|
|
767
|
+
messages?: string[] | null | undefined;
|
|
747
768
|
}> & {
|
|
748
|
-
triggers: string[];
|
|
749
|
-
detectionMethods: number[];
|
|
750
|
-
actions: number[];
|
|
751
|
-
messages: string[];
|
|
752
769
|
_id?: unknown;
|
|
753
|
-
|
|
754
|
-
|
|
770
|
+
triggers?: string[] | null | undefined;
|
|
771
|
+
detectionMethods?: number[] | null | undefined;
|
|
772
|
+
actions?: number[] | null | undefined;
|
|
773
|
+
messages?: string[] | null | undefined;
|
|
774
|
+
}> | null | undefined;
|
|
775
|
+
onlyOwnerCommands?: string[] | null | undefined;
|
|
776
|
+
onlyAdminCommands?: string[] | null | undefined;
|
|
777
|
+
onlyWhitelistUsersCommands?: string[] | null | undefined;
|
|
778
|
+
onlyFriendsCommands?: string[] | null | undefined;
|
|
779
|
+
onlyPartyMembersCommands?: string[] | null | undefined;
|
|
780
|
+
onlyWhisperCommands?: string[] | null | undefined;
|
|
781
|
+
startOutfit?: import("mongoose").Types.DocumentArray<{
|
|
755
782
|
variants: number[];
|
|
756
783
|
id?: string | null | undefined;
|
|
757
784
|
_id?: unknown;
|
|
@@ -763,8 +790,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
763
790
|
variants: number[];
|
|
764
791
|
id?: string | null | undefined;
|
|
765
792
|
_id?: unknown;
|
|
766
|
-
}
|
|
767
|
-
startBackpack
|
|
793
|
+
}> | null | undefined;
|
|
794
|
+
startBackpack?: import("mongoose").Types.DocumentArray<{
|
|
768
795
|
variants: number[];
|
|
769
796
|
id?: string | null | undefined;
|
|
770
797
|
_id?: unknown;
|
|
@@ -776,8 +803,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
776
803
|
variants: number[];
|
|
777
804
|
id?: string | null | undefined;
|
|
778
805
|
_id?: unknown;
|
|
779
|
-
}
|
|
780
|
-
startPickaxe
|
|
806
|
+
}> | null | undefined;
|
|
807
|
+
startPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
781
808
|
variants: number[];
|
|
782
809
|
id?: string | null | undefined;
|
|
783
810
|
_id?: unknown;
|
|
@@ -789,8 +816,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
789
816
|
variants: number[];
|
|
790
817
|
id?: string | null | undefined;
|
|
791
818
|
_id?: unknown;
|
|
792
|
-
}
|
|
793
|
-
startShoes
|
|
819
|
+
}> | null | undefined;
|
|
820
|
+
startShoes?: import("mongoose").Types.DocumentArray<{
|
|
794
821
|
variants: number[];
|
|
795
822
|
id?: string | null | undefined;
|
|
796
823
|
_id?: unknown;
|
|
@@ -802,8 +829,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
802
829
|
variants: number[];
|
|
803
830
|
id?: string | null | undefined;
|
|
804
831
|
_id?: unknown;
|
|
805
|
-
}
|
|
806
|
-
startBanner
|
|
832
|
+
}> | null | undefined;
|
|
833
|
+
startBanner?: import("mongoose").Types.DocumentArray<{
|
|
807
834
|
id?: string | null | undefined;
|
|
808
835
|
_id?: unknown;
|
|
809
836
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -812,8 +839,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
812
839
|
}> & {
|
|
813
840
|
id?: string | null | undefined;
|
|
814
841
|
_id?: unknown;
|
|
815
|
-
}
|
|
816
|
-
startBannerColor
|
|
842
|
+
}> | null | undefined;
|
|
843
|
+
startBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
817
844
|
id?: string | null | undefined;
|
|
818
845
|
_id?: unknown;
|
|
819
846
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -822,8 +849,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
822
849
|
}> & {
|
|
823
850
|
id?: string | null | undefined;
|
|
824
851
|
_id?: unknown;
|
|
825
|
-
}
|
|
826
|
-
joinOutfit
|
|
852
|
+
}> | null | undefined;
|
|
853
|
+
joinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
827
854
|
variants: number[];
|
|
828
855
|
id?: string | null | undefined;
|
|
829
856
|
_id?: unknown;
|
|
@@ -835,8 +862,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
835
862
|
variants: number[];
|
|
836
863
|
id?: string | null | undefined;
|
|
837
864
|
_id?: unknown;
|
|
838
|
-
}
|
|
839
|
-
joinBackpack
|
|
865
|
+
}> | null | undefined;
|
|
866
|
+
joinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
840
867
|
variants: number[];
|
|
841
868
|
id?: string | null | undefined;
|
|
842
869
|
_id?: unknown;
|
|
@@ -848,8 +875,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
848
875
|
variants: number[];
|
|
849
876
|
id?: string | null | undefined;
|
|
850
877
|
_id?: unknown;
|
|
851
|
-
}
|
|
852
|
-
joinPickaxe
|
|
878
|
+
}> | null | undefined;
|
|
879
|
+
joinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
853
880
|
variants: number[];
|
|
854
881
|
id?: string | null | undefined;
|
|
855
882
|
_id?: unknown;
|
|
@@ -861,8 +888,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
861
888
|
variants: number[];
|
|
862
889
|
id?: string | null | undefined;
|
|
863
890
|
_id?: unknown;
|
|
864
|
-
}
|
|
865
|
-
joinEmote
|
|
891
|
+
}> | null | undefined;
|
|
892
|
+
joinEmote?: import("mongoose").Types.DocumentArray<{
|
|
866
893
|
id?: string | null | undefined;
|
|
867
894
|
_id?: unknown;
|
|
868
895
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -871,8 +898,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
871
898
|
}> & {
|
|
872
899
|
id?: string | null | undefined;
|
|
873
900
|
_id?: unknown;
|
|
874
|
-
}
|
|
875
|
-
joinShoes
|
|
901
|
+
}> | null | undefined;
|
|
902
|
+
joinShoes?: import("mongoose").Types.DocumentArray<{
|
|
876
903
|
variants: number[];
|
|
877
904
|
id?: string | null | undefined;
|
|
878
905
|
_id?: unknown;
|
|
@@ -884,8 +911,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
884
911
|
variants: number[];
|
|
885
912
|
id?: string | null | undefined;
|
|
886
913
|
_id?: unknown;
|
|
887
|
-
}
|
|
888
|
-
joinBanner
|
|
914
|
+
}> | null | undefined;
|
|
915
|
+
joinBanner?: import("mongoose").Types.DocumentArray<{
|
|
889
916
|
id?: string | null | undefined;
|
|
890
917
|
_id?: unknown;
|
|
891
918
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -894,8 +921,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
894
921
|
}> & {
|
|
895
922
|
id?: string | null | undefined;
|
|
896
923
|
_id?: unknown;
|
|
897
|
-
}
|
|
898
|
-
joinBannerColor
|
|
924
|
+
}> | null | undefined;
|
|
925
|
+
joinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
899
926
|
id?: string | null | undefined;
|
|
900
927
|
_id?: unknown;
|
|
901
928
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -904,8 +931,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
904
931
|
}> & {
|
|
905
932
|
id?: string | null | undefined;
|
|
906
933
|
_id?: unknown;
|
|
907
|
-
}
|
|
908
|
-
memberJoinOutfit
|
|
934
|
+
}> | null | undefined;
|
|
935
|
+
memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
909
936
|
variants: number[];
|
|
910
937
|
id?: string | null | undefined;
|
|
911
938
|
_id?: unknown;
|
|
@@ -917,8 +944,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
917
944
|
variants: number[];
|
|
918
945
|
id?: string | null | undefined;
|
|
919
946
|
_id?: unknown;
|
|
920
|
-
}
|
|
921
|
-
memberJoinBackpack
|
|
947
|
+
}> | null | undefined;
|
|
948
|
+
memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
922
949
|
variants: number[];
|
|
923
950
|
id?: string | null | undefined;
|
|
924
951
|
_id?: unknown;
|
|
@@ -930,8 +957,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
930
957
|
variants: number[];
|
|
931
958
|
id?: string | null | undefined;
|
|
932
959
|
_id?: unknown;
|
|
933
|
-
}
|
|
934
|
-
memberJoinPickaxe
|
|
960
|
+
}> | null | undefined;
|
|
961
|
+
memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
935
962
|
variants: number[];
|
|
936
963
|
id?: string | null | undefined;
|
|
937
964
|
_id?: unknown;
|
|
@@ -943,8 +970,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
943
970
|
variants: number[];
|
|
944
971
|
id?: string | null | undefined;
|
|
945
972
|
_id?: unknown;
|
|
946
|
-
}
|
|
947
|
-
memberJoinEmote
|
|
973
|
+
}> | null | undefined;
|
|
974
|
+
memberJoinEmote?: import("mongoose").Types.DocumentArray<{
|
|
948
975
|
id?: string | null | undefined;
|
|
949
976
|
_id?: unknown;
|
|
950
977
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -953,8 +980,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
953
980
|
}> & {
|
|
954
981
|
id?: string | null | undefined;
|
|
955
982
|
_id?: unknown;
|
|
956
|
-
}
|
|
957
|
-
memberJoinShoes
|
|
983
|
+
}> | null | undefined;
|
|
984
|
+
memberJoinShoes?: import("mongoose").Types.DocumentArray<{
|
|
958
985
|
variants: number[];
|
|
959
986
|
id?: string | null | undefined;
|
|
960
987
|
_id?: unknown;
|
|
@@ -966,8 +993,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
966
993
|
variants: number[];
|
|
967
994
|
id?: string | null | undefined;
|
|
968
995
|
_id?: unknown;
|
|
969
|
-
}
|
|
970
|
-
memberJoinBanner
|
|
996
|
+
}> | null | undefined;
|
|
997
|
+
memberJoinBanner?: import("mongoose").Types.DocumentArray<{
|
|
971
998
|
id?: string | null | undefined;
|
|
972
999
|
_id?: unknown;
|
|
973
1000
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -976,8 +1003,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
976
1003
|
}> & {
|
|
977
1004
|
id?: string | null | undefined;
|
|
978
1005
|
_id?: unknown;
|
|
979
|
-
}
|
|
980
|
-
memberJoinBannerColor
|
|
1006
|
+
}> | null | undefined;
|
|
1007
|
+
memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
981
1008
|
id?: string | null | undefined;
|
|
982
1009
|
_id?: unknown;
|
|
983
1010
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -986,36 +1013,23 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
986
1013
|
}> & {
|
|
987
1014
|
id?: string | null | undefined;
|
|
988
1015
|
_id?: unknown;
|
|
989
|
-
}
|
|
990
|
-
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
991
|
-
statusInterval?: number | null | undefined;
|
|
992
|
-
inviteTimeout?: number | null | undefined;
|
|
993
|
-
maxBotsPerLobby?: number | null | undefined;
|
|
994
|
-
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
995
|
-
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
996
|
-
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
997
|
-
allowMatchmaking?: boolean | null | undefined;
|
|
998
|
-
disableMatchmakingChecks?: boolean | null | undefined;
|
|
999
|
-
disableJoinMessages?: boolean | null | undefined;
|
|
1000
|
-
acceptFriendRequests?: boolean | null | undefined;
|
|
1001
|
-
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
1002
|
-
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
1003
|
-
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
1004
|
-
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
1016
|
+
}> | null | undefined;
|
|
1005
1017
|
} | null | undefined;
|
|
1006
1018
|
}> & {
|
|
1007
1019
|
owner: import("mongoose").Types.ObjectId;
|
|
1008
1020
|
name: string;
|
|
1009
1021
|
disabled?: boolean | null | undefined;
|
|
1010
1022
|
config?: {
|
|
1011
|
-
replyLangs
|
|
1012
|
-
searchLangs
|
|
1013
|
-
platform
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1023
|
+
replyLangs?: string[] | null | undefined;
|
|
1024
|
+
searchLangs?: string[] | null | undefined;
|
|
1025
|
+
platform?: string[] | null | undefined;
|
|
1026
|
+
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
1027
|
+
prefixes?: string[] | null | undefined;
|
|
1028
|
+
statusText?: string[] | null | undefined;
|
|
1029
|
+
statusInterval?: number | null | undefined;
|
|
1030
|
+
level?: number[] | null | undefined;
|
|
1031
|
+
bpLevel?: number[] | null | undefined;
|
|
1032
|
+
extraOwners?: import("mongoose").Types.DocumentArray<{
|
|
1019
1033
|
id?: string | null | undefined;
|
|
1020
1034
|
_id?: unknown;
|
|
1021
1035
|
name?: string | null | undefined;
|
|
@@ -1027,8 +1041,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1027
1041
|
id?: string | null | undefined;
|
|
1028
1042
|
_id?: unknown;
|
|
1029
1043
|
name?: string | null | undefined;
|
|
1030
|
-
}
|
|
1031
|
-
admins
|
|
1044
|
+
}> | null | undefined;
|
|
1045
|
+
admins?: import("mongoose").Types.DocumentArray<{
|
|
1032
1046
|
id?: string | null | undefined;
|
|
1033
1047
|
_id?: unknown;
|
|
1034
1048
|
name?: string | null | undefined;
|
|
@@ -1040,8 +1054,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1040
1054
|
id?: string | null | undefined;
|
|
1041
1055
|
_id?: unknown;
|
|
1042
1056
|
name?: string | null | undefined;
|
|
1043
|
-
}
|
|
1044
|
-
whitelistUsers
|
|
1057
|
+
}> | null | undefined;
|
|
1058
|
+
whitelistUsers?: import("mongoose").Types.DocumentArray<{
|
|
1045
1059
|
id?: string | null | undefined;
|
|
1046
1060
|
_id?: unknown;
|
|
1047
1061
|
name?: string | null | undefined;
|
|
@@ -1053,8 +1067,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1053
1067
|
id?: string | null | undefined;
|
|
1054
1068
|
_id?: unknown;
|
|
1055
1069
|
name?: string | null | undefined;
|
|
1056
|
-
}
|
|
1057
|
-
blacklistUsers
|
|
1070
|
+
}> | null | undefined;
|
|
1071
|
+
blacklistUsers?: import("mongoose").Types.DocumentArray<{
|
|
1058
1072
|
id?: string | null | undefined;
|
|
1059
1073
|
_id?: unknown;
|
|
1060
1074
|
name?: string | null | undefined;
|
|
@@ -1066,8 +1080,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1066
1080
|
id?: string | null | undefined;
|
|
1067
1081
|
_id?: unknown;
|
|
1068
1082
|
name?: string | null | undefined;
|
|
1069
|
-
}
|
|
1070
|
-
excludedAutoAddFriends
|
|
1083
|
+
}> | null | undefined;
|
|
1084
|
+
excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
|
|
1071
1085
|
id?: string | null | undefined;
|
|
1072
1086
|
_id?: unknown;
|
|
1073
1087
|
name?: string | null | undefined;
|
|
@@ -1079,8 +1093,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1079
1093
|
id?: string | null | undefined;
|
|
1080
1094
|
_id?: unknown;
|
|
1081
1095
|
name?: string | null | undefined;
|
|
1082
|
-
}
|
|
1083
|
-
otherBots
|
|
1096
|
+
}> | null | undefined;
|
|
1097
|
+
otherBots?: import("mongoose").Types.DocumentArray<{
|
|
1084
1098
|
id?: string | null | undefined;
|
|
1085
1099
|
_id?: unknown;
|
|
1086
1100
|
name?: string | null | undefined;
|
|
@@ -1092,122 +1106,141 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1092
1106
|
id?: string | null | undefined;
|
|
1093
1107
|
_id?: unknown;
|
|
1094
1108
|
name?: string | null | undefined;
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1109
|
+
}> | null | undefined;
|
|
1110
|
+
inviteTimeout?: number | null | undefined;
|
|
1111
|
+
maxBotsPerLobby?: number | null | undefined;
|
|
1112
|
+
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
1113
|
+
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
1114
|
+
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
1115
|
+
allowMatchmaking?: boolean | null | undefined;
|
|
1116
|
+
disableMatchmakingChecks?: boolean | null | undefined;
|
|
1117
|
+
disableJoinMessages?: boolean | null | undefined;
|
|
1118
|
+
acceptFriendRequests?: boolean | null | undefined;
|
|
1119
|
+
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
1120
|
+
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
1121
|
+
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
1122
|
+
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
1123
|
+
usernameTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1101
1124
|
_id?: unknown;
|
|
1125
|
+
triggers?: string[] | null | undefined;
|
|
1126
|
+
detectionMethods?: number[] | null | undefined;
|
|
1127
|
+
actions?: number[] | null | undefined;
|
|
1128
|
+
messages?: string[] | null | undefined;
|
|
1102
1129
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1103
|
-
triggers: string[];
|
|
1104
|
-
detectionMethods: number[];
|
|
1105
|
-
actions: number[];
|
|
1106
|
-
messages: string[];
|
|
1107
1130
|
_id?: unknown;
|
|
1131
|
+
triggers?: string[] | null | undefined;
|
|
1132
|
+
detectionMethods?: number[] | null | undefined;
|
|
1133
|
+
actions?: number[] | null | undefined;
|
|
1134
|
+
messages?: string[] | null | undefined;
|
|
1108
1135
|
}> & {
|
|
1109
|
-
triggers: string[];
|
|
1110
|
-
detectionMethods: number[];
|
|
1111
|
-
actions: number[];
|
|
1112
|
-
messages: string[];
|
|
1113
1136
|
_id?: unknown;
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1137
|
+
triggers?: string[] | null | undefined;
|
|
1138
|
+
detectionMethods?: number[] | null | undefined;
|
|
1139
|
+
actions?: number[] | null | undefined;
|
|
1140
|
+
messages?: string[] | null | undefined;
|
|
1141
|
+
}> | null | undefined;
|
|
1142
|
+
messageContentTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1120
1143
|
_id?: unknown;
|
|
1144
|
+
triggers?: string[] | null | undefined;
|
|
1145
|
+
detectionMethods?: number[] | null | undefined;
|
|
1146
|
+
actions?: number[] | null | undefined;
|
|
1147
|
+
messages?: string[] | null | undefined;
|
|
1121
1148
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1122
|
-
triggers: string[];
|
|
1123
|
-
detectionMethods: number[];
|
|
1124
|
-
actions: number[];
|
|
1125
|
-
messages: string[];
|
|
1126
1149
|
_id?: unknown;
|
|
1150
|
+
triggers?: string[] | null | undefined;
|
|
1151
|
+
detectionMethods?: number[] | null | undefined;
|
|
1152
|
+
actions?: number[] | null | undefined;
|
|
1153
|
+
messages?: string[] | null | undefined;
|
|
1127
1154
|
}> & {
|
|
1128
|
-
triggers: string[];
|
|
1129
|
-
detectionMethods: number[];
|
|
1130
|
-
actions: number[];
|
|
1131
|
-
messages: string[];
|
|
1132
1155
|
_id?: unknown;
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1156
|
+
triggers?: string[] | null | undefined;
|
|
1157
|
+
detectionMethods?: number[] | null | undefined;
|
|
1158
|
+
actions?: number[] | null | undefined;
|
|
1159
|
+
messages?: string[] | null | undefined;
|
|
1160
|
+
}> | null | undefined;
|
|
1161
|
+
cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1139
1162
|
_id?: unknown;
|
|
1163
|
+
triggers?: string[] | null | undefined;
|
|
1164
|
+
detectionMethods?: number[] | null | undefined;
|
|
1165
|
+
actions?: number[] | null | undefined;
|
|
1166
|
+
messages?: string[] | null | undefined;
|
|
1140
1167
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1141
|
-
triggers: string[];
|
|
1142
|
-
detectionMethods: number[];
|
|
1143
|
-
actions: number[];
|
|
1144
|
-
messages: string[];
|
|
1145
1168
|
_id?: unknown;
|
|
1169
|
+
triggers?: string[] | null | undefined;
|
|
1170
|
+
detectionMethods?: number[] | null | undefined;
|
|
1171
|
+
actions?: number[] | null | undefined;
|
|
1172
|
+
messages?: string[] | null | undefined;
|
|
1146
1173
|
}> & {
|
|
1147
|
-
triggers: string[];
|
|
1148
|
-
detectionMethods: number[];
|
|
1149
|
-
actions: number[];
|
|
1150
|
-
messages: string[];
|
|
1151
1174
|
_id?: unknown;
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1175
|
+
triggers?: string[] | null | undefined;
|
|
1176
|
+
detectionMethods?: number[] | null | undefined;
|
|
1177
|
+
actions?: number[] | null | undefined;
|
|
1178
|
+
messages?: string[] | null | undefined;
|
|
1179
|
+
}> | null | undefined;
|
|
1180
|
+
addFriendTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1158
1181
|
_id?: unknown;
|
|
1182
|
+
triggers?: string[] | null | undefined;
|
|
1183
|
+
detectionMethods?: number[] | null | undefined;
|
|
1184
|
+
actions?: number[] | null | undefined;
|
|
1185
|
+
messages?: string[] | null | undefined;
|
|
1159
1186
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1160
|
-
triggers: string[];
|
|
1161
|
-
detectionMethods: number[];
|
|
1162
|
-
actions: number[];
|
|
1163
|
-
messages: string[];
|
|
1164
1187
|
_id?: unknown;
|
|
1188
|
+
triggers?: string[] | null | undefined;
|
|
1189
|
+
detectionMethods?: number[] | null | undefined;
|
|
1190
|
+
actions?: number[] | null | undefined;
|
|
1191
|
+
messages?: string[] | null | undefined;
|
|
1165
1192
|
}> & {
|
|
1166
|
-
triggers: string[];
|
|
1167
|
-
detectionMethods: number[];
|
|
1168
|
-
actions: number[];
|
|
1169
|
-
messages: string[];
|
|
1170
1193
|
_id?: unknown;
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1194
|
+
triggers?: string[] | null | undefined;
|
|
1195
|
+
detectionMethods?: number[] | null | undefined;
|
|
1196
|
+
actions?: number[] | null | undefined;
|
|
1197
|
+
messages?: string[] | null | undefined;
|
|
1198
|
+
}> | null | undefined;
|
|
1199
|
+
memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1177
1200
|
_id?: unknown;
|
|
1201
|
+
triggers?: string[] | null | undefined;
|
|
1202
|
+
detectionMethods?: number[] | null | undefined;
|
|
1203
|
+
actions?: number[] | null | undefined;
|
|
1204
|
+
messages?: string[] | null | undefined;
|
|
1178
1205
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1179
|
-
triggers: string[];
|
|
1180
|
-
detectionMethods: number[];
|
|
1181
|
-
actions: number[];
|
|
1182
|
-
messages: string[];
|
|
1183
1206
|
_id?: unknown;
|
|
1207
|
+
triggers?: string[] | null | undefined;
|
|
1208
|
+
detectionMethods?: number[] | null | undefined;
|
|
1209
|
+
actions?: number[] | null | undefined;
|
|
1210
|
+
messages?: string[] | null | undefined;
|
|
1184
1211
|
}> & {
|
|
1185
|
-
triggers: string[];
|
|
1186
|
-
detectionMethods: number[];
|
|
1187
|
-
actions: number[];
|
|
1188
|
-
messages: string[];
|
|
1189
1212
|
_id?: unknown;
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1213
|
+
triggers?: string[] | null | undefined;
|
|
1214
|
+
detectionMethods?: number[] | null | undefined;
|
|
1215
|
+
actions?: number[] | null | undefined;
|
|
1216
|
+
messages?: string[] | null | undefined;
|
|
1217
|
+
}> | null | undefined;
|
|
1218
|
+
changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1196
1219
|
_id?: unknown;
|
|
1220
|
+
triggers?: string[] | null | undefined;
|
|
1221
|
+
detectionMethods?: number[] | null | undefined;
|
|
1222
|
+
actions?: number[] | null | undefined;
|
|
1223
|
+
messages?: string[] | null | undefined;
|
|
1197
1224
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1198
|
-
triggers: string[];
|
|
1199
|
-
detectionMethods: number[];
|
|
1200
|
-
actions: number[];
|
|
1201
|
-
messages: string[];
|
|
1202
1225
|
_id?: unknown;
|
|
1226
|
+
triggers?: string[] | null | undefined;
|
|
1227
|
+
detectionMethods?: number[] | null | undefined;
|
|
1228
|
+
actions?: number[] | null | undefined;
|
|
1229
|
+
messages?: string[] | null | undefined;
|
|
1203
1230
|
}> & {
|
|
1204
|
-
triggers: string[];
|
|
1205
|
-
detectionMethods: number[];
|
|
1206
|
-
actions: number[];
|
|
1207
|
-
messages: string[];
|
|
1208
1231
|
_id?: unknown;
|
|
1209
|
-
|
|
1210
|
-
|
|
1232
|
+
triggers?: string[] | null | undefined;
|
|
1233
|
+
detectionMethods?: number[] | null | undefined;
|
|
1234
|
+
actions?: number[] | null | undefined;
|
|
1235
|
+
messages?: string[] | null | undefined;
|
|
1236
|
+
}> | null | undefined;
|
|
1237
|
+
onlyOwnerCommands?: string[] | null | undefined;
|
|
1238
|
+
onlyAdminCommands?: string[] | null | undefined;
|
|
1239
|
+
onlyWhitelistUsersCommands?: string[] | null | undefined;
|
|
1240
|
+
onlyFriendsCommands?: string[] | null | undefined;
|
|
1241
|
+
onlyPartyMembersCommands?: string[] | null | undefined;
|
|
1242
|
+
onlyWhisperCommands?: string[] | null | undefined;
|
|
1243
|
+
startOutfit?: import("mongoose").Types.DocumentArray<{
|
|
1211
1244
|
variants: number[];
|
|
1212
1245
|
id?: string | null | undefined;
|
|
1213
1246
|
_id?: unknown;
|
|
@@ -1219,8 +1252,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1219
1252
|
variants: number[];
|
|
1220
1253
|
id?: string | null | undefined;
|
|
1221
1254
|
_id?: unknown;
|
|
1222
|
-
}
|
|
1223
|
-
startBackpack
|
|
1255
|
+
}> | null | undefined;
|
|
1256
|
+
startBackpack?: import("mongoose").Types.DocumentArray<{
|
|
1224
1257
|
variants: number[];
|
|
1225
1258
|
id?: string | null | undefined;
|
|
1226
1259
|
_id?: unknown;
|
|
@@ -1232,8 +1265,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1232
1265
|
variants: number[];
|
|
1233
1266
|
id?: string | null | undefined;
|
|
1234
1267
|
_id?: unknown;
|
|
1235
|
-
}
|
|
1236
|
-
startPickaxe
|
|
1268
|
+
}> | null | undefined;
|
|
1269
|
+
startPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
1237
1270
|
variants: number[];
|
|
1238
1271
|
id?: string | null | undefined;
|
|
1239
1272
|
_id?: unknown;
|
|
@@ -1245,8 +1278,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1245
1278
|
variants: number[];
|
|
1246
1279
|
id?: string | null | undefined;
|
|
1247
1280
|
_id?: unknown;
|
|
1248
|
-
}
|
|
1249
|
-
startShoes
|
|
1281
|
+
}> | null | undefined;
|
|
1282
|
+
startShoes?: import("mongoose").Types.DocumentArray<{
|
|
1250
1283
|
variants: number[];
|
|
1251
1284
|
id?: string | null | undefined;
|
|
1252
1285
|
_id?: unknown;
|
|
@@ -1258,8 +1291,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1258
1291
|
variants: number[];
|
|
1259
1292
|
id?: string | null | undefined;
|
|
1260
1293
|
_id?: unknown;
|
|
1261
|
-
}
|
|
1262
|
-
startBanner
|
|
1294
|
+
}> | null | undefined;
|
|
1295
|
+
startBanner?: import("mongoose").Types.DocumentArray<{
|
|
1263
1296
|
id?: string | null | undefined;
|
|
1264
1297
|
_id?: unknown;
|
|
1265
1298
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1268,8 +1301,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1268
1301
|
}> & {
|
|
1269
1302
|
id?: string | null | undefined;
|
|
1270
1303
|
_id?: unknown;
|
|
1271
|
-
}
|
|
1272
|
-
startBannerColor
|
|
1304
|
+
}> | null | undefined;
|
|
1305
|
+
startBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
1273
1306
|
id?: string | null | undefined;
|
|
1274
1307
|
_id?: unknown;
|
|
1275
1308
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1278,8 +1311,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1278
1311
|
}> & {
|
|
1279
1312
|
id?: string | null | undefined;
|
|
1280
1313
|
_id?: unknown;
|
|
1281
|
-
}
|
|
1282
|
-
joinOutfit
|
|
1314
|
+
}> | null | undefined;
|
|
1315
|
+
joinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
1283
1316
|
variants: number[];
|
|
1284
1317
|
id?: string | null | undefined;
|
|
1285
1318
|
_id?: unknown;
|
|
@@ -1291,8 +1324,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1291
1324
|
variants: number[];
|
|
1292
1325
|
id?: string | null | undefined;
|
|
1293
1326
|
_id?: unknown;
|
|
1294
|
-
}
|
|
1295
|
-
joinBackpack
|
|
1327
|
+
}> | null | undefined;
|
|
1328
|
+
joinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
1296
1329
|
variants: number[];
|
|
1297
1330
|
id?: string | null | undefined;
|
|
1298
1331
|
_id?: unknown;
|
|
@@ -1304,8 +1337,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1304
1337
|
variants: number[];
|
|
1305
1338
|
id?: string | null | undefined;
|
|
1306
1339
|
_id?: unknown;
|
|
1307
|
-
}
|
|
1308
|
-
joinPickaxe
|
|
1340
|
+
}> | null | undefined;
|
|
1341
|
+
joinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
1309
1342
|
variants: number[];
|
|
1310
1343
|
id?: string | null | undefined;
|
|
1311
1344
|
_id?: unknown;
|
|
@@ -1317,8 +1350,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1317
1350
|
variants: number[];
|
|
1318
1351
|
id?: string | null | undefined;
|
|
1319
1352
|
_id?: unknown;
|
|
1320
|
-
}
|
|
1321
|
-
joinEmote
|
|
1353
|
+
}> | null | undefined;
|
|
1354
|
+
joinEmote?: import("mongoose").Types.DocumentArray<{
|
|
1322
1355
|
id?: string | null | undefined;
|
|
1323
1356
|
_id?: unknown;
|
|
1324
1357
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1327,8 +1360,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1327
1360
|
}> & {
|
|
1328
1361
|
id?: string | null | undefined;
|
|
1329
1362
|
_id?: unknown;
|
|
1330
|
-
}
|
|
1331
|
-
joinShoes
|
|
1363
|
+
}> | null | undefined;
|
|
1364
|
+
joinShoes?: import("mongoose").Types.DocumentArray<{
|
|
1332
1365
|
variants: number[];
|
|
1333
1366
|
id?: string | null | undefined;
|
|
1334
1367
|
_id?: unknown;
|
|
@@ -1340,8 +1373,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1340
1373
|
variants: number[];
|
|
1341
1374
|
id?: string | null | undefined;
|
|
1342
1375
|
_id?: unknown;
|
|
1343
|
-
}
|
|
1344
|
-
joinBanner
|
|
1376
|
+
}> | null | undefined;
|
|
1377
|
+
joinBanner?: import("mongoose").Types.DocumentArray<{
|
|
1345
1378
|
id?: string | null | undefined;
|
|
1346
1379
|
_id?: unknown;
|
|
1347
1380
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1350,8 +1383,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1350
1383
|
}> & {
|
|
1351
1384
|
id?: string | null | undefined;
|
|
1352
1385
|
_id?: unknown;
|
|
1353
|
-
}
|
|
1354
|
-
joinBannerColor
|
|
1386
|
+
}> | null | undefined;
|
|
1387
|
+
joinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
1355
1388
|
id?: string | null | undefined;
|
|
1356
1389
|
_id?: unknown;
|
|
1357
1390
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1360,8 +1393,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1360
1393
|
}> & {
|
|
1361
1394
|
id?: string | null | undefined;
|
|
1362
1395
|
_id?: unknown;
|
|
1363
|
-
}
|
|
1364
|
-
memberJoinOutfit
|
|
1396
|
+
}> | null | undefined;
|
|
1397
|
+
memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
1365
1398
|
variants: number[];
|
|
1366
1399
|
id?: string | null | undefined;
|
|
1367
1400
|
_id?: unknown;
|
|
@@ -1373,8 +1406,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1373
1406
|
variants: number[];
|
|
1374
1407
|
id?: string | null | undefined;
|
|
1375
1408
|
_id?: unknown;
|
|
1376
|
-
}
|
|
1377
|
-
memberJoinBackpack
|
|
1409
|
+
}> | null | undefined;
|
|
1410
|
+
memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
1378
1411
|
variants: number[];
|
|
1379
1412
|
id?: string | null | undefined;
|
|
1380
1413
|
_id?: unknown;
|
|
@@ -1386,8 +1419,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1386
1419
|
variants: number[];
|
|
1387
1420
|
id?: string | null | undefined;
|
|
1388
1421
|
_id?: unknown;
|
|
1389
|
-
}
|
|
1390
|
-
memberJoinPickaxe
|
|
1422
|
+
}> | null | undefined;
|
|
1423
|
+
memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
1391
1424
|
variants: number[];
|
|
1392
1425
|
id?: string | null | undefined;
|
|
1393
1426
|
_id?: unknown;
|
|
@@ -1399,8 +1432,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1399
1432
|
variants: number[];
|
|
1400
1433
|
id?: string | null | undefined;
|
|
1401
1434
|
_id?: unknown;
|
|
1402
|
-
}
|
|
1403
|
-
memberJoinEmote
|
|
1435
|
+
}> | null | undefined;
|
|
1436
|
+
memberJoinEmote?: import("mongoose").Types.DocumentArray<{
|
|
1404
1437
|
id?: string | null | undefined;
|
|
1405
1438
|
_id?: unknown;
|
|
1406
1439
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1409,8 +1442,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1409
1442
|
}> & {
|
|
1410
1443
|
id?: string | null | undefined;
|
|
1411
1444
|
_id?: unknown;
|
|
1412
|
-
}
|
|
1413
|
-
memberJoinShoes
|
|
1445
|
+
}> | null | undefined;
|
|
1446
|
+
memberJoinShoes?: import("mongoose").Types.DocumentArray<{
|
|
1414
1447
|
variants: number[];
|
|
1415
1448
|
id?: string | null | undefined;
|
|
1416
1449
|
_id?: unknown;
|
|
@@ -1422,8 +1455,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1422
1455
|
variants: number[];
|
|
1423
1456
|
id?: string | null | undefined;
|
|
1424
1457
|
_id?: unknown;
|
|
1425
|
-
}
|
|
1426
|
-
memberJoinBanner
|
|
1458
|
+
}> | null | undefined;
|
|
1459
|
+
memberJoinBanner?: import("mongoose").Types.DocumentArray<{
|
|
1427
1460
|
id?: string | null | undefined;
|
|
1428
1461
|
_id?: unknown;
|
|
1429
1462
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1432,8 +1465,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1432
1465
|
}> & {
|
|
1433
1466
|
id?: string | null | undefined;
|
|
1434
1467
|
_id?: unknown;
|
|
1435
|
-
}
|
|
1436
|
-
memberJoinBannerColor
|
|
1468
|
+
}> | null | undefined;
|
|
1469
|
+
memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
1437
1470
|
id?: string | null | undefined;
|
|
1438
1471
|
_id?: unknown;
|
|
1439
1472
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1442,22 +1475,7 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1442
1475
|
}> & {
|
|
1443
1476
|
id?: string | null | undefined;
|
|
1444
1477
|
_id?: unknown;
|
|
1445
|
-
}
|
|
1446
|
-
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
1447
|
-
statusInterval?: number | null | undefined;
|
|
1448
|
-
inviteTimeout?: number | null | undefined;
|
|
1449
|
-
maxBotsPerLobby?: number | null | undefined;
|
|
1450
|
-
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
1451
|
-
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
1452
|
-
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
1453
|
-
allowMatchmaking?: boolean | null | undefined;
|
|
1454
|
-
disableMatchmakingChecks?: boolean | null | undefined;
|
|
1455
|
-
disableJoinMessages?: boolean | null | undefined;
|
|
1456
|
-
acceptFriendRequests?: boolean | null | undefined;
|
|
1457
|
-
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
1458
|
-
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
1459
|
-
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
1460
|
-
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
1478
|
+
}> | null | undefined;
|
|
1461
1479
|
} | null | undefined;
|
|
1462
1480
|
} & {
|
|
1463
1481
|
_id: import("mongoose").Types.ObjectId;
|
|
@@ -1468,14 +1486,16 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1468
1486
|
name: string;
|
|
1469
1487
|
disabled?: boolean | null | undefined;
|
|
1470
1488
|
config?: {
|
|
1471
|
-
replyLangs
|
|
1472
|
-
searchLangs
|
|
1473
|
-
platform
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1489
|
+
replyLangs?: string[] | null | undefined;
|
|
1490
|
+
searchLangs?: string[] | null | undefined;
|
|
1491
|
+
platform?: string[] | null | undefined;
|
|
1492
|
+
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
1493
|
+
prefixes?: string[] | null | undefined;
|
|
1494
|
+
statusText?: string[] | null | undefined;
|
|
1495
|
+
statusInterval?: number | null | undefined;
|
|
1496
|
+
level?: number[] | null | undefined;
|
|
1497
|
+
bpLevel?: number[] | null | undefined;
|
|
1498
|
+
extraOwners?: import("mongoose").Types.DocumentArray<{
|
|
1479
1499
|
id?: string | null | undefined;
|
|
1480
1500
|
_id?: unknown;
|
|
1481
1501
|
name?: string | null | undefined;
|
|
@@ -1487,8 +1507,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1487
1507
|
id?: string | null | undefined;
|
|
1488
1508
|
_id?: unknown;
|
|
1489
1509
|
name?: string | null | undefined;
|
|
1490
|
-
}
|
|
1491
|
-
admins
|
|
1510
|
+
}> | null | undefined;
|
|
1511
|
+
admins?: import("mongoose").Types.DocumentArray<{
|
|
1492
1512
|
id?: string | null | undefined;
|
|
1493
1513
|
_id?: unknown;
|
|
1494
1514
|
name?: string | null | undefined;
|
|
@@ -1500,8 +1520,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1500
1520
|
id?: string | null | undefined;
|
|
1501
1521
|
_id?: unknown;
|
|
1502
1522
|
name?: string | null | undefined;
|
|
1503
|
-
}
|
|
1504
|
-
whitelistUsers
|
|
1523
|
+
}> | null | undefined;
|
|
1524
|
+
whitelistUsers?: import("mongoose").Types.DocumentArray<{
|
|
1505
1525
|
id?: string | null | undefined;
|
|
1506
1526
|
_id?: unknown;
|
|
1507
1527
|
name?: string | null | undefined;
|
|
@@ -1513,8 +1533,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1513
1533
|
id?: string | null | undefined;
|
|
1514
1534
|
_id?: unknown;
|
|
1515
1535
|
name?: string | null | undefined;
|
|
1516
|
-
}
|
|
1517
|
-
blacklistUsers
|
|
1536
|
+
}> | null | undefined;
|
|
1537
|
+
blacklistUsers?: import("mongoose").Types.DocumentArray<{
|
|
1518
1538
|
id?: string | null | undefined;
|
|
1519
1539
|
_id?: unknown;
|
|
1520
1540
|
name?: string | null | undefined;
|
|
@@ -1526,8 +1546,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1526
1546
|
id?: string | null | undefined;
|
|
1527
1547
|
_id?: unknown;
|
|
1528
1548
|
name?: string | null | undefined;
|
|
1529
|
-
}
|
|
1530
|
-
excludedAutoAddFriends
|
|
1549
|
+
}> | null | undefined;
|
|
1550
|
+
excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
|
|
1531
1551
|
id?: string | null | undefined;
|
|
1532
1552
|
_id?: unknown;
|
|
1533
1553
|
name?: string | null | undefined;
|
|
@@ -1539,8 +1559,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1539
1559
|
id?: string | null | undefined;
|
|
1540
1560
|
_id?: unknown;
|
|
1541
1561
|
name?: string | null | undefined;
|
|
1542
|
-
}
|
|
1543
|
-
otherBots
|
|
1562
|
+
}> | null | undefined;
|
|
1563
|
+
otherBots?: import("mongoose").Types.DocumentArray<{
|
|
1544
1564
|
id?: string | null | undefined;
|
|
1545
1565
|
_id?: unknown;
|
|
1546
1566
|
name?: string | null | undefined;
|
|
@@ -1552,122 +1572,141 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1552
1572
|
id?: string | null | undefined;
|
|
1553
1573
|
_id?: unknown;
|
|
1554
1574
|
name?: string | null | undefined;
|
|
1555
|
-
}
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1575
|
+
}> | null | undefined;
|
|
1576
|
+
inviteTimeout?: number | null | undefined;
|
|
1577
|
+
maxBotsPerLobby?: number | null | undefined;
|
|
1578
|
+
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
1579
|
+
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
1580
|
+
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
1581
|
+
allowMatchmaking?: boolean | null | undefined;
|
|
1582
|
+
disableMatchmakingChecks?: boolean | null | undefined;
|
|
1583
|
+
disableJoinMessages?: boolean | null | undefined;
|
|
1584
|
+
acceptFriendRequests?: boolean | null | undefined;
|
|
1585
|
+
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
1586
|
+
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
1587
|
+
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
1588
|
+
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
1589
|
+
usernameTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1561
1590
|
_id?: unknown;
|
|
1591
|
+
triggers?: string[] | null | undefined;
|
|
1592
|
+
detectionMethods?: number[] | null | undefined;
|
|
1593
|
+
actions?: number[] | null | undefined;
|
|
1594
|
+
messages?: string[] | null | undefined;
|
|
1562
1595
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1563
|
-
triggers: string[];
|
|
1564
|
-
detectionMethods: number[];
|
|
1565
|
-
actions: number[];
|
|
1566
|
-
messages: string[];
|
|
1567
1596
|
_id?: unknown;
|
|
1597
|
+
triggers?: string[] | null | undefined;
|
|
1598
|
+
detectionMethods?: number[] | null | undefined;
|
|
1599
|
+
actions?: number[] | null | undefined;
|
|
1600
|
+
messages?: string[] | null | undefined;
|
|
1568
1601
|
}> & {
|
|
1569
|
-
triggers: string[];
|
|
1570
|
-
detectionMethods: number[];
|
|
1571
|
-
actions: number[];
|
|
1572
|
-
messages: string[];
|
|
1573
1602
|
_id?: unknown;
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1603
|
+
triggers?: string[] | null | undefined;
|
|
1604
|
+
detectionMethods?: number[] | null | undefined;
|
|
1605
|
+
actions?: number[] | null | undefined;
|
|
1606
|
+
messages?: string[] | null | undefined;
|
|
1607
|
+
}> | null | undefined;
|
|
1608
|
+
messageContentTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1580
1609
|
_id?: unknown;
|
|
1610
|
+
triggers?: string[] | null | undefined;
|
|
1611
|
+
detectionMethods?: number[] | null | undefined;
|
|
1612
|
+
actions?: number[] | null | undefined;
|
|
1613
|
+
messages?: string[] | null | undefined;
|
|
1581
1614
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1582
|
-
triggers: string[];
|
|
1583
|
-
detectionMethods: number[];
|
|
1584
|
-
actions: number[];
|
|
1585
|
-
messages: string[];
|
|
1586
1615
|
_id?: unknown;
|
|
1616
|
+
triggers?: string[] | null | undefined;
|
|
1617
|
+
detectionMethods?: number[] | null | undefined;
|
|
1618
|
+
actions?: number[] | null | undefined;
|
|
1619
|
+
messages?: string[] | null | undefined;
|
|
1587
1620
|
}> & {
|
|
1588
|
-
triggers: string[];
|
|
1589
|
-
detectionMethods: number[];
|
|
1590
|
-
actions: number[];
|
|
1591
|
-
messages: string[];
|
|
1592
1621
|
_id?: unknown;
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1622
|
+
triggers?: string[] | null | undefined;
|
|
1623
|
+
detectionMethods?: number[] | null | undefined;
|
|
1624
|
+
actions?: number[] | null | undefined;
|
|
1625
|
+
messages?: string[] | null | undefined;
|
|
1626
|
+
}> | null | undefined;
|
|
1627
|
+
cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1599
1628
|
_id?: unknown;
|
|
1629
|
+
triggers?: string[] | null | undefined;
|
|
1630
|
+
detectionMethods?: number[] | null | undefined;
|
|
1631
|
+
actions?: number[] | null | undefined;
|
|
1632
|
+
messages?: string[] | null | undefined;
|
|
1600
1633
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1601
|
-
triggers: string[];
|
|
1602
|
-
detectionMethods: number[];
|
|
1603
|
-
actions: number[];
|
|
1604
|
-
messages: string[];
|
|
1605
1634
|
_id?: unknown;
|
|
1635
|
+
triggers?: string[] | null | undefined;
|
|
1636
|
+
detectionMethods?: number[] | null | undefined;
|
|
1637
|
+
actions?: number[] | null | undefined;
|
|
1638
|
+
messages?: string[] | null | undefined;
|
|
1606
1639
|
}> & {
|
|
1607
|
-
triggers: string[];
|
|
1608
|
-
detectionMethods: number[];
|
|
1609
|
-
actions: number[];
|
|
1610
|
-
messages: string[];
|
|
1611
1640
|
_id?: unknown;
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1641
|
+
triggers?: string[] | null | undefined;
|
|
1642
|
+
detectionMethods?: number[] | null | undefined;
|
|
1643
|
+
actions?: number[] | null | undefined;
|
|
1644
|
+
messages?: string[] | null | undefined;
|
|
1645
|
+
}> | null | undefined;
|
|
1646
|
+
addFriendTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1618
1647
|
_id?: unknown;
|
|
1648
|
+
triggers?: string[] | null | undefined;
|
|
1649
|
+
detectionMethods?: number[] | null | undefined;
|
|
1650
|
+
actions?: number[] | null | undefined;
|
|
1651
|
+
messages?: string[] | null | undefined;
|
|
1619
1652
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1620
|
-
triggers: string[];
|
|
1621
|
-
detectionMethods: number[];
|
|
1622
|
-
actions: number[];
|
|
1623
|
-
messages: string[];
|
|
1624
1653
|
_id?: unknown;
|
|
1654
|
+
triggers?: string[] | null | undefined;
|
|
1655
|
+
detectionMethods?: number[] | null | undefined;
|
|
1656
|
+
actions?: number[] | null | undefined;
|
|
1657
|
+
messages?: string[] | null | undefined;
|
|
1625
1658
|
}> & {
|
|
1626
|
-
triggers: string[];
|
|
1627
|
-
detectionMethods: number[];
|
|
1628
|
-
actions: number[];
|
|
1629
|
-
messages: string[];
|
|
1630
1659
|
_id?: unknown;
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1660
|
+
triggers?: string[] | null | undefined;
|
|
1661
|
+
detectionMethods?: number[] | null | undefined;
|
|
1662
|
+
actions?: number[] | null | undefined;
|
|
1663
|
+
messages?: string[] | null | undefined;
|
|
1664
|
+
}> | null | undefined;
|
|
1665
|
+
memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1637
1666
|
_id?: unknown;
|
|
1667
|
+
triggers?: string[] | null | undefined;
|
|
1668
|
+
detectionMethods?: number[] | null | undefined;
|
|
1669
|
+
actions?: number[] | null | undefined;
|
|
1670
|
+
messages?: string[] | null | undefined;
|
|
1638
1671
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1639
|
-
triggers: string[];
|
|
1640
|
-
detectionMethods: number[];
|
|
1641
|
-
actions: number[];
|
|
1642
|
-
messages: string[];
|
|
1643
1672
|
_id?: unknown;
|
|
1673
|
+
triggers?: string[] | null | undefined;
|
|
1674
|
+
detectionMethods?: number[] | null | undefined;
|
|
1675
|
+
actions?: number[] | null | undefined;
|
|
1676
|
+
messages?: string[] | null | undefined;
|
|
1644
1677
|
}> & {
|
|
1645
|
-
triggers: string[];
|
|
1646
|
-
detectionMethods: number[];
|
|
1647
|
-
actions: number[];
|
|
1648
|
-
messages: string[];
|
|
1649
1678
|
_id?: unknown;
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1679
|
+
triggers?: string[] | null | undefined;
|
|
1680
|
+
detectionMethods?: number[] | null | undefined;
|
|
1681
|
+
actions?: number[] | null | undefined;
|
|
1682
|
+
messages?: string[] | null | undefined;
|
|
1683
|
+
}> | null | undefined;
|
|
1684
|
+
changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
1656
1685
|
_id?: unknown;
|
|
1686
|
+
triggers?: string[] | null | undefined;
|
|
1687
|
+
detectionMethods?: number[] | null | undefined;
|
|
1688
|
+
actions?: number[] | null | undefined;
|
|
1689
|
+
messages?: string[] | null | undefined;
|
|
1657
1690
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
1658
|
-
triggers: string[];
|
|
1659
|
-
detectionMethods: number[];
|
|
1660
|
-
actions: number[];
|
|
1661
|
-
messages: string[];
|
|
1662
1691
|
_id?: unknown;
|
|
1692
|
+
triggers?: string[] | null | undefined;
|
|
1693
|
+
detectionMethods?: number[] | null | undefined;
|
|
1694
|
+
actions?: number[] | null | undefined;
|
|
1695
|
+
messages?: string[] | null | undefined;
|
|
1663
1696
|
}> & {
|
|
1664
|
-
triggers: string[];
|
|
1665
|
-
detectionMethods: number[];
|
|
1666
|
-
actions: number[];
|
|
1667
|
-
messages: string[];
|
|
1668
1697
|
_id?: unknown;
|
|
1669
|
-
|
|
1670
|
-
|
|
1698
|
+
triggers?: string[] | null | undefined;
|
|
1699
|
+
detectionMethods?: number[] | null | undefined;
|
|
1700
|
+
actions?: number[] | null | undefined;
|
|
1701
|
+
messages?: string[] | null | undefined;
|
|
1702
|
+
}> | null | undefined;
|
|
1703
|
+
onlyOwnerCommands?: string[] | null | undefined;
|
|
1704
|
+
onlyAdminCommands?: string[] | null | undefined;
|
|
1705
|
+
onlyWhitelistUsersCommands?: string[] | null | undefined;
|
|
1706
|
+
onlyFriendsCommands?: string[] | null | undefined;
|
|
1707
|
+
onlyPartyMembersCommands?: string[] | null | undefined;
|
|
1708
|
+
onlyWhisperCommands?: string[] | null | undefined;
|
|
1709
|
+
startOutfit?: import("mongoose").Types.DocumentArray<{
|
|
1671
1710
|
variants: number[];
|
|
1672
1711
|
id?: string | null | undefined;
|
|
1673
1712
|
_id?: unknown;
|
|
@@ -1679,8 +1718,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1679
1718
|
variants: number[];
|
|
1680
1719
|
id?: string | null | undefined;
|
|
1681
1720
|
_id?: unknown;
|
|
1682
|
-
}
|
|
1683
|
-
startBackpack
|
|
1721
|
+
}> | null | undefined;
|
|
1722
|
+
startBackpack?: import("mongoose").Types.DocumentArray<{
|
|
1684
1723
|
variants: number[];
|
|
1685
1724
|
id?: string | null | undefined;
|
|
1686
1725
|
_id?: unknown;
|
|
@@ -1692,8 +1731,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1692
1731
|
variants: number[];
|
|
1693
1732
|
id?: string | null | undefined;
|
|
1694
1733
|
_id?: unknown;
|
|
1695
|
-
}
|
|
1696
|
-
startPickaxe
|
|
1734
|
+
}> | null | undefined;
|
|
1735
|
+
startPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
1697
1736
|
variants: number[];
|
|
1698
1737
|
id?: string | null | undefined;
|
|
1699
1738
|
_id?: unknown;
|
|
@@ -1705,8 +1744,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1705
1744
|
variants: number[];
|
|
1706
1745
|
id?: string | null | undefined;
|
|
1707
1746
|
_id?: unknown;
|
|
1708
|
-
}
|
|
1709
|
-
startShoes
|
|
1747
|
+
}> | null | undefined;
|
|
1748
|
+
startShoes?: import("mongoose").Types.DocumentArray<{
|
|
1710
1749
|
variants: number[];
|
|
1711
1750
|
id?: string | null | undefined;
|
|
1712
1751
|
_id?: unknown;
|
|
@@ -1718,8 +1757,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1718
1757
|
variants: number[];
|
|
1719
1758
|
id?: string | null | undefined;
|
|
1720
1759
|
_id?: unknown;
|
|
1721
|
-
}
|
|
1722
|
-
startBanner
|
|
1760
|
+
}> | null | undefined;
|
|
1761
|
+
startBanner?: import("mongoose").Types.DocumentArray<{
|
|
1723
1762
|
id?: string | null | undefined;
|
|
1724
1763
|
_id?: unknown;
|
|
1725
1764
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1728,8 +1767,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1728
1767
|
}> & {
|
|
1729
1768
|
id?: string | null | undefined;
|
|
1730
1769
|
_id?: unknown;
|
|
1731
|
-
}
|
|
1732
|
-
startBannerColor
|
|
1770
|
+
}> | null | undefined;
|
|
1771
|
+
startBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
1733
1772
|
id?: string | null | undefined;
|
|
1734
1773
|
_id?: unknown;
|
|
1735
1774
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1738,8 +1777,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1738
1777
|
}> & {
|
|
1739
1778
|
id?: string | null | undefined;
|
|
1740
1779
|
_id?: unknown;
|
|
1741
|
-
}
|
|
1742
|
-
joinOutfit
|
|
1780
|
+
}> | null | undefined;
|
|
1781
|
+
joinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
1743
1782
|
variants: number[];
|
|
1744
1783
|
id?: string | null | undefined;
|
|
1745
1784
|
_id?: unknown;
|
|
@@ -1751,8 +1790,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1751
1790
|
variants: number[];
|
|
1752
1791
|
id?: string | null | undefined;
|
|
1753
1792
|
_id?: unknown;
|
|
1754
|
-
}
|
|
1755
|
-
joinBackpack
|
|
1793
|
+
}> | null | undefined;
|
|
1794
|
+
joinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
1756
1795
|
variants: number[];
|
|
1757
1796
|
id?: string | null | undefined;
|
|
1758
1797
|
_id?: unknown;
|
|
@@ -1764,8 +1803,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1764
1803
|
variants: number[];
|
|
1765
1804
|
id?: string | null | undefined;
|
|
1766
1805
|
_id?: unknown;
|
|
1767
|
-
}
|
|
1768
|
-
joinPickaxe
|
|
1806
|
+
}> | null | undefined;
|
|
1807
|
+
joinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
1769
1808
|
variants: number[];
|
|
1770
1809
|
id?: string | null | undefined;
|
|
1771
1810
|
_id?: unknown;
|
|
@@ -1777,8 +1816,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1777
1816
|
variants: number[];
|
|
1778
1817
|
id?: string | null | undefined;
|
|
1779
1818
|
_id?: unknown;
|
|
1780
|
-
}
|
|
1781
|
-
joinEmote
|
|
1819
|
+
}> | null | undefined;
|
|
1820
|
+
joinEmote?: import("mongoose").Types.DocumentArray<{
|
|
1782
1821
|
id?: string | null | undefined;
|
|
1783
1822
|
_id?: unknown;
|
|
1784
1823
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1787,8 +1826,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1787
1826
|
}> & {
|
|
1788
1827
|
id?: string | null | undefined;
|
|
1789
1828
|
_id?: unknown;
|
|
1790
|
-
}
|
|
1791
|
-
joinShoes
|
|
1829
|
+
}> | null | undefined;
|
|
1830
|
+
joinShoes?: import("mongoose").Types.DocumentArray<{
|
|
1792
1831
|
variants: number[];
|
|
1793
1832
|
id?: string | null | undefined;
|
|
1794
1833
|
_id?: unknown;
|
|
@@ -1800,8 +1839,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1800
1839
|
variants: number[];
|
|
1801
1840
|
id?: string | null | undefined;
|
|
1802
1841
|
_id?: unknown;
|
|
1803
|
-
}
|
|
1804
|
-
joinBanner
|
|
1842
|
+
}> | null | undefined;
|
|
1843
|
+
joinBanner?: import("mongoose").Types.DocumentArray<{
|
|
1805
1844
|
id?: string | null | undefined;
|
|
1806
1845
|
_id?: unknown;
|
|
1807
1846
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1810,8 +1849,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1810
1849
|
}> & {
|
|
1811
1850
|
id?: string | null | undefined;
|
|
1812
1851
|
_id?: unknown;
|
|
1813
|
-
}
|
|
1814
|
-
joinBannerColor
|
|
1852
|
+
}> | null | undefined;
|
|
1853
|
+
joinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
1815
1854
|
id?: string | null | undefined;
|
|
1816
1855
|
_id?: unknown;
|
|
1817
1856
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1820,8 +1859,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1820
1859
|
}> & {
|
|
1821
1860
|
id?: string | null | undefined;
|
|
1822
1861
|
_id?: unknown;
|
|
1823
|
-
}
|
|
1824
|
-
memberJoinOutfit
|
|
1862
|
+
}> | null | undefined;
|
|
1863
|
+
memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
1825
1864
|
variants: number[];
|
|
1826
1865
|
id?: string | null | undefined;
|
|
1827
1866
|
_id?: unknown;
|
|
@@ -1833,8 +1872,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1833
1872
|
variants: number[];
|
|
1834
1873
|
id?: string | null | undefined;
|
|
1835
1874
|
_id?: unknown;
|
|
1836
|
-
}
|
|
1837
|
-
memberJoinBackpack
|
|
1875
|
+
}> | null | undefined;
|
|
1876
|
+
memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
1838
1877
|
variants: number[];
|
|
1839
1878
|
id?: string | null | undefined;
|
|
1840
1879
|
_id?: unknown;
|
|
@@ -1846,8 +1885,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1846
1885
|
variants: number[];
|
|
1847
1886
|
id?: string | null | undefined;
|
|
1848
1887
|
_id?: unknown;
|
|
1849
|
-
}
|
|
1850
|
-
memberJoinPickaxe
|
|
1888
|
+
}> | null | undefined;
|
|
1889
|
+
memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
1851
1890
|
variants: number[];
|
|
1852
1891
|
id?: string | null | undefined;
|
|
1853
1892
|
_id?: unknown;
|
|
@@ -1859,8 +1898,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1859
1898
|
variants: number[];
|
|
1860
1899
|
id?: string | null | undefined;
|
|
1861
1900
|
_id?: unknown;
|
|
1862
|
-
}
|
|
1863
|
-
memberJoinEmote
|
|
1901
|
+
}> | null | undefined;
|
|
1902
|
+
memberJoinEmote?: import("mongoose").Types.DocumentArray<{
|
|
1864
1903
|
id?: string | null | undefined;
|
|
1865
1904
|
_id?: unknown;
|
|
1866
1905
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1869,8 +1908,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1869
1908
|
}> & {
|
|
1870
1909
|
id?: string | null | undefined;
|
|
1871
1910
|
_id?: unknown;
|
|
1872
|
-
}
|
|
1873
|
-
memberJoinShoes
|
|
1911
|
+
}> | null | undefined;
|
|
1912
|
+
memberJoinShoes?: import("mongoose").Types.DocumentArray<{
|
|
1874
1913
|
variants: number[];
|
|
1875
1914
|
id?: string | null | undefined;
|
|
1876
1915
|
_id?: unknown;
|
|
@@ -1882,8 +1921,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1882
1921
|
variants: number[];
|
|
1883
1922
|
id?: string | null | undefined;
|
|
1884
1923
|
_id?: unknown;
|
|
1885
|
-
}
|
|
1886
|
-
memberJoinBanner
|
|
1924
|
+
}> | null | undefined;
|
|
1925
|
+
memberJoinBanner?: import("mongoose").Types.DocumentArray<{
|
|
1887
1926
|
id?: string | null | undefined;
|
|
1888
1927
|
_id?: unknown;
|
|
1889
1928
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1892,8 +1931,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1892
1931
|
}> & {
|
|
1893
1932
|
id?: string | null | undefined;
|
|
1894
1933
|
_id?: unknown;
|
|
1895
|
-
}
|
|
1896
|
-
memberJoinBannerColor
|
|
1934
|
+
}> | null | undefined;
|
|
1935
|
+
memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
1897
1936
|
id?: string | null | undefined;
|
|
1898
1937
|
_id?: unknown;
|
|
1899
1938
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -1902,36 +1941,23 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1902
1941
|
}> & {
|
|
1903
1942
|
id?: string | null | undefined;
|
|
1904
1943
|
_id?: unknown;
|
|
1905
|
-
}
|
|
1906
|
-
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
1907
|
-
statusInterval?: number | null | undefined;
|
|
1908
|
-
inviteTimeout?: number | null | undefined;
|
|
1909
|
-
maxBotsPerLobby?: number | null | undefined;
|
|
1910
|
-
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
1911
|
-
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
1912
|
-
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
1913
|
-
allowMatchmaking?: boolean | null | undefined;
|
|
1914
|
-
disableMatchmakingChecks?: boolean | null | undefined;
|
|
1915
|
-
disableJoinMessages?: boolean | null | undefined;
|
|
1916
|
-
acceptFriendRequests?: boolean | null | undefined;
|
|
1917
|
-
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
1918
|
-
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
1919
|
-
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
1920
|
-
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
1944
|
+
}> | null | undefined;
|
|
1921
1945
|
} | null | undefined;
|
|
1922
1946
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
1923
1947
|
owner: import("mongoose").Types.ObjectId;
|
|
1924
1948
|
name: string;
|
|
1925
1949
|
disabled?: boolean | null | undefined;
|
|
1926
1950
|
config?: {
|
|
1927
|
-
replyLangs
|
|
1928
|
-
searchLangs
|
|
1929
|
-
platform
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1951
|
+
replyLangs?: string[] | null | undefined;
|
|
1952
|
+
searchLangs?: string[] | null | undefined;
|
|
1953
|
+
platform?: string[] | null | undefined;
|
|
1954
|
+
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
1955
|
+
prefixes?: string[] | null | undefined;
|
|
1956
|
+
statusText?: string[] | null | undefined;
|
|
1957
|
+
statusInterval?: number | null | undefined;
|
|
1958
|
+
level?: number[] | null | undefined;
|
|
1959
|
+
bpLevel?: number[] | null | undefined;
|
|
1960
|
+
extraOwners?: import("mongoose").Types.DocumentArray<{
|
|
1935
1961
|
id?: string | null | undefined;
|
|
1936
1962
|
_id?: unknown;
|
|
1937
1963
|
name?: string | null | undefined;
|
|
@@ -1943,8 +1969,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1943
1969
|
id?: string | null | undefined;
|
|
1944
1970
|
_id?: unknown;
|
|
1945
1971
|
name?: string | null | undefined;
|
|
1946
|
-
}
|
|
1947
|
-
admins
|
|
1972
|
+
}> | null | undefined;
|
|
1973
|
+
admins?: import("mongoose").Types.DocumentArray<{
|
|
1948
1974
|
id?: string | null | undefined;
|
|
1949
1975
|
_id?: unknown;
|
|
1950
1976
|
name?: string | null | undefined;
|
|
@@ -1956,8 +1982,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1956
1982
|
id?: string | null | undefined;
|
|
1957
1983
|
_id?: unknown;
|
|
1958
1984
|
name?: string | null | undefined;
|
|
1959
|
-
}
|
|
1960
|
-
whitelistUsers
|
|
1985
|
+
}> | null | undefined;
|
|
1986
|
+
whitelistUsers?: import("mongoose").Types.DocumentArray<{
|
|
1961
1987
|
id?: string | null | undefined;
|
|
1962
1988
|
_id?: unknown;
|
|
1963
1989
|
name?: string | null | undefined;
|
|
@@ -1969,8 +1995,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1969
1995
|
id?: string | null | undefined;
|
|
1970
1996
|
_id?: unknown;
|
|
1971
1997
|
name?: string | null | undefined;
|
|
1972
|
-
}
|
|
1973
|
-
blacklistUsers
|
|
1998
|
+
}> | null | undefined;
|
|
1999
|
+
blacklistUsers?: import("mongoose").Types.DocumentArray<{
|
|
1974
2000
|
id?: string | null | undefined;
|
|
1975
2001
|
_id?: unknown;
|
|
1976
2002
|
name?: string | null | undefined;
|
|
@@ -1982,8 +2008,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1982
2008
|
id?: string | null | undefined;
|
|
1983
2009
|
_id?: unknown;
|
|
1984
2010
|
name?: string | null | undefined;
|
|
1985
|
-
}
|
|
1986
|
-
excludedAutoAddFriends
|
|
2011
|
+
}> | null | undefined;
|
|
2012
|
+
excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
|
|
1987
2013
|
id?: string | null | undefined;
|
|
1988
2014
|
_id?: unknown;
|
|
1989
2015
|
name?: string | null | undefined;
|
|
@@ -1995,8 +2021,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
1995
2021
|
id?: string | null | undefined;
|
|
1996
2022
|
_id?: unknown;
|
|
1997
2023
|
name?: string | null | undefined;
|
|
1998
|
-
}
|
|
1999
|
-
otherBots
|
|
2024
|
+
}> | null | undefined;
|
|
2025
|
+
otherBots?: import("mongoose").Types.DocumentArray<{
|
|
2000
2026
|
id?: string | null | undefined;
|
|
2001
2027
|
_id?: unknown;
|
|
2002
2028
|
name?: string | null | undefined;
|
|
@@ -2008,122 +2034,141 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2008
2034
|
id?: string | null | undefined;
|
|
2009
2035
|
_id?: unknown;
|
|
2010
2036
|
name?: string | null | undefined;
|
|
2011
|
-
}
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2037
|
+
}> | null | undefined;
|
|
2038
|
+
inviteTimeout?: number | null | undefined;
|
|
2039
|
+
maxBotsPerLobby?: number | null | undefined;
|
|
2040
|
+
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
2041
|
+
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
2042
|
+
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
2043
|
+
allowMatchmaking?: boolean | null | undefined;
|
|
2044
|
+
disableMatchmakingChecks?: boolean | null | undefined;
|
|
2045
|
+
disableJoinMessages?: boolean | null | undefined;
|
|
2046
|
+
acceptFriendRequests?: boolean | null | undefined;
|
|
2047
|
+
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
2048
|
+
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
2049
|
+
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
2050
|
+
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
2051
|
+
usernameTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2017
2052
|
_id?: unknown;
|
|
2053
|
+
triggers?: string[] | null | undefined;
|
|
2054
|
+
detectionMethods?: number[] | null | undefined;
|
|
2055
|
+
actions?: number[] | null | undefined;
|
|
2056
|
+
messages?: string[] | null | undefined;
|
|
2018
2057
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2019
|
-
triggers: string[];
|
|
2020
|
-
detectionMethods: number[];
|
|
2021
|
-
actions: number[];
|
|
2022
|
-
messages: string[];
|
|
2023
2058
|
_id?: unknown;
|
|
2059
|
+
triggers?: string[] | null | undefined;
|
|
2060
|
+
detectionMethods?: number[] | null | undefined;
|
|
2061
|
+
actions?: number[] | null | undefined;
|
|
2062
|
+
messages?: string[] | null | undefined;
|
|
2024
2063
|
}> & {
|
|
2025
|
-
triggers: string[];
|
|
2026
|
-
detectionMethods: number[];
|
|
2027
|
-
actions: number[];
|
|
2028
|
-
messages: string[];
|
|
2029
2064
|
_id?: unknown;
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2065
|
+
triggers?: string[] | null | undefined;
|
|
2066
|
+
detectionMethods?: number[] | null | undefined;
|
|
2067
|
+
actions?: number[] | null | undefined;
|
|
2068
|
+
messages?: string[] | null | undefined;
|
|
2069
|
+
}> | null | undefined;
|
|
2070
|
+
messageContentTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2036
2071
|
_id?: unknown;
|
|
2072
|
+
triggers?: string[] | null | undefined;
|
|
2073
|
+
detectionMethods?: number[] | null | undefined;
|
|
2074
|
+
actions?: number[] | null | undefined;
|
|
2075
|
+
messages?: string[] | null | undefined;
|
|
2037
2076
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2038
|
-
triggers: string[];
|
|
2039
|
-
detectionMethods: number[];
|
|
2040
|
-
actions: number[];
|
|
2041
|
-
messages: string[];
|
|
2042
2077
|
_id?: unknown;
|
|
2078
|
+
triggers?: string[] | null | undefined;
|
|
2079
|
+
detectionMethods?: number[] | null | undefined;
|
|
2080
|
+
actions?: number[] | null | undefined;
|
|
2081
|
+
messages?: string[] | null | undefined;
|
|
2043
2082
|
}> & {
|
|
2044
|
-
triggers: string[];
|
|
2045
|
-
detectionMethods: number[];
|
|
2046
|
-
actions: number[];
|
|
2047
|
-
messages: string[];
|
|
2048
2083
|
_id?: unknown;
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2084
|
+
triggers?: string[] | null | undefined;
|
|
2085
|
+
detectionMethods?: number[] | null | undefined;
|
|
2086
|
+
actions?: number[] | null | undefined;
|
|
2087
|
+
messages?: string[] | null | undefined;
|
|
2088
|
+
}> | null | undefined;
|
|
2089
|
+
cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2055
2090
|
_id?: unknown;
|
|
2091
|
+
triggers?: string[] | null | undefined;
|
|
2092
|
+
detectionMethods?: number[] | null | undefined;
|
|
2093
|
+
actions?: number[] | null | undefined;
|
|
2094
|
+
messages?: string[] | null | undefined;
|
|
2056
2095
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2057
|
-
triggers: string[];
|
|
2058
|
-
detectionMethods: number[];
|
|
2059
|
-
actions: number[];
|
|
2060
|
-
messages: string[];
|
|
2061
2096
|
_id?: unknown;
|
|
2097
|
+
triggers?: string[] | null | undefined;
|
|
2098
|
+
detectionMethods?: number[] | null | undefined;
|
|
2099
|
+
actions?: number[] | null | undefined;
|
|
2100
|
+
messages?: string[] | null | undefined;
|
|
2062
2101
|
}> & {
|
|
2063
|
-
triggers: string[];
|
|
2064
|
-
detectionMethods: number[];
|
|
2065
|
-
actions: number[];
|
|
2066
|
-
messages: string[];
|
|
2067
2102
|
_id?: unknown;
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2103
|
+
triggers?: string[] | null | undefined;
|
|
2104
|
+
detectionMethods?: number[] | null | undefined;
|
|
2105
|
+
actions?: number[] | null | undefined;
|
|
2106
|
+
messages?: string[] | null | undefined;
|
|
2107
|
+
}> | null | undefined;
|
|
2108
|
+
addFriendTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2074
2109
|
_id?: unknown;
|
|
2110
|
+
triggers?: string[] | null | undefined;
|
|
2111
|
+
detectionMethods?: number[] | null | undefined;
|
|
2112
|
+
actions?: number[] | null | undefined;
|
|
2113
|
+
messages?: string[] | null | undefined;
|
|
2075
2114
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2076
|
-
triggers: string[];
|
|
2077
|
-
detectionMethods: number[];
|
|
2078
|
-
actions: number[];
|
|
2079
|
-
messages: string[];
|
|
2080
2115
|
_id?: unknown;
|
|
2116
|
+
triggers?: string[] | null | undefined;
|
|
2117
|
+
detectionMethods?: number[] | null | undefined;
|
|
2118
|
+
actions?: number[] | null | undefined;
|
|
2119
|
+
messages?: string[] | null | undefined;
|
|
2081
2120
|
}> & {
|
|
2082
|
-
triggers: string[];
|
|
2083
|
-
detectionMethods: number[];
|
|
2084
|
-
actions: number[];
|
|
2085
|
-
messages: string[];
|
|
2086
2121
|
_id?: unknown;
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2122
|
+
triggers?: string[] | null | undefined;
|
|
2123
|
+
detectionMethods?: number[] | null | undefined;
|
|
2124
|
+
actions?: number[] | null | undefined;
|
|
2125
|
+
messages?: string[] | null | undefined;
|
|
2126
|
+
}> | null | undefined;
|
|
2127
|
+
memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2093
2128
|
_id?: unknown;
|
|
2129
|
+
triggers?: string[] | null | undefined;
|
|
2130
|
+
detectionMethods?: number[] | null | undefined;
|
|
2131
|
+
actions?: number[] | null | undefined;
|
|
2132
|
+
messages?: string[] | null | undefined;
|
|
2094
2133
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2095
|
-
triggers: string[];
|
|
2096
|
-
detectionMethods: number[];
|
|
2097
|
-
actions: number[];
|
|
2098
|
-
messages: string[];
|
|
2099
2134
|
_id?: unknown;
|
|
2135
|
+
triggers?: string[] | null | undefined;
|
|
2136
|
+
detectionMethods?: number[] | null | undefined;
|
|
2137
|
+
actions?: number[] | null | undefined;
|
|
2138
|
+
messages?: string[] | null | undefined;
|
|
2100
2139
|
}> & {
|
|
2101
|
-
triggers: string[];
|
|
2102
|
-
detectionMethods: number[];
|
|
2103
|
-
actions: number[];
|
|
2104
|
-
messages: string[];
|
|
2105
2140
|
_id?: unknown;
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2141
|
+
triggers?: string[] | null | undefined;
|
|
2142
|
+
detectionMethods?: number[] | null | undefined;
|
|
2143
|
+
actions?: number[] | null | undefined;
|
|
2144
|
+
messages?: string[] | null | undefined;
|
|
2145
|
+
}> | null | undefined;
|
|
2146
|
+
changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2112
2147
|
_id?: unknown;
|
|
2148
|
+
triggers?: string[] | null | undefined;
|
|
2149
|
+
detectionMethods?: number[] | null | undefined;
|
|
2150
|
+
actions?: number[] | null | undefined;
|
|
2151
|
+
messages?: string[] | null | undefined;
|
|
2113
2152
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2114
|
-
triggers: string[];
|
|
2115
|
-
detectionMethods: number[];
|
|
2116
|
-
actions: number[];
|
|
2117
|
-
messages: string[];
|
|
2118
2153
|
_id?: unknown;
|
|
2154
|
+
triggers?: string[] | null | undefined;
|
|
2155
|
+
detectionMethods?: number[] | null | undefined;
|
|
2156
|
+
actions?: number[] | null | undefined;
|
|
2157
|
+
messages?: string[] | null | undefined;
|
|
2119
2158
|
}> & {
|
|
2120
|
-
triggers: string[];
|
|
2121
|
-
detectionMethods: number[];
|
|
2122
|
-
actions: number[];
|
|
2123
|
-
messages: string[];
|
|
2124
2159
|
_id?: unknown;
|
|
2125
|
-
|
|
2126
|
-
|
|
2160
|
+
triggers?: string[] | null | undefined;
|
|
2161
|
+
detectionMethods?: number[] | null | undefined;
|
|
2162
|
+
actions?: number[] | null | undefined;
|
|
2163
|
+
messages?: string[] | null | undefined;
|
|
2164
|
+
}> | null | undefined;
|
|
2165
|
+
onlyOwnerCommands?: string[] | null | undefined;
|
|
2166
|
+
onlyAdminCommands?: string[] | null | undefined;
|
|
2167
|
+
onlyWhitelistUsersCommands?: string[] | null | undefined;
|
|
2168
|
+
onlyFriendsCommands?: string[] | null | undefined;
|
|
2169
|
+
onlyPartyMembersCommands?: string[] | null | undefined;
|
|
2170
|
+
onlyWhisperCommands?: string[] | null | undefined;
|
|
2171
|
+
startOutfit?: import("mongoose").Types.DocumentArray<{
|
|
2127
2172
|
variants: number[];
|
|
2128
2173
|
id?: string | null | undefined;
|
|
2129
2174
|
_id?: unknown;
|
|
@@ -2135,8 +2180,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2135
2180
|
variants: number[];
|
|
2136
2181
|
id?: string | null | undefined;
|
|
2137
2182
|
_id?: unknown;
|
|
2138
|
-
}
|
|
2139
|
-
startBackpack
|
|
2183
|
+
}> | null | undefined;
|
|
2184
|
+
startBackpack?: import("mongoose").Types.DocumentArray<{
|
|
2140
2185
|
variants: number[];
|
|
2141
2186
|
id?: string | null | undefined;
|
|
2142
2187
|
_id?: unknown;
|
|
@@ -2148,8 +2193,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2148
2193
|
variants: number[];
|
|
2149
2194
|
id?: string | null | undefined;
|
|
2150
2195
|
_id?: unknown;
|
|
2151
|
-
}
|
|
2152
|
-
startPickaxe
|
|
2196
|
+
}> | null | undefined;
|
|
2197
|
+
startPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
2153
2198
|
variants: number[];
|
|
2154
2199
|
id?: string | null | undefined;
|
|
2155
2200
|
_id?: unknown;
|
|
@@ -2161,8 +2206,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2161
2206
|
variants: number[];
|
|
2162
2207
|
id?: string | null | undefined;
|
|
2163
2208
|
_id?: unknown;
|
|
2164
|
-
}
|
|
2165
|
-
startShoes
|
|
2209
|
+
}> | null | undefined;
|
|
2210
|
+
startShoes?: import("mongoose").Types.DocumentArray<{
|
|
2166
2211
|
variants: number[];
|
|
2167
2212
|
id?: string | null | undefined;
|
|
2168
2213
|
_id?: unknown;
|
|
@@ -2174,8 +2219,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2174
2219
|
variants: number[];
|
|
2175
2220
|
id?: string | null | undefined;
|
|
2176
2221
|
_id?: unknown;
|
|
2177
|
-
}
|
|
2178
|
-
startBanner
|
|
2222
|
+
}> | null | undefined;
|
|
2223
|
+
startBanner?: import("mongoose").Types.DocumentArray<{
|
|
2179
2224
|
id?: string | null | undefined;
|
|
2180
2225
|
_id?: unknown;
|
|
2181
2226
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2184,8 +2229,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2184
2229
|
}> & {
|
|
2185
2230
|
id?: string | null | undefined;
|
|
2186
2231
|
_id?: unknown;
|
|
2187
|
-
}
|
|
2188
|
-
startBannerColor
|
|
2232
|
+
}> | null | undefined;
|
|
2233
|
+
startBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
2189
2234
|
id?: string | null | undefined;
|
|
2190
2235
|
_id?: unknown;
|
|
2191
2236
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2194,8 +2239,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2194
2239
|
}> & {
|
|
2195
2240
|
id?: string | null | undefined;
|
|
2196
2241
|
_id?: unknown;
|
|
2197
|
-
}
|
|
2198
|
-
joinOutfit
|
|
2242
|
+
}> | null | undefined;
|
|
2243
|
+
joinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
2199
2244
|
variants: number[];
|
|
2200
2245
|
id?: string | null | undefined;
|
|
2201
2246
|
_id?: unknown;
|
|
@@ -2207,8 +2252,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2207
2252
|
variants: number[];
|
|
2208
2253
|
id?: string | null | undefined;
|
|
2209
2254
|
_id?: unknown;
|
|
2210
|
-
}
|
|
2211
|
-
joinBackpack
|
|
2255
|
+
}> | null | undefined;
|
|
2256
|
+
joinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
2212
2257
|
variants: number[];
|
|
2213
2258
|
id?: string | null | undefined;
|
|
2214
2259
|
_id?: unknown;
|
|
@@ -2220,8 +2265,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2220
2265
|
variants: number[];
|
|
2221
2266
|
id?: string | null | undefined;
|
|
2222
2267
|
_id?: unknown;
|
|
2223
|
-
}
|
|
2224
|
-
joinPickaxe
|
|
2268
|
+
}> | null | undefined;
|
|
2269
|
+
joinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
2225
2270
|
variants: number[];
|
|
2226
2271
|
id?: string | null | undefined;
|
|
2227
2272
|
_id?: unknown;
|
|
@@ -2233,8 +2278,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2233
2278
|
variants: number[];
|
|
2234
2279
|
id?: string | null | undefined;
|
|
2235
2280
|
_id?: unknown;
|
|
2236
|
-
}
|
|
2237
|
-
joinEmote
|
|
2281
|
+
}> | null | undefined;
|
|
2282
|
+
joinEmote?: import("mongoose").Types.DocumentArray<{
|
|
2238
2283
|
id?: string | null | undefined;
|
|
2239
2284
|
_id?: unknown;
|
|
2240
2285
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2243,8 +2288,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2243
2288
|
}> & {
|
|
2244
2289
|
id?: string | null | undefined;
|
|
2245
2290
|
_id?: unknown;
|
|
2246
|
-
}
|
|
2247
|
-
joinShoes
|
|
2291
|
+
}> | null | undefined;
|
|
2292
|
+
joinShoes?: import("mongoose").Types.DocumentArray<{
|
|
2248
2293
|
variants: number[];
|
|
2249
2294
|
id?: string | null | undefined;
|
|
2250
2295
|
_id?: unknown;
|
|
@@ -2256,8 +2301,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2256
2301
|
variants: number[];
|
|
2257
2302
|
id?: string | null | undefined;
|
|
2258
2303
|
_id?: unknown;
|
|
2259
|
-
}
|
|
2260
|
-
joinBanner
|
|
2304
|
+
}> | null | undefined;
|
|
2305
|
+
joinBanner?: import("mongoose").Types.DocumentArray<{
|
|
2261
2306
|
id?: string | null | undefined;
|
|
2262
2307
|
_id?: unknown;
|
|
2263
2308
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2266,8 +2311,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2266
2311
|
}> & {
|
|
2267
2312
|
id?: string | null | undefined;
|
|
2268
2313
|
_id?: unknown;
|
|
2269
|
-
}
|
|
2270
|
-
joinBannerColor
|
|
2314
|
+
}> | null | undefined;
|
|
2315
|
+
joinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
2271
2316
|
id?: string | null | undefined;
|
|
2272
2317
|
_id?: unknown;
|
|
2273
2318
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2276,8 +2321,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2276
2321
|
}> & {
|
|
2277
2322
|
id?: string | null | undefined;
|
|
2278
2323
|
_id?: unknown;
|
|
2279
|
-
}
|
|
2280
|
-
memberJoinOutfit
|
|
2324
|
+
}> | null | undefined;
|
|
2325
|
+
memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
2281
2326
|
variants: number[];
|
|
2282
2327
|
id?: string | null | undefined;
|
|
2283
2328
|
_id?: unknown;
|
|
@@ -2289,8 +2334,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2289
2334
|
variants: number[];
|
|
2290
2335
|
id?: string | null | undefined;
|
|
2291
2336
|
_id?: unknown;
|
|
2292
|
-
}
|
|
2293
|
-
memberJoinBackpack
|
|
2337
|
+
}> | null | undefined;
|
|
2338
|
+
memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
2294
2339
|
variants: number[];
|
|
2295
2340
|
id?: string | null | undefined;
|
|
2296
2341
|
_id?: unknown;
|
|
@@ -2302,8 +2347,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2302
2347
|
variants: number[];
|
|
2303
2348
|
id?: string | null | undefined;
|
|
2304
2349
|
_id?: unknown;
|
|
2305
|
-
}
|
|
2306
|
-
memberJoinPickaxe
|
|
2350
|
+
}> | null | undefined;
|
|
2351
|
+
memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
2307
2352
|
variants: number[];
|
|
2308
2353
|
id?: string | null | undefined;
|
|
2309
2354
|
_id?: unknown;
|
|
@@ -2315,8 +2360,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2315
2360
|
variants: number[];
|
|
2316
2361
|
id?: string | null | undefined;
|
|
2317
2362
|
_id?: unknown;
|
|
2318
|
-
}
|
|
2319
|
-
memberJoinEmote
|
|
2363
|
+
}> | null | undefined;
|
|
2364
|
+
memberJoinEmote?: import("mongoose").Types.DocumentArray<{
|
|
2320
2365
|
id?: string | null | undefined;
|
|
2321
2366
|
_id?: unknown;
|
|
2322
2367
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2325,8 +2370,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2325
2370
|
}> & {
|
|
2326
2371
|
id?: string | null | undefined;
|
|
2327
2372
|
_id?: unknown;
|
|
2328
|
-
}
|
|
2329
|
-
memberJoinShoes
|
|
2373
|
+
}> | null | undefined;
|
|
2374
|
+
memberJoinShoes?: import("mongoose").Types.DocumentArray<{
|
|
2330
2375
|
variants: number[];
|
|
2331
2376
|
id?: string | null | undefined;
|
|
2332
2377
|
_id?: unknown;
|
|
@@ -2338,8 +2383,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2338
2383
|
variants: number[];
|
|
2339
2384
|
id?: string | null | undefined;
|
|
2340
2385
|
_id?: unknown;
|
|
2341
|
-
}
|
|
2342
|
-
memberJoinBanner
|
|
2386
|
+
}> | null | undefined;
|
|
2387
|
+
memberJoinBanner?: import("mongoose").Types.DocumentArray<{
|
|
2343
2388
|
id?: string | null | undefined;
|
|
2344
2389
|
_id?: unknown;
|
|
2345
2390
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2348,8 +2393,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2348
2393
|
}> & {
|
|
2349
2394
|
id?: string | null | undefined;
|
|
2350
2395
|
_id?: unknown;
|
|
2351
|
-
}
|
|
2352
|
-
memberJoinBannerColor
|
|
2396
|
+
}> | null | undefined;
|
|
2397
|
+
memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
2353
2398
|
id?: string | null | undefined;
|
|
2354
2399
|
_id?: unknown;
|
|
2355
2400
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2358,36 +2403,23 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2358
2403
|
}> & {
|
|
2359
2404
|
id?: string | null | undefined;
|
|
2360
2405
|
_id?: unknown;
|
|
2361
|
-
}
|
|
2362
|
-
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
2363
|
-
statusInterval?: number | null | undefined;
|
|
2364
|
-
inviteTimeout?: number | null | undefined;
|
|
2365
|
-
maxBotsPerLobby?: number | null | undefined;
|
|
2366
|
-
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
2367
|
-
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
2368
|
-
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
2369
|
-
allowMatchmaking?: boolean | null | undefined;
|
|
2370
|
-
disableMatchmakingChecks?: boolean | null | undefined;
|
|
2371
|
-
disableJoinMessages?: boolean | null | undefined;
|
|
2372
|
-
acceptFriendRequests?: boolean | null | undefined;
|
|
2373
|
-
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
2374
|
-
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
2375
|
-
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
2376
|
-
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
2406
|
+
}> | null | undefined;
|
|
2377
2407
|
} | null | undefined;
|
|
2378
2408
|
}>> & import("mongoose").FlatRecord<{
|
|
2379
2409
|
owner: import("mongoose").Types.ObjectId;
|
|
2380
2410
|
name: string;
|
|
2381
2411
|
disabled?: boolean | null | undefined;
|
|
2382
2412
|
config?: {
|
|
2383
|
-
replyLangs
|
|
2384
|
-
searchLangs
|
|
2385
|
-
platform
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2413
|
+
replyLangs?: string[] | null | undefined;
|
|
2414
|
+
searchLangs?: string[] | null | undefined;
|
|
2415
|
+
platform?: string[] | null | undefined;
|
|
2416
|
+
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
2417
|
+
prefixes?: string[] | null | undefined;
|
|
2418
|
+
statusText?: string[] | null | undefined;
|
|
2419
|
+
statusInterval?: number | null | undefined;
|
|
2420
|
+
level?: number[] | null | undefined;
|
|
2421
|
+
bpLevel?: number[] | null | undefined;
|
|
2422
|
+
extraOwners?: import("mongoose").Types.DocumentArray<{
|
|
2391
2423
|
id?: string | null | undefined;
|
|
2392
2424
|
_id?: unknown;
|
|
2393
2425
|
name?: string | null | undefined;
|
|
@@ -2399,8 +2431,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2399
2431
|
id?: string | null | undefined;
|
|
2400
2432
|
_id?: unknown;
|
|
2401
2433
|
name?: string | null | undefined;
|
|
2402
|
-
}
|
|
2403
|
-
admins
|
|
2434
|
+
}> | null | undefined;
|
|
2435
|
+
admins?: import("mongoose").Types.DocumentArray<{
|
|
2404
2436
|
id?: string | null | undefined;
|
|
2405
2437
|
_id?: unknown;
|
|
2406
2438
|
name?: string | null | undefined;
|
|
@@ -2412,8 +2444,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2412
2444
|
id?: string | null | undefined;
|
|
2413
2445
|
_id?: unknown;
|
|
2414
2446
|
name?: string | null | undefined;
|
|
2415
|
-
}
|
|
2416
|
-
whitelistUsers
|
|
2447
|
+
}> | null | undefined;
|
|
2448
|
+
whitelistUsers?: import("mongoose").Types.DocumentArray<{
|
|
2417
2449
|
id?: string | null | undefined;
|
|
2418
2450
|
_id?: unknown;
|
|
2419
2451
|
name?: string | null | undefined;
|
|
@@ -2425,8 +2457,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2425
2457
|
id?: string | null | undefined;
|
|
2426
2458
|
_id?: unknown;
|
|
2427
2459
|
name?: string | null | undefined;
|
|
2428
|
-
}
|
|
2429
|
-
blacklistUsers
|
|
2460
|
+
}> | null | undefined;
|
|
2461
|
+
blacklistUsers?: import("mongoose").Types.DocumentArray<{
|
|
2430
2462
|
id?: string | null | undefined;
|
|
2431
2463
|
_id?: unknown;
|
|
2432
2464
|
name?: string | null | undefined;
|
|
@@ -2438,8 +2470,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2438
2470
|
id?: string | null | undefined;
|
|
2439
2471
|
_id?: unknown;
|
|
2440
2472
|
name?: string | null | undefined;
|
|
2441
|
-
}
|
|
2442
|
-
excludedAutoAddFriends
|
|
2473
|
+
}> | null | undefined;
|
|
2474
|
+
excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
|
|
2443
2475
|
id?: string | null | undefined;
|
|
2444
2476
|
_id?: unknown;
|
|
2445
2477
|
name?: string | null | undefined;
|
|
@@ -2451,8 +2483,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2451
2483
|
id?: string | null | undefined;
|
|
2452
2484
|
_id?: unknown;
|
|
2453
2485
|
name?: string | null | undefined;
|
|
2454
|
-
}
|
|
2455
|
-
otherBots
|
|
2486
|
+
}> | null | undefined;
|
|
2487
|
+
otherBots?: import("mongoose").Types.DocumentArray<{
|
|
2456
2488
|
id?: string | null | undefined;
|
|
2457
2489
|
_id?: unknown;
|
|
2458
2490
|
name?: string | null | undefined;
|
|
@@ -2464,122 +2496,141 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2464
2496
|
id?: string | null | undefined;
|
|
2465
2497
|
_id?: unknown;
|
|
2466
2498
|
name?: string | null | undefined;
|
|
2467
|
-
}
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2499
|
+
}> | null | undefined;
|
|
2500
|
+
inviteTimeout?: number | null | undefined;
|
|
2501
|
+
maxBotsPerLobby?: number | null | undefined;
|
|
2502
|
+
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
2503
|
+
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
2504
|
+
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
2505
|
+
allowMatchmaking?: boolean | null | undefined;
|
|
2506
|
+
disableMatchmakingChecks?: boolean | null | undefined;
|
|
2507
|
+
disableJoinMessages?: boolean | null | undefined;
|
|
2508
|
+
acceptFriendRequests?: boolean | null | undefined;
|
|
2509
|
+
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
2510
|
+
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
2511
|
+
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
2512
|
+
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
2513
|
+
usernameTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2473
2514
|
_id?: unknown;
|
|
2515
|
+
triggers?: string[] | null | undefined;
|
|
2516
|
+
detectionMethods?: number[] | null | undefined;
|
|
2517
|
+
actions?: number[] | null | undefined;
|
|
2518
|
+
messages?: string[] | null | undefined;
|
|
2474
2519
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2475
|
-
triggers: string[];
|
|
2476
|
-
detectionMethods: number[];
|
|
2477
|
-
actions: number[];
|
|
2478
|
-
messages: string[];
|
|
2479
2520
|
_id?: unknown;
|
|
2521
|
+
triggers?: string[] | null | undefined;
|
|
2522
|
+
detectionMethods?: number[] | null | undefined;
|
|
2523
|
+
actions?: number[] | null | undefined;
|
|
2524
|
+
messages?: string[] | null | undefined;
|
|
2480
2525
|
}> & {
|
|
2481
|
-
triggers: string[];
|
|
2482
|
-
detectionMethods: number[];
|
|
2483
|
-
actions: number[];
|
|
2484
|
-
messages: string[];
|
|
2485
2526
|
_id?: unknown;
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2527
|
+
triggers?: string[] | null | undefined;
|
|
2528
|
+
detectionMethods?: number[] | null | undefined;
|
|
2529
|
+
actions?: number[] | null | undefined;
|
|
2530
|
+
messages?: string[] | null | undefined;
|
|
2531
|
+
}> | null | undefined;
|
|
2532
|
+
messageContentTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2492
2533
|
_id?: unknown;
|
|
2534
|
+
triggers?: string[] | null | undefined;
|
|
2535
|
+
detectionMethods?: number[] | null | undefined;
|
|
2536
|
+
actions?: number[] | null | undefined;
|
|
2537
|
+
messages?: string[] | null | undefined;
|
|
2493
2538
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2494
|
-
triggers: string[];
|
|
2495
|
-
detectionMethods: number[];
|
|
2496
|
-
actions: number[];
|
|
2497
|
-
messages: string[];
|
|
2498
2539
|
_id?: unknown;
|
|
2540
|
+
triggers?: string[] | null | undefined;
|
|
2541
|
+
detectionMethods?: number[] | null | undefined;
|
|
2542
|
+
actions?: number[] | null | undefined;
|
|
2543
|
+
messages?: string[] | null | undefined;
|
|
2499
2544
|
}> & {
|
|
2500
|
-
triggers: string[];
|
|
2501
|
-
detectionMethods: number[];
|
|
2502
|
-
actions: number[];
|
|
2503
|
-
messages: string[];
|
|
2504
2545
|
_id?: unknown;
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2546
|
+
triggers?: string[] | null | undefined;
|
|
2547
|
+
detectionMethods?: number[] | null | undefined;
|
|
2548
|
+
actions?: number[] | null | undefined;
|
|
2549
|
+
messages?: string[] | null | undefined;
|
|
2550
|
+
}> | null | undefined;
|
|
2551
|
+
cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2511
2552
|
_id?: unknown;
|
|
2553
|
+
triggers?: string[] | null | undefined;
|
|
2554
|
+
detectionMethods?: number[] | null | undefined;
|
|
2555
|
+
actions?: number[] | null | undefined;
|
|
2556
|
+
messages?: string[] | null | undefined;
|
|
2512
2557
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2513
|
-
triggers: string[];
|
|
2514
|
-
detectionMethods: number[];
|
|
2515
|
-
actions: number[];
|
|
2516
|
-
messages: string[];
|
|
2517
2558
|
_id?: unknown;
|
|
2559
|
+
triggers?: string[] | null | undefined;
|
|
2560
|
+
detectionMethods?: number[] | null | undefined;
|
|
2561
|
+
actions?: number[] | null | undefined;
|
|
2562
|
+
messages?: string[] | null | undefined;
|
|
2518
2563
|
}> & {
|
|
2519
|
-
triggers: string[];
|
|
2520
|
-
detectionMethods: number[];
|
|
2521
|
-
actions: number[];
|
|
2522
|
-
messages: string[];
|
|
2523
2564
|
_id?: unknown;
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2565
|
+
triggers?: string[] | null | undefined;
|
|
2566
|
+
detectionMethods?: number[] | null | undefined;
|
|
2567
|
+
actions?: number[] | null | undefined;
|
|
2568
|
+
messages?: string[] | null | undefined;
|
|
2569
|
+
}> | null | undefined;
|
|
2570
|
+
addFriendTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2530
2571
|
_id?: unknown;
|
|
2572
|
+
triggers?: string[] | null | undefined;
|
|
2573
|
+
detectionMethods?: number[] | null | undefined;
|
|
2574
|
+
actions?: number[] | null | undefined;
|
|
2575
|
+
messages?: string[] | null | undefined;
|
|
2531
2576
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2532
|
-
triggers: string[];
|
|
2533
|
-
detectionMethods: number[];
|
|
2534
|
-
actions: number[];
|
|
2535
|
-
messages: string[];
|
|
2536
2577
|
_id?: unknown;
|
|
2578
|
+
triggers?: string[] | null | undefined;
|
|
2579
|
+
detectionMethods?: number[] | null | undefined;
|
|
2580
|
+
actions?: number[] | null | undefined;
|
|
2581
|
+
messages?: string[] | null | undefined;
|
|
2537
2582
|
}> & {
|
|
2538
|
-
triggers: string[];
|
|
2539
|
-
detectionMethods: number[];
|
|
2540
|
-
actions: number[];
|
|
2541
|
-
messages: string[];
|
|
2542
2583
|
_id?: unknown;
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2584
|
+
triggers?: string[] | null | undefined;
|
|
2585
|
+
detectionMethods?: number[] | null | undefined;
|
|
2586
|
+
actions?: number[] | null | undefined;
|
|
2587
|
+
messages?: string[] | null | undefined;
|
|
2588
|
+
}> | null | undefined;
|
|
2589
|
+
memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2549
2590
|
_id?: unknown;
|
|
2591
|
+
triggers?: string[] | null | undefined;
|
|
2592
|
+
detectionMethods?: number[] | null | undefined;
|
|
2593
|
+
actions?: number[] | null | undefined;
|
|
2594
|
+
messages?: string[] | null | undefined;
|
|
2550
2595
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2551
|
-
triggers: string[];
|
|
2552
|
-
detectionMethods: number[];
|
|
2553
|
-
actions: number[];
|
|
2554
|
-
messages: string[];
|
|
2555
2596
|
_id?: unknown;
|
|
2597
|
+
triggers?: string[] | null | undefined;
|
|
2598
|
+
detectionMethods?: number[] | null | undefined;
|
|
2599
|
+
actions?: number[] | null | undefined;
|
|
2600
|
+
messages?: string[] | null | undefined;
|
|
2556
2601
|
}> & {
|
|
2557
|
-
triggers: string[];
|
|
2558
|
-
detectionMethods: number[];
|
|
2559
|
-
actions: number[];
|
|
2560
|
-
messages: string[];
|
|
2561
2602
|
_id?: unknown;
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2603
|
+
triggers?: string[] | null | undefined;
|
|
2604
|
+
detectionMethods?: number[] | null | undefined;
|
|
2605
|
+
actions?: number[] | null | undefined;
|
|
2606
|
+
messages?: string[] | null | undefined;
|
|
2607
|
+
}> | null | undefined;
|
|
2608
|
+
changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
|
|
2568
2609
|
_id?: unknown;
|
|
2610
|
+
triggers?: string[] | null | undefined;
|
|
2611
|
+
detectionMethods?: number[] | null | undefined;
|
|
2612
|
+
actions?: number[] | null | undefined;
|
|
2613
|
+
messages?: string[] | null | undefined;
|
|
2569
2614
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
2570
|
-
triggers: string[];
|
|
2571
|
-
detectionMethods: number[];
|
|
2572
|
-
actions: number[];
|
|
2573
|
-
messages: string[];
|
|
2574
2615
|
_id?: unknown;
|
|
2616
|
+
triggers?: string[] | null | undefined;
|
|
2617
|
+
detectionMethods?: number[] | null | undefined;
|
|
2618
|
+
actions?: number[] | null | undefined;
|
|
2619
|
+
messages?: string[] | null | undefined;
|
|
2575
2620
|
}> & {
|
|
2576
|
-
triggers: string[];
|
|
2577
|
-
detectionMethods: number[];
|
|
2578
|
-
actions: number[];
|
|
2579
|
-
messages: string[];
|
|
2580
2621
|
_id?: unknown;
|
|
2581
|
-
|
|
2582
|
-
|
|
2622
|
+
triggers?: string[] | null | undefined;
|
|
2623
|
+
detectionMethods?: number[] | null | undefined;
|
|
2624
|
+
actions?: number[] | null | undefined;
|
|
2625
|
+
messages?: string[] | null | undefined;
|
|
2626
|
+
}> | null | undefined;
|
|
2627
|
+
onlyOwnerCommands?: string[] | null | undefined;
|
|
2628
|
+
onlyAdminCommands?: string[] | null | undefined;
|
|
2629
|
+
onlyWhitelistUsersCommands?: string[] | null | undefined;
|
|
2630
|
+
onlyFriendsCommands?: string[] | null | undefined;
|
|
2631
|
+
onlyPartyMembersCommands?: string[] | null | undefined;
|
|
2632
|
+
onlyWhisperCommands?: string[] | null | undefined;
|
|
2633
|
+
startOutfit?: import("mongoose").Types.DocumentArray<{
|
|
2583
2634
|
variants: number[];
|
|
2584
2635
|
id?: string | null | undefined;
|
|
2585
2636
|
_id?: unknown;
|
|
@@ -2591,8 +2642,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2591
2642
|
variants: number[];
|
|
2592
2643
|
id?: string | null | undefined;
|
|
2593
2644
|
_id?: unknown;
|
|
2594
|
-
}
|
|
2595
|
-
startBackpack
|
|
2645
|
+
}> | null | undefined;
|
|
2646
|
+
startBackpack?: import("mongoose").Types.DocumentArray<{
|
|
2596
2647
|
variants: number[];
|
|
2597
2648
|
id?: string | null | undefined;
|
|
2598
2649
|
_id?: unknown;
|
|
@@ -2604,8 +2655,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2604
2655
|
variants: number[];
|
|
2605
2656
|
id?: string | null | undefined;
|
|
2606
2657
|
_id?: unknown;
|
|
2607
|
-
}
|
|
2608
|
-
startPickaxe
|
|
2658
|
+
}> | null | undefined;
|
|
2659
|
+
startPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
2609
2660
|
variants: number[];
|
|
2610
2661
|
id?: string | null | undefined;
|
|
2611
2662
|
_id?: unknown;
|
|
@@ -2617,8 +2668,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2617
2668
|
variants: number[];
|
|
2618
2669
|
id?: string | null | undefined;
|
|
2619
2670
|
_id?: unknown;
|
|
2620
|
-
}
|
|
2621
|
-
startShoes
|
|
2671
|
+
}> | null | undefined;
|
|
2672
|
+
startShoes?: import("mongoose").Types.DocumentArray<{
|
|
2622
2673
|
variants: number[];
|
|
2623
2674
|
id?: string | null | undefined;
|
|
2624
2675
|
_id?: unknown;
|
|
@@ -2630,8 +2681,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2630
2681
|
variants: number[];
|
|
2631
2682
|
id?: string | null | undefined;
|
|
2632
2683
|
_id?: unknown;
|
|
2633
|
-
}
|
|
2634
|
-
startBanner
|
|
2684
|
+
}> | null | undefined;
|
|
2685
|
+
startBanner?: import("mongoose").Types.DocumentArray<{
|
|
2635
2686
|
id?: string | null | undefined;
|
|
2636
2687
|
_id?: unknown;
|
|
2637
2688
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2640,8 +2691,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2640
2691
|
}> & {
|
|
2641
2692
|
id?: string | null | undefined;
|
|
2642
2693
|
_id?: unknown;
|
|
2643
|
-
}
|
|
2644
|
-
startBannerColor
|
|
2694
|
+
}> | null | undefined;
|
|
2695
|
+
startBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
2645
2696
|
id?: string | null | undefined;
|
|
2646
2697
|
_id?: unknown;
|
|
2647
2698
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2650,8 +2701,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2650
2701
|
}> & {
|
|
2651
2702
|
id?: string | null | undefined;
|
|
2652
2703
|
_id?: unknown;
|
|
2653
|
-
}
|
|
2654
|
-
joinOutfit
|
|
2704
|
+
}> | null | undefined;
|
|
2705
|
+
joinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
2655
2706
|
variants: number[];
|
|
2656
2707
|
id?: string | null | undefined;
|
|
2657
2708
|
_id?: unknown;
|
|
@@ -2663,8 +2714,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2663
2714
|
variants: number[];
|
|
2664
2715
|
id?: string | null | undefined;
|
|
2665
2716
|
_id?: unknown;
|
|
2666
|
-
}
|
|
2667
|
-
joinBackpack
|
|
2717
|
+
}> | null | undefined;
|
|
2718
|
+
joinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
2668
2719
|
variants: number[];
|
|
2669
2720
|
id?: string | null | undefined;
|
|
2670
2721
|
_id?: unknown;
|
|
@@ -2676,8 +2727,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2676
2727
|
variants: number[];
|
|
2677
2728
|
id?: string | null | undefined;
|
|
2678
2729
|
_id?: unknown;
|
|
2679
|
-
}
|
|
2680
|
-
joinPickaxe
|
|
2730
|
+
}> | null | undefined;
|
|
2731
|
+
joinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
2681
2732
|
variants: number[];
|
|
2682
2733
|
id?: string | null | undefined;
|
|
2683
2734
|
_id?: unknown;
|
|
@@ -2689,8 +2740,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2689
2740
|
variants: number[];
|
|
2690
2741
|
id?: string | null | undefined;
|
|
2691
2742
|
_id?: unknown;
|
|
2692
|
-
}
|
|
2693
|
-
joinEmote
|
|
2743
|
+
}> | null | undefined;
|
|
2744
|
+
joinEmote?: import("mongoose").Types.DocumentArray<{
|
|
2694
2745
|
id?: string | null | undefined;
|
|
2695
2746
|
_id?: unknown;
|
|
2696
2747
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2699,8 +2750,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2699
2750
|
}> & {
|
|
2700
2751
|
id?: string | null | undefined;
|
|
2701
2752
|
_id?: unknown;
|
|
2702
|
-
}
|
|
2703
|
-
joinShoes
|
|
2753
|
+
}> | null | undefined;
|
|
2754
|
+
joinShoes?: import("mongoose").Types.DocumentArray<{
|
|
2704
2755
|
variants: number[];
|
|
2705
2756
|
id?: string | null | undefined;
|
|
2706
2757
|
_id?: unknown;
|
|
@@ -2712,8 +2763,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2712
2763
|
variants: number[];
|
|
2713
2764
|
id?: string | null | undefined;
|
|
2714
2765
|
_id?: unknown;
|
|
2715
|
-
}
|
|
2716
|
-
joinBanner
|
|
2766
|
+
}> | null | undefined;
|
|
2767
|
+
joinBanner?: import("mongoose").Types.DocumentArray<{
|
|
2717
2768
|
id?: string | null | undefined;
|
|
2718
2769
|
_id?: unknown;
|
|
2719
2770
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2722,8 +2773,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2722
2773
|
}> & {
|
|
2723
2774
|
id?: string | null | undefined;
|
|
2724
2775
|
_id?: unknown;
|
|
2725
|
-
}
|
|
2726
|
-
joinBannerColor
|
|
2776
|
+
}> | null | undefined;
|
|
2777
|
+
joinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
2727
2778
|
id?: string | null | undefined;
|
|
2728
2779
|
_id?: unknown;
|
|
2729
2780
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2732,8 +2783,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2732
2783
|
}> & {
|
|
2733
2784
|
id?: string | null | undefined;
|
|
2734
2785
|
_id?: unknown;
|
|
2735
|
-
}
|
|
2736
|
-
memberJoinOutfit
|
|
2786
|
+
}> | null | undefined;
|
|
2787
|
+
memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
|
|
2737
2788
|
variants: number[];
|
|
2738
2789
|
id?: string | null | undefined;
|
|
2739
2790
|
_id?: unknown;
|
|
@@ -2745,8 +2796,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2745
2796
|
variants: number[];
|
|
2746
2797
|
id?: string | null | undefined;
|
|
2747
2798
|
_id?: unknown;
|
|
2748
|
-
}
|
|
2749
|
-
memberJoinBackpack
|
|
2799
|
+
}> | null | undefined;
|
|
2800
|
+
memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
|
|
2750
2801
|
variants: number[];
|
|
2751
2802
|
id?: string | null | undefined;
|
|
2752
2803
|
_id?: unknown;
|
|
@@ -2758,8 +2809,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2758
2809
|
variants: number[];
|
|
2759
2810
|
id?: string | null | undefined;
|
|
2760
2811
|
_id?: unknown;
|
|
2761
|
-
}
|
|
2762
|
-
memberJoinPickaxe
|
|
2812
|
+
}> | null | undefined;
|
|
2813
|
+
memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
|
|
2763
2814
|
variants: number[];
|
|
2764
2815
|
id?: string | null | undefined;
|
|
2765
2816
|
_id?: unknown;
|
|
@@ -2771,8 +2822,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2771
2822
|
variants: number[];
|
|
2772
2823
|
id?: string | null | undefined;
|
|
2773
2824
|
_id?: unknown;
|
|
2774
|
-
}
|
|
2775
|
-
memberJoinEmote
|
|
2825
|
+
}> | null | undefined;
|
|
2826
|
+
memberJoinEmote?: import("mongoose").Types.DocumentArray<{
|
|
2776
2827
|
id?: string | null | undefined;
|
|
2777
2828
|
_id?: unknown;
|
|
2778
2829
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2781,8 +2832,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2781
2832
|
}> & {
|
|
2782
2833
|
id?: string | null | undefined;
|
|
2783
2834
|
_id?: unknown;
|
|
2784
|
-
}
|
|
2785
|
-
memberJoinShoes
|
|
2835
|
+
}> | null | undefined;
|
|
2836
|
+
memberJoinShoes?: import("mongoose").Types.DocumentArray<{
|
|
2786
2837
|
variants: number[];
|
|
2787
2838
|
id?: string | null | undefined;
|
|
2788
2839
|
_id?: unknown;
|
|
@@ -2794,8 +2845,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2794
2845
|
variants: number[];
|
|
2795
2846
|
id?: string | null | undefined;
|
|
2796
2847
|
_id?: unknown;
|
|
2797
|
-
}
|
|
2798
|
-
memberJoinBanner
|
|
2848
|
+
}> | null | undefined;
|
|
2849
|
+
memberJoinBanner?: import("mongoose").Types.DocumentArray<{
|
|
2799
2850
|
id?: string | null | undefined;
|
|
2800
2851
|
_id?: unknown;
|
|
2801
2852
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2804,8 +2855,8 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2804
2855
|
}> & {
|
|
2805
2856
|
id?: string | null | undefined;
|
|
2806
2857
|
_id?: unknown;
|
|
2807
|
-
}
|
|
2808
|
-
memberJoinBannerColor
|
|
2858
|
+
}> | null | undefined;
|
|
2859
|
+
memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
|
|
2809
2860
|
id?: string | null | undefined;
|
|
2810
2861
|
_id?: unknown;
|
|
2811
2862
|
}, import("mongoose").Types.Subdocument<unknown, any, {
|
|
@@ -2814,22 +2865,7 @@ export declare const CategoryModel: import("mongoose").Model<{
|
|
|
2814
2865
|
}> & {
|
|
2815
2866
|
id?: string | null | undefined;
|
|
2816
2867
|
_id?: unknown;
|
|
2817
|
-
}
|
|
2818
|
-
privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
|
|
2819
|
-
statusInterval?: number | null | undefined;
|
|
2820
|
-
inviteTimeout?: number | null | undefined;
|
|
2821
|
-
maxBotsPerLobby?: number | null | undefined;
|
|
2822
|
-
maxBotsPerLobbyWithOwner?: number | null | undefined;
|
|
2823
|
-
maxBotsPerLobbyWithAdmin?: number | null | undefined;
|
|
2824
|
-
maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
|
|
2825
|
-
allowMatchmaking?: boolean | null | undefined;
|
|
2826
|
-
disableMatchmakingChecks?: boolean | null | undefined;
|
|
2827
|
-
disableJoinMessages?: boolean | null | undefined;
|
|
2828
|
-
acceptFriendRequests?: boolean | null | undefined;
|
|
2829
|
-
sendFriendRequestOnJoinParty?: boolean | null | undefined;
|
|
2830
|
-
sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
|
|
2831
|
-
runCommandsWithoutPrefix?: boolean | null | undefined;
|
|
2832
|
-
setCosmeticsWithoutCommands?: boolean | null | undefined;
|
|
2868
|
+
}> | null | undefined;
|
|
2833
2869
|
} | null | undefined;
|
|
2834
2870
|
}> & {
|
|
2835
2871
|
_id: import("mongoose").Types.ObjectId;
|