@fnlb-project/database 1.0.2

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.
@@ -0,0 +1,3863 @@
1
+ // Generated by dts-bundle-generator v9.5.1
2
+
3
+ import { GenericErrorSender } from '@fnlb-project/shared/errors';
4
+ import { CategoryConfigPartyPrivacy } from '@fnlb-project/shared/types';
5
+ import { Schema } from 'mongoose';
6
+
7
+ export declare class DatabaseClient {
8
+ connect(dbURI: string): Promise<void>;
9
+ }
10
+ export declare class DatabaseErrorHandler {
11
+ static handleError(err: any, errorSender: GenericErrorSender): unknown;
12
+ }
13
+ export declare const BotModel: import("mongoose").Model<{
14
+ owner: import("mongoose").Types.ObjectId;
15
+ type: number;
16
+ nickname: string;
17
+ deviceAuth: {
18
+ accountId: string;
19
+ deviceId: string;
20
+ secret: string;
21
+ };
22
+ parent?: import("mongoose").Types.ObjectId | null | undefined;
23
+ email?: string | null | undefined;
24
+ disabled?: boolean | null | undefined;
25
+ mmsBannedUntil?: number | null | undefined;
26
+ }, {}, {}, {}, import("mongoose").Document<unknown, {}, {
27
+ owner: import("mongoose").Types.ObjectId;
28
+ type: number;
29
+ nickname: string;
30
+ deviceAuth: {
31
+ accountId: string;
32
+ deviceId: string;
33
+ secret: string;
34
+ };
35
+ parent?: import("mongoose").Types.ObjectId | null | undefined;
36
+ email?: string | null | undefined;
37
+ disabled?: boolean | null | undefined;
38
+ mmsBannedUntil?: number | null | undefined;
39
+ }> & {
40
+ owner: import("mongoose").Types.ObjectId;
41
+ type: number;
42
+ nickname: string;
43
+ deviceAuth: {
44
+ accountId: string;
45
+ deviceId: string;
46
+ secret: string;
47
+ };
48
+ parent?: import("mongoose").Types.ObjectId | null | undefined;
49
+ email?: string | null | undefined;
50
+ disabled?: boolean | null | undefined;
51
+ mmsBannedUntil?: number | null | undefined;
52
+ } & {
53
+ _id: import("mongoose").Types.ObjectId;
54
+ } & {
55
+ __v: number;
56
+ }, Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
57
+ owner: import("mongoose").Types.ObjectId;
58
+ type: number;
59
+ nickname: string;
60
+ deviceAuth: {
61
+ accountId: string;
62
+ deviceId: string;
63
+ secret: string;
64
+ };
65
+ parent?: import("mongoose").Types.ObjectId | null | undefined;
66
+ email?: string | null | undefined;
67
+ disabled?: boolean | null | undefined;
68
+ mmsBannedUntil?: number | null | undefined;
69
+ }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
70
+ owner: import("mongoose").Types.ObjectId;
71
+ type: number;
72
+ nickname: string;
73
+ deviceAuth: {
74
+ accountId: string;
75
+ deviceId: string;
76
+ secret: string;
77
+ };
78
+ parent?: import("mongoose").Types.ObjectId | null | undefined;
79
+ email?: string | null | undefined;
80
+ disabled?: boolean | null | undefined;
81
+ mmsBannedUntil?: number | null | undefined;
82
+ }>> & import("mongoose").FlatRecord<{
83
+ owner: import("mongoose").Types.ObjectId;
84
+ type: number;
85
+ nickname: string;
86
+ deviceAuth: {
87
+ accountId: string;
88
+ deviceId: string;
89
+ secret: string;
90
+ };
91
+ parent?: import("mongoose").Types.ObjectId | null | undefined;
92
+ email?: string | null | undefined;
93
+ disabled?: boolean | null | undefined;
94
+ mmsBannedUntil?: number | null | undefined;
95
+ }> & {
96
+ _id: import("mongoose").Types.ObjectId;
97
+ } & {
98
+ __v: number;
99
+ }>>;
100
+ export declare const CategoryModel: import("mongoose").Model<{
101
+ owner: import("mongoose").Types.ObjectId;
102
+ name: string;
103
+ disabled?: boolean | null | undefined;
104
+ managed?: boolean | null | undefined;
105
+ config?: {
106
+ replyLangs?: string[] | null | undefined;
107
+ searchLangs?: string[] | null | undefined;
108
+ platform?: string[] | null | undefined;
109
+ privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
110
+ prefixes?: string[] | null | undefined;
111
+ statusText?: string[] | null | undefined;
112
+ statusInterval?: number | null | undefined;
113
+ level?: number[] | null | undefined;
114
+ bpLevel?: number[] | null | undefined;
115
+ extraOwners?: import("mongoose").Types.DocumentArray<{
116
+ id?: string | null | undefined;
117
+ _id?: unknown;
118
+ name?: string | null | undefined;
119
+ }, import("mongoose").Types.Subdocument<unknown, any, {
120
+ id?: string | null | undefined;
121
+ _id?: unknown;
122
+ name?: string | null | undefined;
123
+ }> & {
124
+ id?: string | null | undefined;
125
+ _id?: unknown;
126
+ name?: string | null | undefined;
127
+ }> | null | undefined;
128
+ admins?: import("mongoose").Types.DocumentArray<{
129
+ id?: string | null | undefined;
130
+ _id?: unknown;
131
+ name?: string | null | undefined;
132
+ }, import("mongoose").Types.Subdocument<unknown, any, {
133
+ id?: string | null | undefined;
134
+ _id?: unknown;
135
+ name?: string | null | undefined;
136
+ }> & {
137
+ id?: string | null | undefined;
138
+ _id?: unknown;
139
+ name?: string | null | undefined;
140
+ }> | null | undefined;
141
+ whitelistUsers?: import("mongoose").Types.DocumentArray<{
142
+ id?: string | null | undefined;
143
+ _id?: unknown;
144
+ name?: string | null | undefined;
145
+ }, import("mongoose").Types.Subdocument<unknown, any, {
146
+ id?: string | null | undefined;
147
+ _id?: unknown;
148
+ name?: string | null | undefined;
149
+ }> & {
150
+ id?: string | null | undefined;
151
+ _id?: unknown;
152
+ name?: string | null | undefined;
153
+ }> | null | undefined;
154
+ blacklistUsers?: import("mongoose").Types.DocumentArray<{
155
+ id?: string | null | undefined;
156
+ _id?: unknown;
157
+ name?: string | null | undefined;
158
+ }, import("mongoose").Types.Subdocument<unknown, any, {
159
+ id?: string | null | undefined;
160
+ _id?: unknown;
161
+ name?: string | null | undefined;
162
+ }> & {
163
+ id?: string | null | undefined;
164
+ _id?: unknown;
165
+ name?: string | null | undefined;
166
+ }> | null | undefined;
167
+ excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
168
+ id?: string | null | undefined;
169
+ _id?: unknown;
170
+ name?: string | null | undefined;
171
+ }, import("mongoose").Types.Subdocument<unknown, any, {
172
+ id?: string | null | undefined;
173
+ _id?: unknown;
174
+ name?: string | null | undefined;
175
+ }> & {
176
+ id?: string | null | undefined;
177
+ _id?: unknown;
178
+ name?: string | null | undefined;
179
+ }> | null | undefined;
180
+ otherBots?: import("mongoose").Types.DocumentArray<{
181
+ id?: string | null | undefined;
182
+ _id?: unknown;
183
+ name?: string | null | undefined;
184
+ }, import("mongoose").Types.Subdocument<unknown, any, {
185
+ id?: string | null | undefined;
186
+ _id?: unknown;
187
+ name?: string | null | undefined;
188
+ }> & {
189
+ id?: string | null | undefined;
190
+ _id?: unknown;
191
+ name?: string | null | undefined;
192
+ }> | null | undefined;
193
+ inviteTimeout?: number | null | undefined;
194
+ maxBotsPerLobby?: number | null | undefined;
195
+ maxBotsPerLobbyWithOwner?: number | null | undefined;
196
+ maxBotsPerLobbyWithAdmin?: number | null | undefined;
197
+ maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
198
+ allowMatchmaking?: boolean | null | undefined;
199
+ leaveAfterMatchmaking?: boolean | null | undefined;
200
+ disableMatchmakingChecks?: boolean | null | undefined;
201
+ disablePlaylistChecks?: boolean | null | undefined;
202
+ disableJoinMessages?: boolean | null | undefined;
203
+ disableAutomaticMessages?: boolean | null | undefined;
204
+ acceptFriendRequests?: boolean | null | undefined;
205
+ sendFriendRequestOnJoinParty?: boolean | null | undefined;
206
+ sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
207
+ runCommandsWithoutPrefix?: boolean | null | undefined;
208
+ setCosmeticsWithoutCommands?: boolean | null | undefined;
209
+ setCosmeticsWithPrefix?: boolean | null | undefined;
210
+ acceptInvites?: boolean | null | undefined;
211
+ usernameTriggers?: import("mongoose").Types.DocumentArray<{
212
+ _id?: unknown;
213
+ triggers?: string[] | null | undefined;
214
+ detectionMethods?: number[] | null | undefined;
215
+ actions?: number[] | null | undefined;
216
+ messages?: string[] | null | undefined;
217
+ }, import("mongoose").Types.Subdocument<unknown, any, {
218
+ _id?: unknown;
219
+ triggers?: string[] | null | undefined;
220
+ detectionMethods?: number[] | null | undefined;
221
+ actions?: number[] | null | undefined;
222
+ messages?: string[] | null | undefined;
223
+ }> & {
224
+ _id?: unknown;
225
+ triggers?: string[] | null | undefined;
226
+ detectionMethods?: number[] | null | undefined;
227
+ actions?: number[] | null | undefined;
228
+ messages?: string[] | null | undefined;
229
+ }> | null | undefined;
230
+ messageContentTriggers?: import("mongoose").Types.DocumentArray<{
231
+ _id?: unknown;
232
+ triggers?: string[] | null | undefined;
233
+ detectionMethods?: number[] | null | undefined;
234
+ actions?: number[] | null | undefined;
235
+ messages?: string[] | null | undefined;
236
+ }, import("mongoose").Types.Subdocument<unknown, any, {
237
+ _id?: unknown;
238
+ triggers?: string[] | null | undefined;
239
+ detectionMethods?: number[] | null | undefined;
240
+ actions?: number[] | null | undefined;
241
+ messages?: string[] | null | undefined;
242
+ }> & {
243
+ _id?: unknown;
244
+ triggers?: string[] | null | undefined;
245
+ detectionMethods?: number[] | null | undefined;
246
+ actions?: number[] | null | undefined;
247
+ messages?: string[] | null | undefined;
248
+ }> | null | undefined;
249
+ cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
250
+ _id?: unknown;
251
+ triggers?: string[] | null | undefined;
252
+ detectionMethods?: number[] | null | undefined;
253
+ actions?: number[] | null | undefined;
254
+ messages?: string[] | null | undefined;
255
+ }, import("mongoose").Types.Subdocument<unknown, any, {
256
+ _id?: unknown;
257
+ triggers?: string[] | null | undefined;
258
+ detectionMethods?: number[] | null | undefined;
259
+ actions?: number[] | null | undefined;
260
+ messages?: string[] | null | undefined;
261
+ }> & {
262
+ _id?: unknown;
263
+ triggers?: string[] | null | undefined;
264
+ detectionMethods?: number[] | null | undefined;
265
+ actions?: number[] | null | undefined;
266
+ messages?: string[] | null | undefined;
267
+ }> | null | undefined;
268
+ addFriendTriggers?: import("mongoose").Types.DocumentArray<{
269
+ _id?: unknown;
270
+ triggers?: string[] | null | undefined;
271
+ detectionMethods?: number[] | null | undefined;
272
+ actions?: number[] | null | undefined;
273
+ messages?: string[] | null | undefined;
274
+ }, import("mongoose").Types.Subdocument<unknown, any, {
275
+ _id?: unknown;
276
+ triggers?: string[] | null | undefined;
277
+ detectionMethods?: number[] | null | undefined;
278
+ actions?: number[] | null | undefined;
279
+ messages?: string[] | null | undefined;
280
+ }> & {
281
+ _id?: unknown;
282
+ triggers?: string[] | null | undefined;
283
+ detectionMethods?: number[] | null | undefined;
284
+ actions?: number[] | null | undefined;
285
+ messages?: string[] | null | undefined;
286
+ }> | null | undefined;
287
+ memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
288
+ _id?: unknown;
289
+ triggers?: string[] | null | undefined;
290
+ detectionMethods?: number[] | null | undefined;
291
+ actions?: number[] | null | undefined;
292
+ messages?: string[] | null | undefined;
293
+ }, import("mongoose").Types.Subdocument<unknown, any, {
294
+ _id?: unknown;
295
+ triggers?: string[] | null | undefined;
296
+ detectionMethods?: number[] | null | undefined;
297
+ actions?: number[] | null | undefined;
298
+ messages?: string[] | null | undefined;
299
+ }> & {
300
+ _id?: unknown;
301
+ triggers?: string[] | null | undefined;
302
+ detectionMethods?: number[] | null | undefined;
303
+ actions?: number[] | null | undefined;
304
+ messages?: string[] | null | undefined;
305
+ }> | null | undefined;
306
+ changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
307
+ _id?: unknown;
308
+ triggers?: string[] | null | undefined;
309
+ detectionMethods?: number[] | null | undefined;
310
+ actions?: number[] | null | undefined;
311
+ messages?: string[] | null | undefined;
312
+ }, import("mongoose").Types.Subdocument<unknown, any, {
313
+ _id?: unknown;
314
+ triggers?: string[] | null | undefined;
315
+ detectionMethods?: number[] | null | undefined;
316
+ actions?: number[] | null | undefined;
317
+ messages?: string[] | null | undefined;
318
+ }> & {
319
+ _id?: unknown;
320
+ triggers?: string[] | null | undefined;
321
+ detectionMethods?: number[] | null | undefined;
322
+ actions?: number[] | null | undefined;
323
+ messages?: string[] | null | undefined;
324
+ }> | null | undefined;
325
+ onlyOwnerCommands?: string[] | null | undefined;
326
+ onlyAdminCommands?: string[] | null | undefined;
327
+ onlyWhitelistUsersCommands?: string[] | null | undefined;
328
+ onlyFriendsCommands?: string[] | null | undefined;
329
+ onlyPartyMembersCommands?: string[] | null | undefined;
330
+ onlyWhisperCommands?: string[] | null | undefined;
331
+ startOutfit?: import("mongoose").Types.DocumentArray<{
332
+ variants: number[];
333
+ id?: string | null | undefined;
334
+ _id?: unknown;
335
+ }, import("mongoose").Types.Subdocument<unknown, any, {
336
+ variants: number[];
337
+ id?: string | null | undefined;
338
+ _id?: unknown;
339
+ }> & {
340
+ variants: number[];
341
+ id?: string | null | undefined;
342
+ _id?: unknown;
343
+ }> | null | undefined;
344
+ startBackpack?: import("mongoose").Types.DocumentArray<{
345
+ variants: number[];
346
+ id?: string | null | undefined;
347
+ _id?: unknown;
348
+ }, import("mongoose").Types.Subdocument<unknown, any, {
349
+ variants: number[];
350
+ id?: string | null | undefined;
351
+ _id?: unknown;
352
+ }> & {
353
+ variants: number[];
354
+ id?: string | null | undefined;
355
+ _id?: unknown;
356
+ }> | null | undefined;
357
+ startPickaxe?: import("mongoose").Types.DocumentArray<{
358
+ variants: number[];
359
+ id?: string | null | undefined;
360
+ _id?: unknown;
361
+ }, import("mongoose").Types.Subdocument<unknown, any, {
362
+ variants: number[];
363
+ id?: string | null | undefined;
364
+ _id?: unknown;
365
+ }> & {
366
+ variants: number[];
367
+ id?: string | null | undefined;
368
+ _id?: unknown;
369
+ }> | null | undefined;
370
+ startShoes?: import("mongoose").Types.DocumentArray<{
371
+ variants: number[];
372
+ id?: string | null | undefined;
373
+ _id?: unknown;
374
+ }, import("mongoose").Types.Subdocument<unknown, any, {
375
+ variants: number[];
376
+ id?: string | null | undefined;
377
+ _id?: unknown;
378
+ }> & {
379
+ variants: number[];
380
+ id?: string | null | undefined;
381
+ _id?: unknown;
382
+ }> | null | undefined;
383
+ startBanner?: import("mongoose").Types.DocumentArray<{
384
+ id?: string | null | undefined;
385
+ _id?: unknown;
386
+ }, import("mongoose").Types.Subdocument<unknown, any, {
387
+ id?: string | null | undefined;
388
+ _id?: unknown;
389
+ }> & {
390
+ id?: string | null | undefined;
391
+ _id?: unknown;
392
+ }> | null | undefined;
393
+ startBannerColor?: import("mongoose").Types.DocumentArray<{
394
+ id?: string | null | undefined;
395
+ _id?: unknown;
396
+ }, import("mongoose").Types.Subdocument<unknown, any, {
397
+ id?: string | null | undefined;
398
+ _id?: unknown;
399
+ }> & {
400
+ id?: string | null | undefined;
401
+ _id?: unknown;
402
+ }> | null | undefined;
403
+ joinOutfit?: import("mongoose").Types.DocumentArray<{
404
+ variants: number[];
405
+ id?: string | null | undefined;
406
+ _id?: unknown;
407
+ }, import("mongoose").Types.Subdocument<unknown, any, {
408
+ variants: number[];
409
+ id?: string | null | undefined;
410
+ _id?: unknown;
411
+ }> & {
412
+ variants: number[];
413
+ id?: string | null | undefined;
414
+ _id?: unknown;
415
+ }> | null | undefined;
416
+ joinBackpack?: import("mongoose").Types.DocumentArray<{
417
+ variants: number[];
418
+ id?: string | null | undefined;
419
+ _id?: unknown;
420
+ }, import("mongoose").Types.Subdocument<unknown, any, {
421
+ variants: number[];
422
+ id?: string | null | undefined;
423
+ _id?: unknown;
424
+ }> & {
425
+ variants: number[];
426
+ id?: string | null | undefined;
427
+ _id?: unknown;
428
+ }> | null | undefined;
429
+ joinPickaxe?: import("mongoose").Types.DocumentArray<{
430
+ variants: number[];
431
+ id?: string | null | undefined;
432
+ _id?: unknown;
433
+ }, import("mongoose").Types.Subdocument<unknown, any, {
434
+ variants: number[];
435
+ id?: string | null | undefined;
436
+ _id?: unknown;
437
+ }> & {
438
+ variants: number[];
439
+ id?: string | null | undefined;
440
+ _id?: unknown;
441
+ }> | null | undefined;
442
+ joinEmote?: import("mongoose").Types.DocumentArray<{
443
+ id?: string | null | undefined;
444
+ _id?: unknown;
445
+ }, import("mongoose").Types.Subdocument<unknown, any, {
446
+ id?: string | null | undefined;
447
+ _id?: unknown;
448
+ }> & {
449
+ id?: string | null | undefined;
450
+ _id?: unknown;
451
+ }> | null | undefined;
452
+ joinShoes?: import("mongoose").Types.DocumentArray<{
453
+ variants: number[];
454
+ id?: string | null | undefined;
455
+ _id?: unknown;
456
+ }, import("mongoose").Types.Subdocument<unknown, any, {
457
+ variants: number[];
458
+ id?: string | null | undefined;
459
+ _id?: unknown;
460
+ }> & {
461
+ variants: number[];
462
+ id?: string | null | undefined;
463
+ _id?: unknown;
464
+ }> | null | undefined;
465
+ joinBanner?: import("mongoose").Types.DocumentArray<{
466
+ id?: string | null | undefined;
467
+ _id?: unknown;
468
+ }, import("mongoose").Types.Subdocument<unknown, any, {
469
+ id?: string | null | undefined;
470
+ _id?: unknown;
471
+ }> & {
472
+ id?: string | null | undefined;
473
+ _id?: unknown;
474
+ }> | null | undefined;
475
+ joinBannerColor?: import("mongoose").Types.DocumentArray<{
476
+ id?: string | null | undefined;
477
+ _id?: unknown;
478
+ }, import("mongoose").Types.Subdocument<unknown, any, {
479
+ id?: string | null | undefined;
480
+ _id?: unknown;
481
+ }> & {
482
+ id?: string | null | undefined;
483
+ _id?: unknown;
484
+ }> | null | undefined;
485
+ memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
486
+ variants: number[];
487
+ id?: string | null | undefined;
488
+ _id?: unknown;
489
+ }, import("mongoose").Types.Subdocument<unknown, any, {
490
+ variants: number[];
491
+ id?: string | null | undefined;
492
+ _id?: unknown;
493
+ }> & {
494
+ variants: number[];
495
+ id?: string | null | undefined;
496
+ _id?: unknown;
497
+ }> | null | undefined;
498
+ memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
499
+ variants: number[];
500
+ id?: string | null | undefined;
501
+ _id?: unknown;
502
+ }, import("mongoose").Types.Subdocument<unknown, any, {
503
+ variants: number[];
504
+ id?: string | null | undefined;
505
+ _id?: unknown;
506
+ }> & {
507
+ variants: number[];
508
+ id?: string | null | undefined;
509
+ _id?: unknown;
510
+ }> | null | undefined;
511
+ memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
512
+ variants: number[];
513
+ id?: string | null | undefined;
514
+ _id?: unknown;
515
+ }, import("mongoose").Types.Subdocument<unknown, any, {
516
+ variants: number[];
517
+ id?: string | null | undefined;
518
+ _id?: unknown;
519
+ }> & {
520
+ variants: number[];
521
+ id?: string | null | undefined;
522
+ _id?: unknown;
523
+ }> | null | undefined;
524
+ memberJoinEmote?: import("mongoose").Types.DocumentArray<{
525
+ id?: string | null | undefined;
526
+ _id?: unknown;
527
+ }, import("mongoose").Types.Subdocument<unknown, any, {
528
+ id?: string | null | undefined;
529
+ _id?: unknown;
530
+ }> & {
531
+ id?: string | null | undefined;
532
+ _id?: unknown;
533
+ }> | null | undefined;
534
+ memberJoinShoes?: import("mongoose").Types.DocumentArray<{
535
+ variants: number[];
536
+ id?: string | null | undefined;
537
+ _id?: unknown;
538
+ }, import("mongoose").Types.Subdocument<unknown, any, {
539
+ variants: number[];
540
+ id?: string | null | undefined;
541
+ _id?: unknown;
542
+ }> & {
543
+ variants: number[];
544
+ id?: string | null | undefined;
545
+ _id?: unknown;
546
+ }> | null | undefined;
547
+ memberJoinBanner?: import("mongoose").Types.DocumentArray<{
548
+ id?: string | null | undefined;
549
+ _id?: unknown;
550
+ }, import("mongoose").Types.Subdocument<unknown, any, {
551
+ id?: string | null | undefined;
552
+ _id?: unknown;
553
+ }> & {
554
+ id?: string | null | undefined;
555
+ _id?: unknown;
556
+ }> | null | undefined;
557
+ memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
558
+ id?: string | null | undefined;
559
+ _id?: unknown;
560
+ }, import("mongoose").Types.Subdocument<unknown, any, {
561
+ id?: string | null | undefined;
562
+ _id?: unknown;
563
+ }> & {
564
+ id?: string | null | undefined;
565
+ _id?: unknown;
566
+ }> | null | undefined;
567
+ } | null | undefined;
568
+ }, {}, {}, {}, import("mongoose").Document<unknown, {}, {
569
+ owner: import("mongoose").Types.ObjectId;
570
+ name: string;
571
+ disabled?: boolean | null | undefined;
572
+ managed?: boolean | null | undefined;
573
+ config?: {
574
+ replyLangs?: string[] | null | undefined;
575
+ searchLangs?: string[] | null | undefined;
576
+ platform?: string[] | null | undefined;
577
+ privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
578
+ prefixes?: string[] | null | undefined;
579
+ statusText?: string[] | null | undefined;
580
+ statusInterval?: number | null | undefined;
581
+ level?: number[] | null | undefined;
582
+ bpLevel?: number[] | null | undefined;
583
+ extraOwners?: import("mongoose").Types.DocumentArray<{
584
+ id?: string | null | undefined;
585
+ _id?: unknown;
586
+ name?: string | null | undefined;
587
+ }, import("mongoose").Types.Subdocument<unknown, any, {
588
+ id?: string | null | undefined;
589
+ _id?: unknown;
590
+ name?: string | null | undefined;
591
+ }> & {
592
+ id?: string | null | undefined;
593
+ _id?: unknown;
594
+ name?: string | null | undefined;
595
+ }> | null | undefined;
596
+ admins?: import("mongoose").Types.DocumentArray<{
597
+ id?: string | null | undefined;
598
+ _id?: unknown;
599
+ name?: string | null | undefined;
600
+ }, import("mongoose").Types.Subdocument<unknown, any, {
601
+ id?: string | null | undefined;
602
+ _id?: unknown;
603
+ name?: string | null | undefined;
604
+ }> & {
605
+ id?: string | null | undefined;
606
+ _id?: unknown;
607
+ name?: string | null | undefined;
608
+ }> | null | undefined;
609
+ whitelistUsers?: import("mongoose").Types.DocumentArray<{
610
+ id?: string | null | undefined;
611
+ _id?: unknown;
612
+ name?: string | null | undefined;
613
+ }, import("mongoose").Types.Subdocument<unknown, any, {
614
+ id?: string | null | undefined;
615
+ _id?: unknown;
616
+ name?: string | null | undefined;
617
+ }> & {
618
+ id?: string | null | undefined;
619
+ _id?: unknown;
620
+ name?: string | null | undefined;
621
+ }> | null | undefined;
622
+ blacklistUsers?: import("mongoose").Types.DocumentArray<{
623
+ id?: string | null | undefined;
624
+ _id?: unknown;
625
+ name?: string | null | undefined;
626
+ }, import("mongoose").Types.Subdocument<unknown, any, {
627
+ id?: string | null | undefined;
628
+ _id?: unknown;
629
+ name?: string | null | undefined;
630
+ }> & {
631
+ id?: string | null | undefined;
632
+ _id?: unknown;
633
+ name?: string | null | undefined;
634
+ }> | null | undefined;
635
+ excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
636
+ id?: string | null | undefined;
637
+ _id?: unknown;
638
+ name?: string | null | undefined;
639
+ }, import("mongoose").Types.Subdocument<unknown, any, {
640
+ id?: string | null | undefined;
641
+ _id?: unknown;
642
+ name?: string | null | undefined;
643
+ }> & {
644
+ id?: string | null | undefined;
645
+ _id?: unknown;
646
+ name?: string | null | undefined;
647
+ }> | null | undefined;
648
+ otherBots?: import("mongoose").Types.DocumentArray<{
649
+ id?: string | null | undefined;
650
+ _id?: unknown;
651
+ name?: string | null | undefined;
652
+ }, import("mongoose").Types.Subdocument<unknown, any, {
653
+ id?: string | null | undefined;
654
+ _id?: unknown;
655
+ name?: string | null | undefined;
656
+ }> & {
657
+ id?: string | null | undefined;
658
+ _id?: unknown;
659
+ name?: string | null | undefined;
660
+ }> | null | undefined;
661
+ inviteTimeout?: number | null | undefined;
662
+ maxBotsPerLobby?: number | null | undefined;
663
+ maxBotsPerLobbyWithOwner?: number | null | undefined;
664
+ maxBotsPerLobbyWithAdmin?: number | null | undefined;
665
+ maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
666
+ allowMatchmaking?: boolean | null | undefined;
667
+ leaveAfterMatchmaking?: boolean | null | undefined;
668
+ disableMatchmakingChecks?: boolean | null | undefined;
669
+ disablePlaylistChecks?: boolean | null | undefined;
670
+ disableJoinMessages?: boolean | null | undefined;
671
+ disableAutomaticMessages?: boolean | null | undefined;
672
+ acceptFriendRequests?: boolean | null | undefined;
673
+ sendFriendRequestOnJoinParty?: boolean | null | undefined;
674
+ sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
675
+ runCommandsWithoutPrefix?: boolean | null | undefined;
676
+ setCosmeticsWithoutCommands?: boolean | null | undefined;
677
+ setCosmeticsWithPrefix?: boolean | null | undefined;
678
+ acceptInvites?: boolean | null | undefined;
679
+ usernameTriggers?: import("mongoose").Types.DocumentArray<{
680
+ _id?: unknown;
681
+ triggers?: string[] | null | undefined;
682
+ detectionMethods?: number[] | null | undefined;
683
+ actions?: number[] | null | undefined;
684
+ messages?: string[] | null | undefined;
685
+ }, import("mongoose").Types.Subdocument<unknown, any, {
686
+ _id?: unknown;
687
+ triggers?: string[] | null | undefined;
688
+ detectionMethods?: number[] | null | undefined;
689
+ actions?: number[] | null | undefined;
690
+ messages?: string[] | null | undefined;
691
+ }> & {
692
+ _id?: unknown;
693
+ triggers?: string[] | null | undefined;
694
+ detectionMethods?: number[] | null | undefined;
695
+ actions?: number[] | null | undefined;
696
+ messages?: string[] | null | undefined;
697
+ }> | null | undefined;
698
+ messageContentTriggers?: import("mongoose").Types.DocumentArray<{
699
+ _id?: unknown;
700
+ triggers?: string[] | null | undefined;
701
+ detectionMethods?: number[] | null | undefined;
702
+ actions?: number[] | null | undefined;
703
+ messages?: string[] | null | undefined;
704
+ }, import("mongoose").Types.Subdocument<unknown, any, {
705
+ _id?: unknown;
706
+ triggers?: string[] | null | undefined;
707
+ detectionMethods?: number[] | null | undefined;
708
+ actions?: number[] | null | undefined;
709
+ messages?: string[] | null | undefined;
710
+ }> & {
711
+ _id?: unknown;
712
+ triggers?: string[] | null | undefined;
713
+ detectionMethods?: number[] | null | undefined;
714
+ actions?: number[] | null | undefined;
715
+ messages?: string[] | null | undefined;
716
+ }> | null | undefined;
717
+ cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
718
+ _id?: unknown;
719
+ triggers?: string[] | null | undefined;
720
+ detectionMethods?: number[] | null | undefined;
721
+ actions?: number[] | null | undefined;
722
+ messages?: string[] | null | undefined;
723
+ }, import("mongoose").Types.Subdocument<unknown, any, {
724
+ _id?: unknown;
725
+ triggers?: string[] | null | undefined;
726
+ detectionMethods?: number[] | null | undefined;
727
+ actions?: number[] | null | undefined;
728
+ messages?: string[] | null | undefined;
729
+ }> & {
730
+ _id?: unknown;
731
+ triggers?: string[] | null | undefined;
732
+ detectionMethods?: number[] | null | undefined;
733
+ actions?: number[] | null | undefined;
734
+ messages?: string[] | null | undefined;
735
+ }> | null | undefined;
736
+ addFriendTriggers?: import("mongoose").Types.DocumentArray<{
737
+ _id?: unknown;
738
+ triggers?: string[] | null | undefined;
739
+ detectionMethods?: number[] | null | undefined;
740
+ actions?: number[] | null | undefined;
741
+ messages?: string[] | null | undefined;
742
+ }, import("mongoose").Types.Subdocument<unknown, any, {
743
+ _id?: unknown;
744
+ triggers?: string[] | null | undefined;
745
+ detectionMethods?: number[] | null | undefined;
746
+ actions?: number[] | null | undefined;
747
+ messages?: string[] | null | undefined;
748
+ }> & {
749
+ _id?: unknown;
750
+ triggers?: string[] | null | undefined;
751
+ detectionMethods?: number[] | null | undefined;
752
+ actions?: number[] | null | undefined;
753
+ messages?: string[] | null | undefined;
754
+ }> | null | undefined;
755
+ memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
756
+ _id?: unknown;
757
+ triggers?: string[] | null | undefined;
758
+ detectionMethods?: number[] | null | undefined;
759
+ actions?: number[] | null | undefined;
760
+ messages?: string[] | null | undefined;
761
+ }, import("mongoose").Types.Subdocument<unknown, any, {
762
+ _id?: unknown;
763
+ triggers?: string[] | null | undefined;
764
+ detectionMethods?: number[] | null | undefined;
765
+ actions?: number[] | null | undefined;
766
+ messages?: string[] | null | undefined;
767
+ }> & {
768
+ _id?: unknown;
769
+ triggers?: string[] | null | undefined;
770
+ detectionMethods?: number[] | null | undefined;
771
+ actions?: number[] | null | undefined;
772
+ messages?: string[] | null | undefined;
773
+ }> | null | undefined;
774
+ changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
775
+ _id?: unknown;
776
+ triggers?: string[] | null | undefined;
777
+ detectionMethods?: number[] | null | undefined;
778
+ actions?: number[] | null | undefined;
779
+ messages?: string[] | null | undefined;
780
+ }, import("mongoose").Types.Subdocument<unknown, any, {
781
+ _id?: unknown;
782
+ triggers?: string[] | null | undefined;
783
+ detectionMethods?: number[] | null | undefined;
784
+ actions?: number[] | null | undefined;
785
+ messages?: string[] | null | undefined;
786
+ }> & {
787
+ _id?: unknown;
788
+ triggers?: string[] | null | undefined;
789
+ detectionMethods?: number[] | null | undefined;
790
+ actions?: number[] | null | undefined;
791
+ messages?: string[] | null | undefined;
792
+ }> | null | undefined;
793
+ onlyOwnerCommands?: string[] | null | undefined;
794
+ onlyAdminCommands?: string[] | null | undefined;
795
+ onlyWhitelistUsersCommands?: string[] | null | undefined;
796
+ onlyFriendsCommands?: string[] | null | undefined;
797
+ onlyPartyMembersCommands?: string[] | null | undefined;
798
+ onlyWhisperCommands?: string[] | null | undefined;
799
+ startOutfit?: import("mongoose").Types.DocumentArray<{
800
+ variants: number[];
801
+ id?: string | null | undefined;
802
+ _id?: unknown;
803
+ }, import("mongoose").Types.Subdocument<unknown, any, {
804
+ variants: number[];
805
+ id?: string | null | undefined;
806
+ _id?: unknown;
807
+ }> & {
808
+ variants: number[];
809
+ id?: string | null | undefined;
810
+ _id?: unknown;
811
+ }> | null | undefined;
812
+ startBackpack?: import("mongoose").Types.DocumentArray<{
813
+ variants: number[];
814
+ id?: string | null | undefined;
815
+ _id?: unknown;
816
+ }, import("mongoose").Types.Subdocument<unknown, any, {
817
+ variants: number[];
818
+ id?: string | null | undefined;
819
+ _id?: unknown;
820
+ }> & {
821
+ variants: number[];
822
+ id?: string | null | undefined;
823
+ _id?: unknown;
824
+ }> | null | undefined;
825
+ startPickaxe?: import("mongoose").Types.DocumentArray<{
826
+ variants: number[];
827
+ id?: string | null | undefined;
828
+ _id?: unknown;
829
+ }, import("mongoose").Types.Subdocument<unknown, any, {
830
+ variants: number[];
831
+ id?: string | null | undefined;
832
+ _id?: unknown;
833
+ }> & {
834
+ variants: number[];
835
+ id?: string | null | undefined;
836
+ _id?: unknown;
837
+ }> | null | undefined;
838
+ startShoes?: import("mongoose").Types.DocumentArray<{
839
+ variants: number[];
840
+ id?: string | null | undefined;
841
+ _id?: unknown;
842
+ }, import("mongoose").Types.Subdocument<unknown, any, {
843
+ variants: number[];
844
+ id?: string | null | undefined;
845
+ _id?: unknown;
846
+ }> & {
847
+ variants: number[];
848
+ id?: string | null | undefined;
849
+ _id?: unknown;
850
+ }> | null | undefined;
851
+ startBanner?: import("mongoose").Types.DocumentArray<{
852
+ id?: string | null | undefined;
853
+ _id?: unknown;
854
+ }, import("mongoose").Types.Subdocument<unknown, any, {
855
+ id?: string | null | undefined;
856
+ _id?: unknown;
857
+ }> & {
858
+ id?: string | null | undefined;
859
+ _id?: unknown;
860
+ }> | null | undefined;
861
+ startBannerColor?: import("mongoose").Types.DocumentArray<{
862
+ id?: string | null | undefined;
863
+ _id?: unknown;
864
+ }, import("mongoose").Types.Subdocument<unknown, any, {
865
+ id?: string | null | undefined;
866
+ _id?: unknown;
867
+ }> & {
868
+ id?: string | null | undefined;
869
+ _id?: unknown;
870
+ }> | null | undefined;
871
+ joinOutfit?: import("mongoose").Types.DocumentArray<{
872
+ variants: number[];
873
+ id?: string | null | undefined;
874
+ _id?: unknown;
875
+ }, import("mongoose").Types.Subdocument<unknown, any, {
876
+ variants: number[];
877
+ id?: string | null | undefined;
878
+ _id?: unknown;
879
+ }> & {
880
+ variants: number[];
881
+ id?: string | null | undefined;
882
+ _id?: unknown;
883
+ }> | null | undefined;
884
+ joinBackpack?: import("mongoose").Types.DocumentArray<{
885
+ variants: number[];
886
+ id?: string | null | undefined;
887
+ _id?: unknown;
888
+ }, import("mongoose").Types.Subdocument<unknown, any, {
889
+ variants: number[];
890
+ id?: string | null | undefined;
891
+ _id?: unknown;
892
+ }> & {
893
+ variants: number[];
894
+ id?: string | null | undefined;
895
+ _id?: unknown;
896
+ }> | null | undefined;
897
+ joinPickaxe?: import("mongoose").Types.DocumentArray<{
898
+ variants: number[];
899
+ id?: string | null | undefined;
900
+ _id?: unknown;
901
+ }, import("mongoose").Types.Subdocument<unknown, any, {
902
+ variants: number[];
903
+ id?: string | null | undefined;
904
+ _id?: unknown;
905
+ }> & {
906
+ variants: number[];
907
+ id?: string | null | undefined;
908
+ _id?: unknown;
909
+ }> | null | undefined;
910
+ joinEmote?: import("mongoose").Types.DocumentArray<{
911
+ id?: string | null | undefined;
912
+ _id?: unknown;
913
+ }, import("mongoose").Types.Subdocument<unknown, any, {
914
+ id?: string | null | undefined;
915
+ _id?: unknown;
916
+ }> & {
917
+ id?: string | null | undefined;
918
+ _id?: unknown;
919
+ }> | null | undefined;
920
+ joinShoes?: import("mongoose").Types.DocumentArray<{
921
+ variants: number[];
922
+ id?: string | null | undefined;
923
+ _id?: unknown;
924
+ }, import("mongoose").Types.Subdocument<unknown, any, {
925
+ variants: number[];
926
+ id?: string | null | undefined;
927
+ _id?: unknown;
928
+ }> & {
929
+ variants: number[];
930
+ id?: string | null | undefined;
931
+ _id?: unknown;
932
+ }> | null | undefined;
933
+ joinBanner?: import("mongoose").Types.DocumentArray<{
934
+ id?: string | null | undefined;
935
+ _id?: unknown;
936
+ }, import("mongoose").Types.Subdocument<unknown, any, {
937
+ id?: string | null | undefined;
938
+ _id?: unknown;
939
+ }> & {
940
+ id?: string | null | undefined;
941
+ _id?: unknown;
942
+ }> | null | undefined;
943
+ joinBannerColor?: import("mongoose").Types.DocumentArray<{
944
+ id?: string | null | undefined;
945
+ _id?: unknown;
946
+ }, import("mongoose").Types.Subdocument<unknown, any, {
947
+ id?: string | null | undefined;
948
+ _id?: unknown;
949
+ }> & {
950
+ id?: string | null | undefined;
951
+ _id?: unknown;
952
+ }> | null | undefined;
953
+ memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
954
+ variants: number[];
955
+ id?: string | null | undefined;
956
+ _id?: unknown;
957
+ }, import("mongoose").Types.Subdocument<unknown, any, {
958
+ variants: number[];
959
+ id?: string | null | undefined;
960
+ _id?: unknown;
961
+ }> & {
962
+ variants: number[];
963
+ id?: string | null | undefined;
964
+ _id?: unknown;
965
+ }> | null | undefined;
966
+ memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
967
+ variants: number[];
968
+ id?: string | null | undefined;
969
+ _id?: unknown;
970
+ }, import("mongoose").Types.Subdocument<unknown, any, {
971
+ variants: number[];
972
+ id?: string | null | undefined;
973
+ _id?: unknown;
974
+ }> & {
975
+ variants: number[];
976
+ id?: string | null | undefined;
977
+ _id?: unknown;
978
+ }> | null | undefined;
979
+ memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
980
+ variants: number[];
981
+ id?: string | null | undefined;
982
+ _id?: unknown;
983
+ }, import("mongoose").Types.Subdocument<unknown, any, {
984
+ variants: number[];
985
+ id?: string | null | undefined;
986
+ _id?: unknown;
987
+ }> & {
988
+ variants: number[];
989
+ id?: string | null | undefined;
990
+ _id?: unknown;
991
+ }> | null | undefined;
992
+ memberJoinEmote?: import("mongoose").Types.DocumentArray<{
993
+ id?: string | null | undefined;
994
+ _id?: unknown;
995
+ }, import("mongoose").Types.Subdocument<unknown, any, {
996
+ id?: string | null | undefined;
997
+ _id?: unknown;
998
+ }> & {
999
+ id?: string | null | undefined;
1000
+ _id?: unknown;
1001
+ }> | null | undefined;
1002
+ memberJoinShoes?: import("mongoose").Types.DocumentArray<{
1003
+ variants: number[];
1004
+ id?: string | null | undefined;
1005
+ _id?: unknown;
1006
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1007
+ variants: number[];
1008
+ id?: string | null | undefined;
1009
+ _id?: unknown;
1010
+ }> & {
1011
+ variants: number[];
1012
+ id?: string | null | undefined;
1013
+ _id?: unknown;
1014
+ }> | null | undefined;
1015
+ memberJoinBanner?: import("mongoose").Types.DocumentArray<{
1016
+ id?: string | null | undefined;
1017
+ _id?: unknown;
1018
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1019
+ id?: string | null | undefined;
1020
+ _id?: unknown;
1021
+ }> & {
1022
+ id?: string | null | undefined;
1023
+ _id?: unknown;
1024
+ }> | null | undefined;
1025
+ memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
1026
+ id?: string | null | undefined;
1027
+ _id?: unknown;
1028
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1029
+ id?: string | null | undefined;
1030
+ _id?: unknown;
1031
+ }> & {
1032
+ id?: string | null | undefined;
1033
+ _id?: unknown;
1034
+ }> | null | undefined;
1035
+ } | null | undefined;
1036
+ }> & {
1037
+ owner: import("mongoose").Types.ObjectId;
1038
+ name: string;
1039
+ disabled?: boolean | null | undefined;
1040
+ managed?: boolean | null | undefined;
1041
+ config?: {
1042
+ replyLangs?: string[] | null | undefined;
1043
+ searchLangs?: string[] | null | undefined;
1044
+ platform?: string[] | null | undefined;
1045
+ privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
1046
+ prefixes?: string[] | null | undefined;
1047
+ statusText?: string[] | null | undefined;
1048
+ statusInterval?: number | null | undefined;
1049
+ level?: number[] | null | undefined;
1050
+ bpLevel?: number[] | null | undefined;
1051
+ extraOwners?: import("mongoose").Types.DocumentArray<{
1052
+ id?: string | null | undefined;
1053
+ _id?: unknown;
1054
+ name?: string | null | undefined;
1055
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1056
+ id?: string | null | undefined;
1057
+ _id?: unknown;
1058
+ name?: string | null | undefined;
1059
+ }> & {
1060
+ id?: string | null | undefined;
1061
+ _id?: unknown;
1062
+ name?: string | null | undefined;
1063
+ }> | null | undefined;
1064
+ admins?: import("mongoose").Types.DocumentArray<{
1065
+ id?: string | null | undefined;
1066
+ _id?: unknown;
1067
+ name?: string | null | undefined;
1068
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1069
+ id?: string | null | undefined;
1070
+ _id?: unknown;
1071
+ name?: string | null | undefined;
1072
+ }> & {
1073
+ id?: string | null | undefined;
1074
+ _id?: unknown;
1075
+ name?: string | null | undefined;
1076
+ }> | null | undefined;
1077
+ whitelistUsers?: import("mongoose").Types.DocumentArray<{
1078
+ id?: string | null | undefined;
1079
+ _id?: unknown;
1080
+ name?: string | null | undefined;
1081
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1082
+ id?: string | null | undefined;
1083
+ _id?: unknown;
1084
+ name?: string | null | undefined;
1085
+ }> & {
1086
+ id?: string | null | undefined;
1087
+ _id?: unknown;
1088
+ name?: string | null | undefined;
1089
+ }> | null | undefined;
1090
+ blacklistUsers?: import("mongoose").Types.DocumentArray<{
1091
+ id?: string | null | undefined;
1092
+ _id?: unknown;
1093
+ name?: string | null | undefined;
1094
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1095
+ id?: string | null | undefined;
1096
+ _id?: unknown;
1097
+ name?: string | null | undefined;
1098
+ }> & {
1099
+ id?: string | null | undefined;
1100
+ _id?: unknown;
1101
+ name?: string | null | undefined;
1102
+ }> | null | undefined;
1103
+ excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
1104
+ id?: string | null | undefined;
1105
+ _id?: unknown;
1106
+ name?: string | null | undefined;
1107
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1108
+ id?: string | null | undefined;
1109
+ _id?: unknown;
1110
+ name?: string | null | undefined;
1111
+ }> & {
1112
+ id?: string | null | undefined;
1113
+ _id?: unknown;
1114
+ name?: string | null | undefined;
1115
+ }> | null | undefined;
1116
+ otherBots?: import("mongoose").Types.DocumentArray<{
1117
+ id?: string | null | undefined;
1118
+ _id?: unknown;
1119
+ name?: string | null | undefined;
1120
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1121
+ id?: string | null | undefined;
1122
+ _id?: unknown;
1123
+ name?: string | null | undefined;
1124
+ }> & {
1125
+ id?: string | null | undefined;
1126
+ _id?: unknown;
1127
+ name?: string | null | undefined;
1128
+ }> | null | undefined;
1129
+ inviteTimeout?: number | null | undefined;
1130
+ maxBotsPerLobby?: number | null | undefined;
1131
+ maxBotsPerLobbyWithOwner?: number | null | undefined;
1132
+ maxBotsPerLobbyWithAdmin?: number | null | undefined;
1133
+ maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
1134
+ allowMatchmaking?: boolean | null | undefined;
1135
+ leaveAfterMatchmaking?: boolean | null | undefined;
1136
+ disableMatchmakingChecks?: boolean | null | undefined;
1137
+ disablePlaylistChecks?: boolean | null | undefined;
1138
+ disableJoinMessages?: boolean | null | undefined;
1139
+ disableAutomaticMessages?: boolean | null | undefined;
1140
+ acceptFriendRequests?: boolean | null | undefined;
1141
+ sendFriendRequestOnJoinParty?: boolean | null | undefined;
1142
+ sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
1143
+ runCommandsWithoutPrefix?: boolean | null | undefined;
1144
+ setCosmeticsWithoutCommands?: boolean | null | undefined;
1145
+ setCosmeticsWithPrefix?: boolean | null | undefined;
1146
+ acceptInvites?: boolean | null | undefined;
1147
+ usernameTriggers?: import("mongoose").Types.DocumentArray<{
1148
+ _id?: unknown;
1149
+ triggers?: string[] | null | undefined;
1150
+ detectionMethods?: number[] | null | undefined;
1151
+ actions?: number[] | null | undefined;
1152
+ messages?: string[] | null | undefined;
1153
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1154
+ _id?: unknown;
1155
+ triggers?: string[] | null | undefined;
1156
+ detectionMethods?: number[] | null | undefined;
1157
+ actions?: number[] | null | undefined;
1158
+ messages?: string[] | null | undefined;
1159
+ }> & {
1160
+ _id?: unknown;
1161
+ triggers?: string[] | null | undefined;
1162
+ detectionMethods?: number[] | null | undefined;
1163
+ actions?: number[] | null | undefined;
1164
+ messages?: string[] | null | undefined;
1165
+ }> | null | undefined;
1166
+ messageContentTriggers?: import("mongoose").Types.DocumentArray<{
1167
+ _id?: unknown;
1168
+ triggers?: string[] | null | undefined;
1169
+ detectionMethods?: number[] | null | undefined;
1170
+ actions?: number[] | null | undefined;
1171
+ messages?: string[] | null | undefined;
1172
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1173
+ _id?: unknown;
1174
+ triggers?: string[] | null | undefined;
1175
+ detectionMethods?: number[] | null | undefined;
1176
+ actions?: number[] | null | undefined;
1177
+ messages?: string[] | null | undefined;
1178
+ }> & {
1179
+ _id?: unknown;
1180
+ triggers?: string[] | null | undefined;
1181
+ detectionMethods?: number[] | null | undefined;
1182
+ actions?: number[] | null | undefined;
1183
+ messages?: string[] | null | undefined;
1184
+ }> | null | undefined;
1185
+ cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
1186
+ _id?: unknown;
1187
+ triggers?: string[] | null | undefined;
1188
+ detectionMethods?: number[] | null | undefined;
1189
+ actions?: number[] | null | undefined;
1190
+ messages?: string[] | null | undefined;
1191
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1192
+ _id?: unknown;
1193
+ triggers?: string[] | null | undefined;
1194
+ detectionMethods?: number[] | null | undefined;
1195
+ actions?: number[] | null | undefined;
1196
+ messages?: string[] | null | undefined;
1197
+ }> & {
1198
+ _id?: unknown;
1199
+ triggers?: string[] | null | undefined;
1200
+ detectionMethods?: number[] | null | undefined;
1201
+ actions?: number[] | null | undefined;
1202
+ messages?: string[] | null | undefined;
1203
+ }> | null | undefined;
1204
+ addFriendTriggers?: import("mongoose").Types.DocumentArray<{
1205
+ _id?: unknown;
1206
+ triggers?: string[] | null | undefined;
1207
+ detectionMethods?: number[] | null | undefined;
1208
+ actions?: number[] | null | undefined;
1209
+ messages?: string[] | null | undefined;
1210
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1211
+ _id?: unknown;
1212
+ triggers?: string[] | null | undefined;
1213
+ detectionMethods?: number[] | null | undefined;
1214
+ actions?: number[] | null | undefined;
1215
+ messages?: string[] | null | undefined;
1216
+ }> & {
1217
+ _id?: unknown;
1218
+ triggers?: string[] | null | undefined;
1219
+ detectionMethods?: number[] | null | undefined;
1220
+ actions?: number[] | null | undefined;
1221
+ messages?: string[] | null | undefined;
1222
+ }> | null | undefined;
1223
+ memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
1224
+ _id?: unknown;
1225
+ triggers?: string[] | null | undefined;
1226
+ detectionMethods?: number[] | null | undefined;
1227
+ actions?: number[] | null | undefined;
1228
+ messages?: string[] | null | undefined;
1229
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1230
+ _id?: unknown;
1231
+ triggers?: string[] | null | undefined;
1232
+ detectionMethods?: number[] | null | undefined;
1233
+ actions?: number[] | null | undefined;
1234
+ messages?: string[] | null | undefined;
1235
+ }> & {
1236
+ _id?: unknown;
1237
+ triggers?: string[] | null | undefined;
1238
+ detectionMethods?: number[] | null | undefined;
1239
+ actions?: number[] | null | undefined;
1240
+ messages?: string[] | null | undefined;
1241
+ }> | null | undefined;
1242
+ changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
1243
+ _id?: unknown;
1244
+ triggers?: string[] | null | undefined;
1245
+ detectionMethods?: number[] | null | undefined;
1246
+ actions?: number[] | null | undefined;
1247
+ messages?: string[] | null | undefined;
1248
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1249
+ _id?: unknown;
1250
+ triggers?: string[] | null | undefined;
1251
+ detectionMethods?: number[] | null | undefined;
1252
+ actions?: number[] | null | undefined;
1253
+ messages?: string[] | null | undefined;
1254
+ }> & {
1255
+ _id?: unknown;
1256
+ triggers?: string[] | null | undefined;
1257
+ detectionMethods?: number[] | null | undefined;
1258
+ actions?: number[] | null | undefined;
1259
+ messages?: string[] | null | undefined;
1260
+ }> | null | undefined;
1261
+ onlyOwnerCommands?: string[] | null | undefined;
1262
+ onlyAdminCommands?: string[] | null | undefined;
1263
+ onlyWhitelistUsersCommands?: string[] | null | undefined;
1264
+ onlyFriendsCommands?: string[] | null | undefined;
1265
+ onlyPartyMembersCommands?: string[] | null | undefined;
1266
+ onlyWhisperCommands?: string[] | null | undefined;
1267
+ startOutfit?: import("mongoose").Types.DocumentArray<{
1268
+ variants: number[];
1269
+ id?: string | null | undefined;
1270
+ _id?: unknown;
1271
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1272
+ variants: number[];
1273
+ id?: string | null | undefined;
1274
+ _id?: unknown;
1275
+ }> & {
1276
+ variants: number[];
1277
+ id?: string | null | undefined;
1278
+ _id?: unknown;
1279
+ }> | null | undefined;
1280
+ startBackpack?: import("mongoose").Types.DocumentArray<{
1281
+ variants: number[];
1282
+ id?: string | null | undefined;
1283
+ _id?: unknown;
1284
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1285
+ variants: number[];
1286
+ id?: string | null | undefined;
1287
+ _id?: unknown;
1288
+ }> & {
1289
+ variants: number[];
1290
+ id?: string | null | undefined;
1291
+ _id?: unknown;
1292
+ }> | null | undefined;
1293
+ startPickaxe?: import("mongoose").Types.DocumentArray<{
1294
+ variants: number[];
1295
+ id?: string | null | undefined;
1296
+ _id?: unknown;
1297
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1298
+ variants: number[];
1299
+ id?: string | null | undefined;
1300
+ _id?: unknown;
1301
+ }> & {
1302
+ variants: number[];
1303
+ id?: string | null | undefined;
1304
+ _id?: unknown;
1305
+ }> | null | undefined;
1306
+ startShoes?: import("mongoose").Types.DocumentArray<{
1307
+ variants: number[];
1308
+ id?: string | null | undefined;
1309
+ _id?: unknown;
1310
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1311
+ variants: number[];
1312
+ id?: string | null | undefined;
1313
+ _id?: unknown;
1314
+ }> & {
1315
+ variants: number[];
1316
+ id?: string | null | undefined;
1317
+ _id?: unknown;
1318
+ }> | null | undefined;
1319
+ startBanner?: import("mongoose").Types.DocumentArray<{
1320
+ id?: string | null | undefined;
1321
+ _id?: unknown;
1322
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1323
+ id?: string | null | undefined;
1324
+ _id?: unknown;
1325
+ }> & {
1326
+ id?: string | null | undefined;
1327
+ _id?: unknown;
1328
+ }> | null | undefined;
1329
+ startBannerColor?: import("mongoose").Types.DocumentArray<{
1330
+ id?: string | null | undefined;
1331
+ _id?: unknown;
1332
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1333
+ id?: string | null | undefined;
1334
+ _id?: unknown;
1335
+ }> & {
1336
+ id?: string | null | undefined;
1337
+ _id?: unknown;
1338
+ }> | null | undefined;
1339
+ joinOutfit?: import("mongoose").Types.DocumentArray<{
1340
+ variants: number[];
1341
+ id?: string | null | undefined;
1342
+ _id?: unknown;
1343
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1344
+ variants: number[];
1345
+ id?: string | null | undefined;
1346
+ _id?: unknown;
1347
+ }> & {
1348
+ variants: number[];
1349
+ id?: string | null | undefined;
1350
+ _id?: unknown;
1351
+ }> | null | undefined;
1352
+ joinBackpack?: import("mongoose").Types.DocumentArray<{
1353
+ variants: number[];
1354
+ id?: string | null | undefined;
1355
+ _id?: unknown;
1356
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1357
+ variants: number[];
1358
+ id?: string | null | undefined;
1359
+ _id?: unknown;
1360
+ }> & {
1361
+ variants: number[];
1362
+ id?: string | null | undefined;
1363
+ _id?: unknown;
1364
+ }> | null | undefined;
1365
+ joinPickaxe?: import("mongoose").Types.DocumentArray<{
1366
+ variants: number[];
1367
+ id?: string | null | undefined;
1368
+ _id?: unknown;
1369
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1370
+ variants: number[];
1371
+ id?: string | null | undefined;
1372
+ _id?: unknown;
1373
+ }> & {
1374
+ variants: number[];
1375
+ id?: string | null | undefined;
1376
+ _id?: unknown;
1377
+ }> | null | undefined;
1378
+ joinEmote?: import("mongoose").Types.DocumentArray<{
1379
+ id?: string | null | undefined;
1380
+ _id?: unknown;
1381
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1382
+ id?: string | null | undefined;
1383
+ _id?: unknown;
1384
+ }> & {
1385
+ id?: string | null | undefined;
1386
+ _id?: unknown;
1387
+ }> | null | undefined;
1388
+ joinShoes?: import("mongoose").Types.DocumentArray<{
1389
+ variants: number[];
1390
+ id?: string | null | undefined;
1391
+ _id?: unknown;
1392
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1393
+ variants: number[];
1394
+ id?: string | null | undefined;
1395
+ _id?: unknown;
1396
+ }> & {
1397
+ variants: number[];
1398
+ id?: string | null | undefined;
1399
+ _id?: unknown;
1400
+ }> | null | undefined;
1401
+ joinBanner?: import("mongoose").Types.DocumentArray<{
1402
+ id?: string | null | undefined;
1403
+ _id?: unknown;
1404
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1405
+ id?: string | null | undefined;
1406
+ _id?: unknown;
1407
+ }> & {
1408
+ id?: string | null | undefined;
1409
+ _id?: unknown;
1410
+ }> | null | undefined;
1411
+ joinBannerColor?: import("mongoose").Types.DocumentArray<{
1412
+ id?: string | null | undefined;
1413
+ _id?: unknown;
1414
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1415
+ id?: string | null | undefined;
1416
+ _id?: unknown;
1417
+ }> & {
1418
+ id?: string | null | undefined;
1419
+ _id?: unknown;
1420
+ }> | null | undefined;
1421
+ memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
1422
+ variants: number[];
1423
+ id?: string | null | undefined;
1424
+ _id?: unknown;
1425
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1426
+ variants: number[];
1427
+ id?: string | null | undefined;
1428
+ _id?: unknown;
1429
+ }> & {
1430
+ variants: number[];
1431
+ id?: string | null | undefined;
1432
+ _id?: unknown;
1433
+ }> | null | undefined;
1434
+ memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
1435
+ variants: number[];
1436
+ id?: string | null | undefined;
1437
+ _id?: unknown;
1438
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1439
+ variants: number[];
1440
+ id?: string | null | undefined;
1441
+ _id?: unknown;
1442
+ }> & {
1443
+ variants: number[];
1444
+ id?: string | null | undefined;
1445
+ _id?: unknown;
1446
+ }> | null | undefined;
1447
+ memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
1448
+ variants: number[];
1449
+ id?: string | null | undefined;
1450
+ _id?: unknown;
1451
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1452
+ variants: number[];
1453
+ id?: string | null | undefined;
1454
+ _id?: unknown;
1455
+ }> & {
1456
+ variants: number[];
1457
+ id?: string | null | undefined;
1458
+ _id?: unknown;
1459
+ }> | null | undefined;
1460
+ memberJoinEmote?: import("mongoose").Types.DocumentArray<{
1461
+ id?: string | null | undefined;
1462
+ _id?: unknown;
1463
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1464
+ id?: string | null | undefined;
1465
+ _id?: unknown;
1466
+ }> & {
1467
+ id?: string | null | undefined;
1468
+ _id?: unknown;
1469
+ }> | null | undefined;
1470
+ memberJoinShoes?: import("mongoose").Types.DocumentArray<{
1471
+ variants: number[];
1472
+ id?: string | null | undefined;
1473
+ _id?: unknown;
1474
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1475
+ variants: number[];
1476
+ id?: string | null | undefined;
1477
+ _id?: unknown;
1478
+ }> & {
1479
+ variants: number[];
1480
+ id?: string | null | undefined;
1481
+ _id?: unknown;
1482
+ }> | null | undefined;
1483
+ memberJoinBanner?: import("mongoose").Types.DocumentArray<{
1484
+ id?: string | null | undefined;
1485
+ _id?: unknown;
1486
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1487
+ id?: string | null | undefined;
1488
+ _id?: unknown;
1489
+ }> & {
1490
+ id?: string | null | undefined;
1491
+ _id?: unknown;
1492
+ }> | null | undefined;
1493
+ memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
1494
+ id?: string | null | undefined;
1495
+ _id?: unknown;
1496
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1497
+ id?: string | null | undefined;
1498
+ _id?: unknown;
1499
+ }> & {
1500
+ id?: string | null | undefined;
1501
+ _id?: unknown;
1502
+ }> | null | undefined;
1503
+ } | null | undefined;
1504
+ } & {
1505
+ _id: import("mongoose").Types.ObjectId;
1506
+ } & {
1507
+ __v: number;
1508
+ }, Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
1509
+ owner: import("mongoose").Types.ObjectId;
1510
+ name: string;
1511
+ disabled?: boolean | null | undefined;
1512
+ managed?: boolean | null | undefined;
1513
+ config?: {
1514
+ replyLangs?: string[] | null | undefined;
1515
+ searchLangs?: string[] | null | undefined;
1516
+ platform?: string[] | null | undefined;
1517
+ privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
1518
+ prefixes?: string[] | null | undefined;
1519
+ statusText?: string[] | null | undefined;
1520
+ statusInterval?: number | null | undefined;
1521
+ level?: number[] | null | undefined;
1522
+ bpLevel?: number[] | null | undefined;
1523
+ extraOwners?: import("mongoose").Types.DocumentArray<{
1524
+ id?: string | null | undefined;
1525
+ _id?: unknown;
1526
+ name?: string | null | undefined;
1527
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1528
+ id?: string | null | undefined;
1529
+ _id?: unknown;
1530
+ name?: string | null | undefined;
1531
+ }> & {
1532
+ id?: string | null | undefined;
1533
+ _id?: unknown;
1534
+ name?: string | null | undefined;
1535
+ }> | null | undefined;
1536
+ admins?: import("mongoose").Types.DocumentArray<{
1537
+ id?: string | null | undefined;
1538
+ _id?: unknown;
1539
+ name?: string | null | undefined;
1540
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1541
+ id?: string | null | undefined;
1542
+ _id?: unknown;
1543
+ name?: string | null | undefined;
1544
+ }> & {
1545
+ id?: string | null | undefined;
1546
+ _id?: unknown;
1547
+ name?: string | null | undefined;
1548
+ }> | null | undefined;
1549
+ whitelistUsers?: import("mongoose").Types.DocumentArray<{
1550
+ id?: string | null | undefined;
1551
+ _id?: unknown;
1552
+ name?: string | null | undefined;
1553
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1554
+ id?: string | null | undefined;
1555
+ _id?: unknown;
1556
+ name?: string | null | undefined;
1557
+ }> & {
1558
+ id?: string | null | undefined;
1559
+ _id?: unknown;
1560
+ name?: string | null | undefined;
1561
+ }> | null | undefined;
1562
+ blacklistUsers?: import("mongoose").Types.DocumentArray<{
1563
+ id?: string | null | undefined;
1564
+ _id?: unknown;
1565
+ name?: string | null | undefined;
1566
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1567
+ id?: string | null | undefined;
1568
+ _id?: unknown;
1569
+ name?: string | null | undefined;
1570
+ }> & {
1571
+ id?: string | null | undefined;
1572
+ _id?: unknown;
1573
+ name?: string | null | undefined;
1574
+ }> | null | undefined;
1575
+ excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
1576
+ id?: string | null | undefined;
1577
+ _id?: unknown;
1578
+ name?: string | null | undefined;
1579
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1580
+ id?: string | null | undefined;
1581
+ _id?: unknown;
1582
+ name?: string | null | undefined;
1583
+ }> & {
1584
+ id?: string | null | undefined;
1585
+ _id?: unknown;
1586
+ name?: string | null | undefined;
1587
+ }> | null | undefined;
1588
+ otherBots?: import("mongoose").Types.DocumentArray<{
1589
+ id?: string | null | undefined;
1590
+ _id?: unknown;
1591
+ name?: string | null | undefined;
1592
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1593
+ id?: string | null | undefined;
1594
+ _id?: unknown;
1595
+ name?: string | null | undefined;
1596
+ }> & {
1597
+ id?: string | null | undefined;
1598
+ _id?: unknown;
1599
+ name?: string | null | undefined;
1600
+ }> | null | undefined;
1601
+ inviteTimeout?: number | null | undefined;
1602
+ maxBotsPerLobby?: number | null | undefined;
1603
+ maxBotsPerLobbyWithOwner?: number | null | undefined;
1604
+ maxBotsPerLobbyWithAdmin?: number | null | undefined;
1605
+ maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
1606
+ allowMatchmaking?: boolean | null | undefined;
1607
+ leaveAfterMatchmaking?: boolean | null | undefined;
1608
+ disableMatchmakingChecks?: boolean | null | undefined;
1609
+ disablePlaylistChecks?: boolean | null | undefined;
1610
+ disableJoinMessages?: boolean | null | undefined;
1611
+ disableAutomaticMessages?: boolean | null | undefined;
1612
+ acceptFriendRequests?: boolean | null | undefined;
1613
+ sendFriendRequestOnJoinParty?: boolean | null | undefined;
1614
+ sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
1615
+ runCommandsWithoutPrefix?: boolean | null | undefined;
1616
+ setCosmeticsWithoutCommands?: boolean | null | undefined;
1617
+ setCosmeticsWithPrefix?: boolean | null | undefined;
1618
+ acceptInvites?: boolean | null | undefined;
1619
+ usernameTriggers?: import("mongoose").Types.DocumentArray<{
1620
+ _id?: unknown;
1621
+ triggers?: string[] | null | undefined;
1622
+ detectionMethods?: number[] | null | undefined;
1623
+ actions?: number[] | null | undefined;
1624
+ messages?: string[] | null | undefined;
1625
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1626
+ _id?: unknown;
1627
+ triggers?: string[] | null | undefined;
1628
+ detectionMethods?: number[] | null | undefined;
1629
+ actions?: number[] | null | undefined;
1630
+ messages?: string[] | null | undefined;
1631
+ }> & {
1632
+ _id?: unknown;
1633
+ triggers?: string[] | null | undefined;
1634
+ detectionMethods?: number[] | null | undefined;
1635
+ actions?: number[] | null | undefined;
1636
+ messages?: string[] | null | undefined;
1637
+ }> | null | undefined;
1638
+ messageContentTriggers?: import("mongoose").Types.DocumentArray<{
1639
+ _id?: unknown;
1640
+ triggers?: string[] | null | undefined;
1641
+ detectionMethods?: number[] | null | undefined;
1642
+ actions?: number[] | null | undefined;
1643
+ messages?: string[] | null | undefined;
1644
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1645
+ _id?: unknown;
1646
+ triggers?: string[] | null | undefined;
1647
+ detectionMethods?: number[] | null | undefined;
1648
+ actions?: number[] | null | undefined;
1649
+ messages?: string[] | null | undefined;
1650
+ }> & {
1651
+ _id?: unknown;
1652
+ triggers?: string[] | null | undefined;
1653
+ detectionMethods?: number[] | null | undefined;
1654
+ actions?: number[] | null | undefined;
1655
+ messages?: string[] | null | undefined;
1656
+ }> | null | undefined;
1657
+ cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
1658
+ _id?: unknown;
1659
+ triggers?: string[] | null | undefined;
1660
+ detectionMethods?: number[] | null | undefined;
1661
+ actions?: number[] | null | undefined;
1662
+ messages?: string[] | null | undefined;
1663
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1664
+ _id?: unknown;
1665
+ triggers?: string[] | null | undefined;
1666
+ detectionMethods?: number[] | null | undefined;
1667
+ actions?: number[] | null | undefined;
1668
+ messages?: string[] | null | undefined;
1669
+ }> & {
1670
+ _id?: unknown;
1671
+ triggers?: string[] | null | undefined;
1672
+ detectionMethods?: number[] | null | undefined;
1673
+ actions?: number[] | null | undefined;
1674
+ messages?: string[] | null | undefined;
1675
+ }> | null | undefined;
1676
+ addFriendTriggers?: import("mongoose").Types.DocumentArray<{
1677
+ _id?: unknown;
1678
+ triggers?: string[] | null | undefined;
1679
+ detectionMethods?: number[] | null | undefined;
1680
+ actions?: number[] | null | undefined;
1681
+ messages?: string[] | null | undefined;
1682
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1683
+ _id?: unknown;
1684
+ triggers?: string[] | null | undefined;
1685
+ detectionMethods?: number[] | null | undefined;
1686
+ actions?: number[] | null | undefined;
1687
+ messages?: string[] | null | undefined;
1688
+ }> & {
1689
+ _id?: unknown;
1690
+ triggers?: string[] | null | undefined;
1691
+ detectionMethods?: number[] | null | undefined;
1692
+ actions?: number[] | null | undefined;
1693
+ messages?: string[] | null | undefined;
1694
+ }> | null | undefined;
1695
+ memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
1696
+ _id?: unknown;
1697
+ triggers?: string[] | null | undefined;
1698
+ detectionMethods?: number[] | null | undefined;
1699
+ actions?: number[] | null | undefined;
1700
+ messages?: string[] | null | undefined;
1701
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1702
+ _id?: unknown;
1703
+ triggers?: string[] | null | undefined;
1704
+ detectionMethods?: number[] | null | undefined;
1705
+ actions?: number[] | null | undefined;
1706
+ messages?: string[] | null | undefined;
1707
+ }> & {
1708
+ _id?: unknown;
1709
+ triggers?: string[] | null | undefined;
1710
+ detectionMethods?: number[] | null | undefined;
1711
+ actions?: number[] | null | undefined;
1712
+ messages?: string[] | null | undefined;
1713
+ }> | null | undefined;
1714
+ changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
1715
+ _id?: unknown;
1716
+ triggers?: string[] | null | undefined;
1717
+ detectionMethods?: number[] | null | undefined;
1718
+ actions?: number[] | null | undefined;
1719
+ messages?: string[] | null | undefined;
1720
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1721
+ _id?: unknown;
1722
+ triggers?: string[] | null | undefined;
1723
+ detectionMethods?: number[] | null | undefined;
1724
+ actions?: number[] | null | undefined;
1725
+ messages?: string[] | null | undefined;
1726
+ }> & {
1727
+ _id?: unknown;
1728
+ triggers?: string[] | null | undefined;
1729
+ detectionMethods?: number[] | null | undefined;
1730
+ actions?: number[] | null | undefined;
1731
+ messages?: string[] | null | undefined;
1732
+ }> | null | undefined;
1733
+ onlyOwnerCommands?: string[] | null | undefined;
1734
+ onlyAdminCommands?: string[] | null | undefined;
1735
+ onlyWhitelistUsersCommands?: string[] | null | undefined;
1736
+ onlyFriendsCommands?: string[] | null | undefined;
1737
+ onlyPartyMembersCommands?: string[] | null | undefined;
1738
+ onlyWhisperCommands?: string[] | null | undefined;
1739
+ startOutfit?: import("mongoose").Types.DocumentArray<{
1740
+ variants: number[];
1741
+ id?: string | null | undefined;
1742
+ _id?: unknown;
1743
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1744
+ variants: number[];
1745
+ id?: string | null | undefined;
1746
+ _id?: unknown;
1747
+ }> & {
1748
+ variants: number[];
1749
+ id?: string | null | undefined;
1750
+ _id?: unknown;
1751
+ }> | null | undefined;
1752
+ startBackpack?: import("mongoose").Types.DocumentArray<{
1753
+ variants: number[];
1754
+ id?: string | null | undefined;
1755
+ _id?: unknown;
1756
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1757
+ variants: number[];
1758
+ id?: string | null | undefined;
1759
+ _id?: unknown;
1760
+ }> & {
1761
+ variants: number[];
1762
+ id?: string | null | undefined;
1763
+ _id?: unknown;
1764
+ }> | null | undefined;
1765
+ startPickaxe?: import("mongoose").Types.DocumentArray<{
1766
+ variants: number[];
1767
+ id?: string | null | undefined;
1768
+ _id?: unknown;
1769
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1770
+ variants: number[];
1771
+ id?: string | null | undefined;
1772
+ _id?: unknown;
1773
+ }> & {
1774
+ variants: number[];
1775
+ id?: string | null | undefined;
1776
+ _id?: unknown;
1777
+ }> | null | undefined;
1778
+ startShoes?: import("mongoose").Types.DocumentArray<{
1779
+ variants: number[];
1780
+ id?: string | null | undefined;
1781
+ _id?: unknown;
1782
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1783
+ variants: number[];
1784
+ id?: string | null | undefined;
1785
+ _id?: unknown;
1786
+ }> & {
1787
+ variants: number[];
1788
+ id?: string | null | undefined;
1789
+ _id?: unknown;
1790
+ }> | null | undefined;
1791
+ startBanner?: import("mongoose").Types.DocumentArray<{
1792
+ id?: string | null | undefined;
1793
+ _id?: unknown;
1794
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1795
+ id?: string | null | undefined;
1796
+ _id?: unknown;
1797
+ }> & {
1798
+ id?: string | null | undefined;
1799
+ _id?: unknown;
1800
+ }> | null | undefined;
1801
+ startBannerColor?: import("mongoose").Types.DocumentArray<{
1802
+ id?: string | null | undefined;
1803
+ _id?: unknown;
1804
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1805
+ id?: string | null | undefined;
1806
+ _id?: unknown;
1807
+ }> & {
1808
+ id?: string | null | undefined;
1809
+ _id?: unknown;
1810
+ }> | null | undefined;
1811
+ joinOutfit?: import("mongoose").Types.DocumentArray<{
1812
+ variants: number[];
1813
+ id?: string | null | undefined;
1814
+ _id?: unknown;
1815
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1816
+ variants: number[];
1817
+ id?: string | null | undefined;
1818
+ _id?: unknown;
1819
+ }> & {
1820
+ variants: number[];
1821
+ id?: string | null | undefined;
1822
+ _id?: unknown;
1823
+ }> | null | undefined;
1824
+ joinBackpack?: import("mongoose").Types.DocumentArray<{
1825
+ variants: number[];
1826
+ id?: string | null | undefined;
1827
+ _id?: unknown;
1828
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1829
+ variants: number[];
1830
+ id?: string | null | undefined;
1831
+ _id?: unknown;
1832
+ }> & {
1833
+ variants: number[];
1834
+ id?: string | null | undefined;
1835
+ _id?: unknown;
1836
+ }> | null | undefined;
1837
+ joinPickaxe?: import("mongoose").Types.DocumentArray<{
1838
+ variants: number[];
1839
+ id?: string | null | undefined;
1840
+ _id?: unknown;
1841
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1842
+ variants: number[];
1843
+ id?: string | null | undefined;
1844
+ _id?: unknown;
1845
+ }> & {
1846
+ variants: number[];
1847
+ id?: string | null | undefined;
1848
+ _id?: unknown;
1849
+ }> | null | undefined;
1850
+ joinEmote?: import("mongoose").Types.DocumentArray<{
1851
+ id?: string | null | undefined;
1852
+ _id?: unknown;
1853
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1854
+ id?: string | null | undefined;
1855
+ _id?: unknown;
1856
+ }> & {
1857
+ id?: string | null | undefined;
1858
+ _id?: unknown;
1859
+ }> | null | undefined;
1860
+ joinShoes?: import("mongoose").Types.DocumentArray<{
1861
+ variants: number[];
1862
+ id?: string | null | undefined;
1863
+ _id?: unknown;
1864
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1865
+ variants: number[];
1866
+ id?: string | null | undefined;
1867
+ _id?: unknown;
1868
+ }> & {
1869
+ variants: number[];
1870
+ id?: string | null | undefined;
1871
+ _id?: unknown;
1872
+ }> | null | undefined;
1873
+ joinBanner?: import("mongoose").Types.DocumentArray<{
1874
+ id?: string | null | undefined;
1875
+ _id?: unknown;
1876
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1877
+ id?: string | null | undefined;
1878
+ _id?: unknown;
1879
+ }> & {
1880
+ id?: string | null | undefined;
1881
+ _id?: unknown;
1882
+ }> | null | undefined;
1883
+ joinBannerColor?: import("mongoose").Types.DocumentArray<{
1884
+ id?: string | null | undefined;
1885
+ _id?: unknown;
1886
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1887
+ id?: string | null | undefined;
1888
+ _id?: unknown;
1889
+ }> & {
1890
+ id?: string | null | undefined;
1891
+ _id?: unknown;
1892
+ }> | null | undefined;
1893
+ memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
1894
+ variants: number[];
1895
+ id?: string | null | undefined;
1896
+ _id?: unknown;
1897
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1898
+ variants: number[];
1899
+ id?: string | null | undefined;
1900
+ _id?: unknown;
1901
+ }> & {
1902
+ variants: number[];
1903
+ id?: string | null | undefined;
1904
+ _id?: unknown;
1905
+ }> | null | undefined;
1906
+ memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
1907
+ variants: number[];
1908
+ id?: string | null | undefined;
1909
+ _id?: unknown;
1910
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1911
+ variants: number[];
1912
+ id?: string | null | undefined;
1913
+ _id?: unknown;
1914
+ }> & {
1915
+ variants: number[];
1916
+ id?: string | null | undefined;
1917
+ _id?: unknown;
1918
+ }> | null | undefined;
1919
+ memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
1920
+ variants: number[];
1921
+ id?: string | null | undefined;
1922
+ _id?: unknown;
1923
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1924
+ variants: number[];
1925
+ id?: string | null | undefined;
1926
+ _id?: unknown;
1927
+ }> & {
1928
+ variants: number[];
1929
+ id?: string | null | undefined;
1930
+ _id?: unknown;
1931
+ }> | null | undefined;
1932
+ memberJoinEmote?: import("mongoose").Types.DocumentArray<{
1933
+ id?: string | null | undefined;
1934
+ _id?: unknown;
1935
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1936
+ id?: string | null | undefined;
1937
+ _id?: unknown;
1938
+ }> & {
1939
+ id?: string | null | undefined;
1940
+ _id?: unknown;
1941
+ }> | null | undefined;
1942
+ memberJoinShoes?: import("mongoose").Types.DocumentArray<{
1943
+ variants: number[];
1944
+ id?: string | null | undefined;
1945
+ _id?: unknown;
1946
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1947
+ variants: number[];
1948
+ id?: string | null | undefined;
1949
+ _id?: unknown;
1950
+ }> & {
1951
+ variants: number[];
1952
+ id?: string | null | undefined;
1953
+ _id?: unknown;
1954
+ }> | null | undefined;
1955
+ memberJoinBanner?: import("mongoose").Types.DocumentArray<{
1956
+ id?: string | null | undefined;
1957
+ _id?: unknown;
1958
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1959
+ id?: string | null | undefined;
1960
+ _id?: unknown;
1961
+ }> & {
1962
+ id?: string | null | undefined;
1963
+ _id?: unknown;
1964
+ }> | null | undefined;
1965
+ memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
1966
+ id?: string | null | undefined;
1967
+ _id?: unknown;
1968
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1969
+ id?: string | null | undefined;
1970
+ _id?: unknown;
1971
+ }> & {
1972
+ id?: string | null | undefined;
1973
+ _id?: unknown;
1974
+ }> | null | undefined;
1975
+ } | null | undefined;
1976
+ }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
1977
+ owner: import("mongoose").Types.ObjectId;
1978
+ name: string;
1979
+ disabled?: boolean | null | undefined;
1980
+ managed?: boolean | null | undefined;
1981
+ config?: {
1982
+ replyLangs?: string[] | null | undefined;
1983
+ searchLangs?: string[] | null | undefined;
1984
+ platform?: string[] | null | undefined;
1985
+ privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
1986
+ prefixes?: string[] | null | undefined;
1987
+ statusText?: string[] | null | undefined;
1988
+ statusInterval?: number | null | undefined;
1989
+ level?: number[] | null | undefined;
1990
+ bpLevel?: number[] | null | undefined;
1991
+ extraOwners?: import("mongoose").Types.DocumentArray<{
1992
+ id?: string | null | undefined;
1993
+ _id?: unknown;
1994
+ name?: string | null | undefined;
1995
+ }, import("mongoose").Types.Subdocument<unknown, any, {
1996
+ id?: string | null | undefined;
1997
+ _id?: unknown;
1998
+ name?: string | null | undefined;
1999
+ }> & {
2000
+ id?: string | null | undefined;
2001
+ _id?: unknown;
2002
+ name?: string | null | undefined;
2003
+ }> | null | undefined;
2004
+ admins?: import("mongoose").Types.DocumentArray<{
2005
+ id?: string | null | undefined;
2006
+ _id?: unknown;
2007
+ name?: string | null | undefined;
2008
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2009
+ id?: string | null | undefined;
2010
+ _id?: unknown;
2011
+ name?: string | null | undefined;
2012
+ }> & {
2013
+ id?: string | null | undefined;
2014
+ _id?: unknown;
2015
+ name?: string | null | undefined;
2016
+ }> | null | undefined;
2017
+ whitelistUsers?: import("mongoose").Types.DocumentArray<{
2018
+ id?: string | null | undefined;
2019
+ _id?: unknown;
2020
+ name?: string | null | undefined;
2021
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2022
+ id?: string | null | undefined;
2023
+ _id?: unknown;
2024
+ name?: string | null | undefined;
2025
+ }> & {
2026
+ id?: string | null | undefined;
2027
+ _id?: unknown;
2028
+ name?: string | null | undefined;
2029
+ }> | null | undefined;
2030
+ blacklistUsers?: import("mongoose").Types.DocumentArray<{
2031
+ id?: string | null | undefined;
2032
+ _id?: unknown;
2033
+ name?: string | null | undefined;
2034
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2035
+ id?: string | null | undefined;
2036
+ _id?: unknown;
2037
+ name?: string | null | undefined;
2038
+ }> & {
2039
+ id?: string | null | undefined;
2040
+ _id?: unknown;
2041
+ name?: string | null | undefined;
2042
+ }> | null | undefined;
2043
+ excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
2044
+ id?: string | null | undefined;
2045
+ _id?: unknown;
2046
+ name?: string | null | undefined;
2047
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2048
+ id?: string | null | undefined;
2049
+ _id?: unknown;
2050
+ name?: string | null | undefined;
2051
+ }> & {
2052
+ id?: string | null | undefined;
2053
+ _id?: unknown;
2054
+ name?: string | null | undefined;
2055
+ }> | null | undefined;
2056
+ otherBots?: import("mongoose").Types.DocumentArray<{
2057
+ id?: string | null | undefined;
2058
+ _id?: unknown;
2059
+ name?: string | null | undefined;
2060
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2061
+ id?: string | null | undefined;
2062
+ _id?: unknown;
2063
+ name?: string | null | undefined;
2064
+ }> & {
2065
+ id?: string | null | undefined;
2066
+ _id?: unknown;
2067
+ name?: string | null | undefined;
2068
+ }> | null | undefined;
2069
+ inviteTimeout?: number | null | undefined;
2070
+ maxBotsPerLobby?: number | null | undefined;
2071
+ maxBotsPerLobbyWithOwner?: number | null | undefined;
2072
+ maxBotsPerLobbyWithAdmin?: number | null | undefined;
2073
+ maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
2074
+ allowMatchmaking?: boolean | null | undefined;
2075
+ leaveAfterMatchmaking?: boolean | null | undefined;
2076
+ disableMatchmakingChecks?: boolean | null | undefined;
2077
+ disablePlaylistChecks?: boolean | null | undefined;
2078
+ disableJoinMessages?: boolean | null | undefined;
2079
+ disableAutomaticMessages?: boolean | null | undefined;
2080
+ acceptFriendRequests?: boolean | null | undefined;
2081
+ sendFriendRequestOnJoinParty?: boolean | null | undefined;
2082
+ sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
2083
+ runCommandsWithoutPrefix?: boolean | null | undefined;
2084
+ setCosmeticsWithoutCommands?: boolean | null | undefined;
2085
+ setCosmeticsWithPrefix?: boolean | null | undefined;
2086
+ acceptInvites?: boolean | null | undefined;
2087
+ usernameTriggers?: import("mongoose").Types.DocumentArray<{
2088
+ _id?: unknown;
2089
+ triggers?: string[] | null | undefined;
2090
+ detectionMethods?: number[] | null | undefined;
2091
+ actions?: number[] | null | undefined;
2092
+ messages?: string[] | null | undefined;
2093
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2094
+ _id?: unknown;
2095
+ triggers?: string[] | null | undefined;
2096
+ detectionMethods?: number[] | null | undefined;
2097
+ actions?: number[] | null | undefined;
2098
+ messages?: string[] | null | undefined;
2099
+ }> & {
2100
+ _id?: unknown;
2101
+ triggers?: string[] | null | undefined;
2102
+ detectionMethods?: number[] | null | undefined;
2103
+ actions?: number[] | null | undefined;
2104
+ messages?: string[] | null | undefined;
2105
+ }> | null | undefined;
2106
+ messageContentTriggers?: import("mongoose").Types.DocumentArray<{
2107
+ _id?: unknown;
2108
+ triggers?: string[] | null | undefined;
2109
+ detectionMethods?: number[] | null | undefined;
2110
+ actions?: number[] | null | undefined;
2111
+ messages?: string[] | null | undefined;
2112
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2113
+ _id?: unknown;
2114
+ triggers?: string[] | null | undefined;
2115
+ detectionMethods?: number[] | null | undefined;
2116
+ actions?: number[] | null | undefined;
2117
+ messages?: string[] | null | undefined;
2118
+ }> & {
2119
+ _id?: unknown;
2120
+ triggers?: string[] | null | undefined;
2121
+ detectionMethods?: number[] | null | undefined;
2122
+ actions?: number[] | null | undefined;
2123
+ messages?: string[] | null | undefined;
2124
+ }> | null | undefined;
2125
+ cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
2126
+ _id?: unknown;
2127
+ triggers?: string[] | null | undefined;
2128
+ detectionMethods?: number[] | null | undefined;
2129
+ actions?: number[] | null | undefined;
2130
+ messages?: string[] | null | undefined;
2131
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2132
+ _id?: unknown;
2133
+ triggers?: string[] | null | undefined;
2134
+ detectionMethods?: number[] | null | undefined;
2135
+ actions?: number[] | null | undefined;
2136
+ messages?: string[] | null | undefined;
2137
+ }> & {
2138
+ _id?: unknown;
2139
+ triggers?: string[] | null | undefined;
2140
+ detectionMethods?: number[] | null | undefined;
2141
+ actions?: number[] | null | undefined;
2142
+ messages?: string[] | null | undefined;
2143
+ }> | null | undefined;
2144
+ addFriendTriggers?: import("mongoose").Types.DocumentArray<{
2145
+ _id?: unknown;
2146
+ triggers?: string[] | null | undefined;
2147
+ detectionMethods?: number[] | null | undefined;
2148
+ actions?: number[] | null | undefined;
2149
+ messages?: string[] | null | undefined;
2150
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2151
+ _id?: unknown;
2152
+ triggers?: string[] | null | undefined;
2153
+ detectionMethods?: number[] | null | undefined;
2154
+ actions?: number[] | null | undefined;
2155
+ messages?: string[] | null | undefined;
2156
+ }> & {
2157
+ _id?: unknown;
2158
+ triggers?: string[] | null | undefined;
2159
+ detectionMethods?: number[] | null | undefined;
2160
+ actions?: number[] | null | undefined;
2161
+ messages?: string[] | null | undefined;
2162
+ }> | null | undefined;
2163
+ memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
2164
+ _id?: unknown;
2165
+ triggers?: string[] | null | undefined;
2166
+ detectionMethods?: number[] | null | undefined;
2167
+ actions?: number[] | null | undefined;
2168
+ messages?: string[] | null | undefined;
2169
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2170
+ _id?: unknown;
2171
+ triggers?: string[] | null | undefined;
2172
+ detectionMethods?: number[] | null | undefined;
2173
+ actions?: number[] | null | undefined;
2174
+ messages?: string[] | null | undefined;
2175
+ }> & {
2176
+ _id?: unknown;
2177
+ triggers?: string[] | null | undefined;
2178
+ detectionMethods?: number[] | null | undefined;
2179
+ actions?: number[] | null | undefined;
2180
+ messages?: string[] | null | undefined;
2181
+ }> | null | undefined;
2182
+ changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
2183
+ _id?: unknown;
2184
+ triggers?: string[] | null | undefined;
2185
+ detectionMethods?: number[] | null | undefined;
2186
+ actions?: number[] | null | undefined;
2187
+ messages?: string[] | null | undefined;
2188
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2189
+ _id?: unknown;
2190
+ triggers?: string[] | null | undefined;
2191
+ detectionMethods?: number[] | null | undefined;
2192
+ actions?: number[] | null | undefined;
2193
+ messages?: string[] | null | undefined;
2194
+ }> & {
2195
+ _id?: unknown;
2196
+ triggers?: string[] | null | undefined;
2197
+ detectionMethods?: number[] | null | undefined;
2198
+ actions?: number[] | null | undefined;
2199
+ messages?: string[] | null | undefined;
2200
+ }> | null | undefined;
2201
+ onlyOwnerCommands?: string[] | null | undefined;
2202
+ onlyAdminCommands?: string[] | null | undefined;
2203
+ onlyWhitelistUsersCommands?: string[] | null | undefined;
2204
+ onlyFriendsCommands?: string[] | null | undefined;
2205
+ onlyPartyMembersCommands?: string[] | null | undefined;
2206
+ onlyWhisperCommands?: string[] | null | undefined;
2207
+ startOutfit?: import("mongoose").Types.DocumentArray<{
2208
+ variants: number[];
2209
+ id?: string | null | undefined;
2210
+ _id?: unknown;
2211
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2212
+ variants: number[];
2213
+ id?: string | null | undefined;
2214
+ _id?: unknown;
2215
+ }> & {
2216
+ variants: number[];
2217
+ id?: string | null | undefined;
2218
+ _id?: unknown;
2219
+ }> | null | undefined;
2220
+ startBackpack?: import("mongoose").Types.DocumentArray<{
2221
+ variants: number[];
2222
+ id?: string | null | undefined;
2223
+ _id?: unknown;
2224
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2225
+ variants: number[];
2226
+ id?: string | null | undefined;
2227
+ _id?: unknown;
2228
+ }> & {
2229
+ variants: number[];
2230
+ id?: string | null | undefined;
2231
+ _id?: unknown;
2232
+ }> | null | undefined;
2233
+ startPickaxe?: import("mongoose").Types.DocumentArray<{
2234
+ variants: number[];
2235
+ id?: string | null | undefined;
2236
+ _id?: unknown;
2237
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2238
+ variants: number[];
2239
+ id?: string | null | undefined;
2240
+ _id?: unknown;
2241
+ }> & {
2242
+ variants: number[];
2243
+ id?: string | null | undefined;
2244
+ _id?: unknown;
2245
+ }> | null | undefined;
2246
+ startShoes?: import("mongoose").Types.DocumentArray<{
2247
+ variants: number[];
2248
+ id?: string | null | undefined;
2249
+ _id?: unknown;
2250
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2251
+ variants: number[];
2252
+ id?: string | null | undefined;
2253
+ _id?: unknown;
2254
+ }> & {
2255
+ variants: number[];
2256
+ id?: string | null | undefined;
2257
+ _id?: unknown;
2258
+ }> | null | undefined;
2259
+ startBanner?: import("mongoose").Types.DocumentArray<{
2260
+ id?: string | null | undefined;
2261
+ _id?: unknown;
2262
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2263
+ id?: string | null | undefined;
2264
+ _id?: unknown;
2265
+ }> & {
2266
+ id?: string | null | undefined;
2267
+ _id?: unknown;
2268
+ }> | null | undefined;
2269
+ startBannerColor?: import("mongoose").Types.DocumentArray<{
2270
+ id?: string | null | undefined;
2271
+ _id?: unknown;
2272
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2273
+ id?: string | null | undefined;
2274
+ _id?: unknown;
2275
+ }> & {
2276
+ id?: string | null | undefined;
2277
+ _id?: unknown;
2278
+ }> | null | undefined;
2279
+ joinOutfit?: import("mongoose").Types.DocumentArray<{
2280
+ variants: number[];
2281
+ id?: string | null | undefined;
2282
+ _id?: unknown;
2283
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2284
+ variants: number[];
2285
+ id?: string | null | undefined;
2286
+ _id?: unknown;
2287
+ }> & {
2288
+ variants: number[];
2289
+ id?: string | null | undefined;
2290
+ _id?: unknown;
2291
+ }> | null | undefined;
2292
+ joinBackpack?: import("mongoose").Types.DocumentArray<{
2293
+ variants: number[];
2294
+ id?: string | null | undefined;
2295
+ _id?: unknown;
2296
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2297
+ variants: number[];
2298
+ id?: string | null | undefined;
2299
+ _id?: unknown;
2300
+ }> & {
2301
+ variants: number[];
2302
+ id?: string | null | undefined;
2303
+ _id?: unknown;
2304
+ }> | null | undefined;
2305
+ joinPickaxe?: import("mongoose").Types.DocumentArray<{
2306
+ variants: number[];
2307
+ id?: string | null | undefined;
2308
+ _id?: unknown;
2309
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2310
+ variants: number[];
2311
+ id?: string | null | undefined;
2312
+ _id?: unknown;
2313
+ }> & {
2314
+ variants: number[];
2315
+ id?: string | null | undefined;
2316
+ _id?: unknown;
2317
+ }> | null | undefined;
2318
+ joinEmote?: import("mongoose").Types.DocumentArray<{
2319
+ id?: string | null | undefined;
2320
+ _id?: unknown;
2321
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2322
+ id?: string | null | undefined;
2323
+ _id?: unknown;
2324
+ }> & {
2325
+ id?: string | null | undefined;
2326
+ _id?: unknown;
2327
+ }> | null | undefined;
2328
+ joinShoes?: import("mongoose").Types.DocumentArray<{
2329
+ variants: number[];
2330
+ id?: string | null | undefined;
2331
+ _id?: unknown;
2332
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2333
+ variants: number[];
2334
+ id?: string | null | undefined;
2335
+ _id?: unknown;
2336
+ }> & {
2337
+ variants: number[];
2338
+ id?: string | null | undefined;
2339
+ _id?: unknown;
2340
+ }> | null | undefined;
2341
+ joinBanner?: import("mongoose").Types.DocumentArray<{
2342
+ id?: string | null | undefined;
2343
+ _id?: unknown;
2344
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2345
+ id?: string | null | undefined;
2346
+ _id?: unknown;
2347
+ }> & {
2348
+ id?: string | null | undefined;
2349
+ _id?: unknown;
2350
+ }> | null | undefined;
2351
+ joinBannerColor?: import("mongoose").Types.DocumentArray<{
2352
+ id?: string | null | undefined;
2353
+ _id?: unknown;
2354
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2355
+ id?: string | null | undefined;
2356
+ _id?: unknown;
2357
+ }> & {
2358
+ id?: string | null | undefined;
2359
+ _id?: unknown;
2360
+ }> | null | undefined;
2361
+ memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
2362
+ variants: number[];
2363
+ id?: string | null | undefined;
2364
+ _id?: unknown;
2365
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2366
+ variants: number[];
2367
+ id?: string | null | undefined;
2368
+ _id?: unknown;
2369
+ }> & {
2370
+ variants: number[];
2371
+ id?: string | null | undefined;
2372
+ _id?: unknown;
2373
+ }> | null | undefined;
2374
+ memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
2375
+ variants: number[];
2376
+ id?: string | null | undefined;
2377
+ _id?: unknown;
2378
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2379
+ variants: number[];
2380
+ id?: string | null | undefined;
2381
+ _id?: unknown;
2382
+ }> & {
2383
+ variants: number[];
2384
+ id?: string | null | undefined;
2385
+ _id?: unknown;
2386
+ }> | null | undefined;
2387
+ memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
2388
+ variants: number[];
2389
+ id?: string | null | undefined;
2390
+ _id?: unknown;
2391
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2392
+ variants: number[];
2393
+ id?: string | null | undefined;
2394
+ _id?: unknown;
2395
+ }> & {
2396
+ variants: number[];
2397
+ id?: string | null | undefined;
2398
+ _id?: unknown;
2399
+ }> | null | undefined;
2400
+ memberJoinEmote?: import("mongoose").Types.DocumentArray<{
2401
+ id?: string | null | undefined;
2402
+ _id?: unknown;
2403
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2404
+ id?: string | null | undefined;
2405
+ _id?: unknown;
2406
+ }> & {
2407
+ id?: string | null | undefined;
2408
+ _id?: unknown;
2409
+ }> | null | undefined;
2410
+ memberJoinShoes?: import("mongoose").Types.DocumentArray<{
2411
+ variants: number[];
2412
+ id?: string | null | undefined;
2413
+ _id?: unknown;
2414
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2415
+ variants: number[];
2416
+ id?: string | null | undefined;
2417
+ _id?: unknown;
2418
+ }> & {
2419
+ variants: number[];
2420
+ id?: string | null | undefined;
2421
+ _id?: unknown;
2422
+ }> | null | undefined;
2423
+ memberJoinBanner?: import("mongoose").Types.DocumentArray<{
2424
+ id?: string | null | undefined;
2425
+ _id?: unknown;
2426
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2427
+ id?: string | null | undefined;
2428
+ _id?: unknown;
2429
+ }> & {
2430
+ id?: string | null | undefined;
2431
+ _id?: unknown;
2432
+ }> | null | undefined;
2433
+ memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
2434
+ id?: string | null | undefined;
2435
+ _id?: unknown;
2436
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2437
+ id?: string | null | undefined;
2438
+ _id?: unknown;
2439
+ }> & {
2440
+ id?: string | null | undefined;
2441
+ _id?: unknown;
2442
+ }> | null | undefined;
2443
+ } | null | undefined;
2444
+ }>> & import("mongoose").FlatRecord<{
2445
+ owner: import("mongoose").Types.ObjectId;
2446
+ name: string;
2447
+ disabled?: boolean | null | undefined;
2448
+ managed?: boolean | null | undefined;
2449
+ config?: {
2450
+ replyLangs?: string[] | null | undefined;
2451
+ searchLangs?: string[] | null | undefined;
2452
+ platform?: string[] | null | undefined;
2453
+ privacy?: string | CategoryConfigPartyPrivacy | null | undefined;
2454
+ prefixes?: string[] | null | undefined;
2455
+ statusText?: string[] | null | undefined;
2456
+ statusInterval?: number | null | undefined;
2457
+ level?: number[] | null | undefined;
2458
+ bpLevel?: number[] | null | undefined;
2459
+ extraOwners?: import("mongoose").Types.DocumentArray<{
2460
+ id?: string | null | undefined;
2461
+ _id?: unknown;
2462
+ name?: string | null | undefined;
2463
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2464
+ id?: string | null | undefined;
2465
+ _id?: unknown;
2466
+ name?: string | null | undefined;
2467
+ }> & {
2468
+ id?: string | null | undefined;
2469
+ _id?: unknown;
2470
+ name?: string | null | undefined;
2471
+ }> | null | undefined;
2472
+ admins?: import("mongoose").Types.DocumentArray<{
2473
+ id?: string | null | undefined;
2474
+ _id?: unknown;
2475
+ name?: string | null | undefined;
2476
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2477
+ id?: string | null | undefined;
2478
+ _id?: unknown;
2479
+ name?: string | null | undefined;
2480
+ }> & {
2481
+ id?: string | null | undefined;
2482
+ _id?: unknown;
2483
+ name?: string | null | undefined;
2484
+ }> | null | undefined;
2485
+ whitelistUsers?: import("mongoose").Types.DocumentArray<{
2486
+ id?: string | null | undefined;
2487
+ _id?: unknown;
2488
+ name?: string | null | undefined;
2489
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2490
+ id?: string | null | undefined;
2491
+ _id?: unknown;
2492
+ name?: string | null | undefined;
2493
+ }> & {
2494
+ id?: string | null | undefined;
2495
+ _id?: unknown;
2496
+ name?: string | null | undefined;
2497
+ }> | null | undefined;
2498
+ blacklistUsers?: import("mongoose").Types.DocumentArray<{
2499
+ id?: string | null | undefined;
2500
+ _id?: unknown;
2501
+ name?: string | null | undefined;
2502
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2503
+ id?: string | null | undefined;
2504
+ _id?: unknown;
2505
+ name?: string | null | undefined;
2506
+ }> & {
2507
+ id?: string | null | undefined;
2508
+ _id?: unknown;
2509
+ name?: string | null | undefined;
2510
+ }> | null | undefined;
2511
+ excludedAutoAddFriends?: import("mongoose").Types.DocumentArray<{
2512
+ id?: string | null | undefined;
2513
+ _id?: unknown;
2514
+ name?: string | null | undefined;
2515
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2516
+ id?: string | null | undefined;
2517
+ _id?: unknown;
2518
+ name?: string | null | undefined;
2519
+ }> & {
2520
+ id?: string | null | undefined;
2521
+ _id?: unknown;
2522
+ name?: string | null | undefined;
2523
+ }> | null | undefined;
2524
+ otherBots?: import("mongoose").Types.DocumentArray<{
2525
+ id?: string | null | undefined;
2526
+ _id?: unknown;
2527
+ name?: string | null | undefined;
2528
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2529
+ id?: string | null | undefined;
2530
+ _id?: unknown;
2531
+ name?: string | null | undefined;
2532
+ }> & {
2533
+ id?: string | null | undefined;
2534
+ _id?: unknown;
2535
+ name?: string | null | undefined;
2536
+ }> | null | undefined;
2537
+ inviteTimeout?: number | null | undefined;
2538
+ maxBotsPerLobby?: number | null | undefined;
2539
+ maxBotsPerLobbyWithOwner?: number | null | undefined;
2540
+ maxBotsPerLobbyWithAdmin?: number | null | undefined;
2541
+ maxBotsPerLobbyWithWhitelistUser?: number | null | undefined;
2542
+ allowMatchmaking?: boolean | null | undefined;
2543
+ leaveAfterMatchmaking?: boolean | null | undefined;
2544
+ disableMatchmakingChecks?: boolean | null | undefined;
2545
+ disablePlaylistChecks?: boolean | null | undefined;
2546
+ disableJoinMessages?: boolean | null | undefined;
2547
+ disableAutomaticMessages?: boolean | null | undefined;
2548
+ acceptFriendRequests?: boolean | null | undefined;
2549
+ sendFriendRequestOnJoinParty?: boolean | null | undefined;
2550
+ sendFriendRequestOnMemberJoinParty?: boolean | null | undefined;
2551
+ runCommandsWithoutPrefix?: boolean | null | undefined;
2552
+ setCosmeticsWithoutCommands?: boolean | null | undefined;
2553
+ setCosmeticsWithPrefix?: boolean | null | undefined;
2554
+ acceptInvites?: boolean | null | undefined;
2555
+ usernameTriggers?: import("mongoose").Types.DocumentArray<{
2556
+ _id?: unknown;
2557
+ triggers?: string[] | null | undefined;
2558
+ detectionMethods?: number[] | null | undefined;
2559
+ actions?: number[] | null | undefined;
2560
+ messages?: string[] | null | undefined;
2561
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2562
+ _id?: unknown;
2563
+ triggers?: string[] | null | undefined;
2564
+ detectionMethods?: number[] | null | undefined;
2565
+ actions?: number[] | null | undefined;
2566
+ messages?: string[] | null | undefined;
2567
+ }> & {
2568
+ _id?: unknown;
2569
+ triggers?: string[] | null | undefined;
2570
+ detectionMethods?: number[] | null | undefined;
2571
+ actions?: number[] | null | undefined;
2572
+ messages?: string[] | null | undefined;
2573
+ }> | null | undefined;
2574
+ messageContentTriggers?: import("mongoose").Types.DocumentArray<{
2575
+ _id?: unknown;
2576
+ triggers?: string[] | null | undefined;
2577
+ detectionMethods?: number[] | null | undefined;
2578
+ actions?: number[] | null | undefined;
2579
+ messages?: string[] | null | undefined;
2580
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2581
+ _id?: unknown;
2582
+ triggers?: string[] | null | undefined;
2583
+ detectionMethods?: number[] | null | undefined;
2584
+ actions?: number[] | null | undefined;
2585
+ messages?: string[] | null | undefined;
2586
+ }> & {
2587
+ _id?: unknown;
2588
+ triggers?: string[] | null | undefined;
2589
+ detectionMethods?: number[] | null | undefined;
2590
+ actions?: number[] | null | undefined;
2591
+ messages?: string[] | null | undefined;
2592
+ }> | null | undefined;
2593
+ cosmeticTriggers?: import("mongoose").Types.DocumentArray<{
2594
+ _id?: unknown;
2595
+ triggers?: string[] | null | undefined;
2596
+ detectionMethods?: number[] | null | undefined;
2597
+ actions?: number[] | null | undefined;
2598
+ messages?: string[] | null | undefined;
2599
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2600
+ _id?: unknown;
2601
+ triggers?: string[] | null | undefined;
2602
+ detectionMethods?: number[] | null | undefined;
2603
+ actions?: number[] | null | undefined;
2604
+ messages?: string[] | null | undefined;
2605
+ }> & {
2606
+ _id?: unknown;
2607
+ triggers?: string[] | null | undefined;
2608
+ detectionMethods?: number[] | null | undefined;
2609
+ actions?: number[] | null | undefined;
2610
+ messages?: string[] | null | undefined;
2611
+ }> | null | undefined;
2612
+ addFriendTriggers?: import("mongoose").Types.DocumentArray<{
2613
+ _id?: unknown;
2614
+ triggers?: string[] | null | undefined;
2615
+ detectionMethods?: number[] | null | undefined;
2616
+ actions?: number[] | null | undefined;
2617
+ messages?: string[] | null | undefined;
2618
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2619
+ _id?: unknown;
2620
+ triggers?: string[] | null | undefined;
2621
+ detectionMethods?: number[] | null | undefined;
2622
+ actions?: number[] | null | undefined;
2623
+ messages?: string[] | null | undefined;
2624
+ }> & {
2625
+ _id?: unknown;
2626
+ triggers?: string[] | null | undefined;
2627
+ detectionMethods?: number[] | null | undefined;
2628
+ actions?: number[] | null | undefined;
2629
+ messages?: string[] | null | undefined;
2630
+ }> | null | undefined;
2631
+ memberJoinTriggers?: import("mongoose").Types.DocumentArray<{
2632
+ _id?: unknown;
2633
+ triggers?: string[] | null | undefined;
2634
+ detectionMethods?: number[] | null | undefined;
2635
+ actions?: number[] | null | undefined;
2636
+ messages?: string[] | null | undefined;
2637
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2638
+ _id?: unknown;
2639
+ triggers?: string[] | null | undefined;
2640
+ detectionMethods?: number[] | null | undefined;
2641
+ actions?: number[] | null | undefined;
2642
+ messages?: string[] | null | undefined;
2643
+ }> & {
2644
+ _id?: unknown;
2645
+ triggers?: string[] | null | undefined;
2646
+ detectionMethods?: number[] | null | undefined;
2647
+ actions?: number[] | null | undefined;
2648
+ messages?: string[] | null | undefined;
2649
+ }> | null | undefined;
2650
+ changeCosmeticTriggers?: import("mongoose").Types.DocumentArray<{
2651
+ _id?: unknown;
2652
+ triggers?: string[] | null | undefined;
2653
+ detectionMethods?: number[] | null | undefined;
2654
+ actions?: number[] | null | undefined;
2655
+ messages?: string[] | null | undefined;
2656
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2657
+ _id?: unknown;
2658
+ triggers?: string[] | null | undefined;
2659
+ detectionMethods?: number[] | null | undefined;
2660
+ actions?: number[] | null | undefined;
2661
+ messages?: string[] | null | undefined;
2662
+ }> & {
2663
+ _id?: unknown;
2664
+ triggers?: string[] | null | undefined;
2665
+ detectionMethods?: number[] | null | undefined;
2666
+ actions?: number[] | null | undefined;
2667
+ messages?: string[] | null | undefined;
2668
+ }> | null | undefined;
2669
+ onlyOwnerCommands?: string[] | null | undefined;
2670
+ onlyAdminCommands?: string[] | null | undefined;
2671
+ onlyWhitelistUsersCommands?: string[] | null | undefined;
2672
+ onlyFriendsCommands?: string[] | null | undefined;
2673
+ onlyPartyMembersCommands?: string[] | null | undefined;
2674
+ onlyWhisperCommands?: string[] | null | undefined;
2675
+ startOutfit?: import("mongoose").Types.DocumentArray<{
2676
+ variants: number[];
2677
+ id?: string | null | undefined;
2678
+ _id?: unknown;
2679
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2680
+ variants: number[];
2681
+ id?: string | null | undefined;
2682
+ _id?: unknown;
2683
+ }> & {
2684
+ variants: number[];
2685
+ id?: string | null | undefined;
2686
+ _id?: unknown;
2687
+ }> | null | undefined;
2688
+ startBackpack?: import("mongoose").Types.DocumentArray<{
2689
+ variants: number[];
2690
+ id?: string | null | undefined;
2691
+ _id?: unknown;
2692
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2693
+ variants: number[];
2694
+ id?: string | null | undefined;
2695
+ _id?: unknown;
2696
+ }> & {
2697
+ variants: number[];
2698
+ id?: string | null | undefined;
2699
+ _id?: unknown;
2700
+ }> | null | undefined;
2701
+ startPickaxe?: import("mongoose").Types.DocumentArray<{
2702
+ variants: number[];
2703
+ id?: string | null | undefined;
2704
+ _id?: unknown;
2705
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2706
+ variants: number[];
2707
+ id?: string | null | undefined;
2708
+ _id?: unknown;
2709
+ }> & {
2710
+ variants: number[];
2711
+ id?: string | null | undefined;
2712
+ _id?: unknown;
2713
+ }> | null | undefined;
2714
+ startShoes?: import("mongoose").Types.DocumentArray<{
2715
+ variants: number[];
2716
+ id?: string | null | undefined;
2717
+ _id?: unknown;
2718
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2719
+ variants: number[];
2720
+ id?: string | null | undefined;
2721
+ _id?: unknown;
2722
+ }> & {
2723
+ variants: number[];
2724
+ id?: string | null | undefined;
2725
+ _id?: unknown;
2726
+ }> | null | undefined;
2727
+ startBanner?: import("mongoose").Types.DocumentArray<{
2728
+ id?: string | null | undefined;
2729
+ _id?: unknown;
2730
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2731
+ id?: string | null | undefined;
2732
+ _id?: unknown;
2733
+ }> & {
2734
+ id?: string | null | undefined;
2735
+ _id?: unknown;
2736
+ }> | null | undefined;
2737
+ startBannerColor?: import("mongoose").Types.DocumentArray<{
2738
+ id?: string | null | undefined;
2739
+ _id?: unknown;
2740
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2741
+ id?: string | null | undefined;
2742
+ _id?: unknown;
2743
+ }> & {
2744
+ id?: string | null | undefined;
2745
+ _id?: unknown;
2746
+ }> | null | undefined;
2747
+ joinOutfit?: import("mongoose").Types.DocumentArray<{
2748
+ variants: number[];
2749
+ id?: string | null | undefined;
2750
+ _id?: unknown;
2751
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2752
+ variants: number[];
2753
+ id?: string | null | undefined;
2754
+ _id?: unknown;
2755
+ }> & {
2756
+ variants: number[];
2757
+ id?: string | null | undefined;
2758
+ _id?: unknown;
2759
+ }> | null | undefined;
2760
+ joinBackpack?: import("mongoose").Types.DocumentArray<{
2761
+ variants: number[];
2762
+ id?: string | null | undefined;
2763
+ _id?: unknown;
2764
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2765
+ variants: number[];
2766
+ id?: string | null | undefined;
2767
+ _id?: unknown;
2768
+ }> & {
2769
+ variants: number[];
2770
+ id?: string | null | undefined;
2771
+ _id?: unknown;
2772
+ }> | null | undefined;
2773
+ joinPickaxe?: import("mongoose").Types.DocumentArray<{
2774
+ variants: number[];
2775
+ id?: string | null | undefined;
2776
+ _id?: unknown;
2777
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2778
+ variants: number[];
2779
+ id?: string | null | undefined;
2780
+ _id?: unknown;
2781
+ }> & {
2782
+ variants: number[];
2783
+ id?: string | null | undefined;
2784
+ _id?: unknown;
2785
+ }> | null | undefined;
2786
+ joinEmote?: import("mongoose").Types.DocumentArray<{
2787
+ id?: string | null | undefined;
2788
+ _id?: unknown;
2789
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2790
+ id?: string | null | undefined;
2791
+ _id?: unknown;
2792
+ }> & {
2793
+ id?: string | null | undefined;
2794
+ _id?: unknown;
2795
+ }> | null | undefined;
2796
+ joinShoes?: import("mongoose").Types.DocumentArray<{
2797
+ variants: number[];
2798
+ id?: string | null | undefined;
2799
+ _id?: unknown;
2800
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2801
+ variants: number[];
2802
+ id?: string | null | undefined;
2803
+ _id?: unknown;
2804
+ }> & {
2805
+ variants: number[];
2806
+ id?: string | null | undefined;
2807
+ _id?: unknown;
2808
+ }> | null | undefined;
2809
+ joinBanner?: import("mongoose").Types.DocumentArray<{
2810
+ id?: string | null | undefined;
2811
+ _id?: unknown;
2812
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2813
+ id?: string | null | undefined;
2814
+ _id?: unknown;
2815
+ }> & {
2816
+ id?: string | null | undefined;
2817
+ _id?: unknown;
2818
+ }> | null | undefined;
2819
+ joinBannerColor?: import("mongoose").Types.DocumentArray<{
2820
+ id?: string | null | undefined;
2821
+ _id?: unknown;
2822
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2823
+ id?: string | null | undefined;
2824
+ _id?: unknown;
2825
+ }> & {
2826
+ id?: string | null | undefined;
2827
+ _id?: unknown;
2828
+ }> | null | undefined;
2829
+ memberJoinOutfit?: import("mongoose").Types.DocumentArray<{
2830
+ variants: number[];
2831
+ id?: string | null | undefined;
2832
+ _id?: unknown;
2833
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2834
+ variants: number[];
2835
+ id?: string | null | undefined;
2836
+ _id?: unknown;
2837
+ }> & {
2838
+ variants: number[];
2839
+ id?: string | null | undefined;
2840
+ _id?: unknown;
2841
+ }> | null | undefined;
2842
+ memberJoinBackpack?: import("mongoose").Types.DocumentArray<{
2843
+ variants: number[];
2844
+ id?: string | null | undefined;
2845
+ _id?: unknown;
2846
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2847
+ variants: number[];
2848
+ id?: string | null | undefined;
2849
+ _id?: unknown;
2850
+ }> & {
2851
+ variants: number[];
2852
+ id?: string | null | undefined;
2853
+ _id?: unknown;
2854
+ }> | null | undefined;
2855
+ memberJoinPickaxe?: import("mongoose").Types.DocumentArray<{
2856
+ variants: number[];
2857
+ id?: string | null | undefined;
2858
+ _id?: unknown;
2859
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2860
+ variants: number[];
2861
+ id?: string | null | undefined;
2862
+ _id?: unknown;
2863
+ }> & {
2864
+ variants: number[];
2865
+ id?: string | null | undefined;
2866
+ _id?: unknown;
2867
+ }> | null | undefined;
2868
+ memberJoinEmote?: import("mongoose").Types.DocumentArray<{
2869
+ id?: string | null | undefined;
2870
+ _id?: unknown;
2871
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2872
+ id?: string | null | undefined;
2873
+ _id?: unknown;
2874
+ }> & {
2875
+ id?: string | null | undefined;
2876
+ _id?: unknown;
2877
+ }> | null | undefined;
2878
+ memberJoinShoes?: import("mongoose").Types.DocumentArray<{
2879
+ variants: number[];
2880
+ id?: string | null | undefined;
2881
+ _id?: unknown;
2882
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2883
+ variants: number[];
2884
+ id?: string | null | undefined;
2885
+ _id?: unknown;
2886
+ }> & {
2887
+ variants: number[];
2888
+ id?: string | null | undefined;
2889
+ _id?: unknown;
2890
+ }> | null | undefined;
2891
+ memberJoinBanner?: import("mongoose").Types.DocumentArray<{
2892
+ id?: string | null | undefined;
2893
+ _id?: unknown;
2894
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2895
+ id?: string | null | undefined;
2896
+ _id?: unknown;
2897
+ }> & {
2898
+ id?: string | null | undefined;
2899
+ _id?: unknown;
2900
+ }> | null | undefined;
2901
+ memberJoinBannerColor?: import("mongoose").Types.DocumentArray<{
2902
+ id?: string | null | undefined;
2903
+ _id?: unknown;
2904
+ }, import("mongoose").Types.Subdocument<unknown, any, {
2905
+ id?: string | null | undefined;
2906
+ _id?: unknown;
2907
+ }> & {
2908
+ id?: string | null | undefined;
2909
+ _id?: unknown;
2910
+ }> | null | undefined;
2911
+ } | null | undefined;
2912
+ }> & {
2913
+ _id: import("mongoose").Types.ObjectId;
2914
+ } & {
2915
+ __v: number;
2916
+ }>>;
2917
+ export declare const UserModel: import("mongoose").Model<{
2918
+ email: string;
2919
+ token: string;
2920
+ username: string;
2921
+ password: string;
2922
+ apiToken: string;
2923
+ verified?: boolean | null | undefined;
2924
+ connections?: {
2925
+ discord?: {
2926
+ id?: string | null | undefined;
2927
+ username?: string | null | undefined;
2928
+ verified?: boolean | null | undefined;
2929
+ } | null | undefined;
2930
+ epic?: {
2931
+ id?: string | null | undefined;
2932
+ username?: string | null | undefined;
2933
+ verified?: boolean | null | undefined;
2934
+ } | null | undefined;
2935
+ } | null | undefined;
2936
+ }, {}, {}, {}, import("mongoose").Document<unknown, {}, {
2937
+ email: string;
2938
+ token: string;
2939
+ username: string;
2940
+ password: string;
2941
+ apiToken: string;
2942
+ verified?: boolean | null | undefined;
2943
+ connections?: {
2944
+ discord?: {
2945
+ id?: string | null | undefined;
2946
+ username?: string | null | undefined;
2947
+ verified?: boolean | null | undefined;
2948
+ } | null | undefined;
2949
+ epic?: {
2950
+ id?: string | null | undefined;
2951
+ username?: string | null | undefined;
2952
+ verified?: boolean | null | undefined;
2953
+ } | null | undefined;
2954
+ } | null | undefined;
2955
+ }> & {
2956
+ email: string;
2957
+ token: string;
2958
+ username: string;
2959
+ password: string;
2960
+ apiToken: string;
2961
+ verified?: boolean | null | undefined;
2962
+ connections?: {
2963
+ discord?: {
2964
+ id?: string | null | undefined;
2965
+ username?: string | null | undefined;
2966
+ verified?: boolean | null | undefined;
2967
+ } | null | undefined;
2968
+ epic?: {
2969
+ id?: string | null | undefined;
2970
+ username?: string | null | undefined;
2971
+ verified?: boolean | null | undefined;
2972
+ } | null | undefined;
2973
+ } | null | undefined;
2974
+ } & {
2975
+ _id: import("mongoose").Types.ObjectId;
2976
+ } & {
2977
+ __v: number;
2978
+ }, Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {
2979
+ verifyPassword: (this: import("mongoose").Model<import("mongoose").FlatRecord<{
2980
+ email: string;
2981
+ token: string;
2982
+ username: string;
2983
+ password: string;
2984
+ apiToken: string;
2985
+ verified?: boolean | null | undefined;
2986
+ connections?: {
2987
+ discord?: {
2988
+ id?: string | null | undefined;
2989
+ username?: string | null | undefined;
2990
+ verified?: boolean | null | undefined;
2991
+ } | null | undefined;
2992
+ epic?: {
2993
+ id?: string | null | undefined;
2994
+ username?: string | null | undefined;
2995
+ verified?: boolean | null | undefined;
2996
+ } | null | undefined;
2997
+ } | null | undefined;
2998
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
2999
+ email: string;
3000
+ token: string;
3001
+ username: string;
3002
+ password: string;
3003
+ apiToken: string;
3004
+ verified?: boolean | null | undefined;
3005
+ connections?: {
3006
+ discord?: {
3007
+ id?: string | null | undefined;
3008
+ username?: string | null | undefined;
3009
+ verified?: boolean | null | undefined;
3010
+ } | null | undefined;
3011
+ epic?: {
3012
+ id?: string | null | undefined;
3013
+ username?: string | null | undefined;
3014
+ verified?: boolean | null | undefined;
3015
+ } | null | undefined;
3016
+ } | null | undefined;
3017
+ }>> & import("mongoose").FlatRecord<{
3018
+ email: string;
3019
+ token: string;
3020
+ username: string;
3021
+ password: string;
3022
+ apiToken: string;
3023
+ verified?: boolean | null | undefined;
3024
+ connections?: {
3025
+ discord?: {
3026
+ id?: string | null | undefined;
3027
+ username?: string | null | undefined;
3028
+ verified?: boolean | null | undefined;
3029
+ } | null | undefined;
3030
+ epic?: {
3031
+ id?: string | null | undefined;
3032
+ username?: string | null | undefined;
3033
+ verified?: boolean | null | undefined;
3034
+ } | null | undefined;
3035
+ } | null | undefined;
3036
+ }> & {
3037
+ _id: import("mongoose").Types.ObjectId;
3038
+ } & {
3039
+ __v: number;
3040
+ }, any>, password: string, hash: string) => Promise<boolean>;
3041
+ findByToken: (this: import("mongoose").Model<import("mongoose").FlatRecord<{
3042
+ email: string;
3043
+ token: string;
3044
+ username: string;
3045
+ password: string;
3046
+ apiToken: string;
3047
+ verified?: boolean | null | undefined;
3048
+ connections?: {
3049
+ discord?: {
3050
+ id?: string | null | undefined;
3051
+ username?: string | null | undefined;
3052
+ verified?: boolean | null | undefined;
3053
+ } | null | undefined;
3054
+ epic?: {
3055
+ id?: string | null | undefined;
3056
+ username?: string | null | undefined;
3057
+ verified?: boolean | null | undefined;
3058
+ } | null | undefined;
3059
+ } | null | undefined;
3060
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3061
+ email: string;
3062
+ token: string;
3063
+ username: string;
3064
+ password: string;
3065
+ apiToken: string;
3066
+ verified?: boolean | null | undefined;
3067
+ connections?: {
3068
+ discord?: {
3069
+ id?: string | null | undefined;
3070
+ username?: string | null | undefined;
3071
+ verified?: boolean | null | undefined;
3072
+ } | null | undefined;
3073
+ epic?: {
3074
+ id?: string | null | undefined;
3075
+ username?: string | null | undefined;
3076
+ verified?: boolean | null | undefined;
3077
+ } | null | undefined;
3078
+ } | null | undefined;
3079
+ }>> & import("mongoose").FlatRecord<{
3080
+ email: string;
3081
+ token: string;
3082
+ username: string;
3083
+ password: string;
3084
+ apiToken: string;
3085
+ verified?: boolean | null | undefined;
3086
+ connections?: {
3087
+ discord?: {
3088
+ id?: string | null | undefined;
3089
+ username?: string | null | undefined;
3090
+ verified?: boolean | null | undefined;
3091
+ } | null | undefined;
3092
+ epic?: {
3093
+ id?: string | null | undefined;
3094
+ username?: string | null | undefined;
3095
+ verified?: boolean | null | undefined;
3096
+ } | null | undefined;
3097
+ } | null | undefined;
3098
+ }> & {
3099
+ _id: import("mongoose").Types.ObjectId;
3100
+ } & {
3101
+ __v: number;
3102
+ }, any>, id: string, auth: string) => Promise<(import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3103
+ email: string;
3104
+ token: string;
3105
+ username: string;
3106
+ password: string;
3107
+ apiToken: string;
3108
+ verified?: boolean | null | undefined;
3109
+ connections?: {
3110
+ discord?: {
3111
+ id?: string | null | undefined;
3112
+ username?: string | null | undefined;
3113
+ verified?: boolean | null | undefined;
3114
+ } | null | undefined;
3115
+ epic?: {
3116
+ id?: string | null | undefined;
3117
+ username?: string | null | undefined;
3118
+ verified?: boolean | null | undefined;
3119
+ } | null | undefined;
3120
+ } | null | undefined;
3121
+ }>> & import("mongoose").FlatRecord<{
3122
+ email: string;
3123
+ token: string;
3124
+ username: string;
3125
+ password: string;
3126
+ apiToken: string;
3127
+ verified?: boolean | null | undefined;
3128
+ connections?: {
3129
+ discord?: {
3130
+ id?: string | null | undefined;
3131
+ username?: string | null | undefined;
3132
+ verified?: boolean | null | undefined;
3133
+ } | null | undefined;
3134
+ epic?: {
3135
+ id?: string | null | undefined;
3136
+ username?: string | null | undefined;
3137
+ verified?: boolean | null | undefined;
3138
+ } | null | undefined;
3139
+ } | null | undefined;
3140
+ }> & {
3141
+ _id: import("mongoose").Types.ObjectId;
3142
+ } & {
3143
+ __v: number;
3144
+ }) | null>;
3145
+ findByAPIToken: (this: import("mongoose").Model<import("mongoose").FlatRecord<{
3146
+ email: string;
3147
+ token: string;
3148
+ username: string;
3149
+ password: string;
3150
+ apiToken: string;
3151
+ verified?: boolean | null | undefined;
3152
+ connections?: {
3153
+ discord?: {
3154
+ id?: string | null | undefined;
3155
+ username?: string | null | undefined;
3156
+ verified?: boolean | null | undefined;
3157
+ } | null | undefined;
3158
+ epic?: {
3159
+ id?: string | null | undefined;
3160
+ username?: string | null | undefined;
3161
+ verified?: boolean | null | undefined;
3162
+ } | null | undefined;
3163
+ } | null | undefined;
3164
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3165
+ email: string;
3166
+ token: string;
3167
+ username: string;
3168
+ password: string;
3169
+ apiToken: string;
3170
+ verified?: boolean | null | undefined;
3171
+ connections?: {
3172
+ discord?: {
3173
+ id?: string | null | undefined;
3174
+ username?: string | null | undefined;
3175
+ verified?: boolean | null | undefined;
3176
+ } | null | undefined;
3177
+ epic?: {
3178
+ id?: string | null | undefined;
3179
+ username?: string | null | undefined;
3180
+ verified?: boolean | null | undefined;
3181
+ } | null | undefined;
3182
+ } | null | undefined;
3183
+ }>> & import("mongoose").FlatRecord<{
3184
+ email: string;
3185
+ token: string;
3186
+ username: string;
3187
+ password: string;
3188
+ apiToken: string;
3189
+ verified?: boolean | null | undefined;
3190
+ connections?: {
3191
+ discord?: {
3192
+ id?: string | null | undefined;
3193
+ username?: string | null | undefined;
3194
+ verified?: boolean | null | undefined;
3195
+ } | null | undefined;
3196
+ epic?: {
3197
+ id?: string | null | undefined;
3198
+ username?: string | null | undefined;
3199
+ verified?: boolean | null | undefined;
3200
+ } | null | undefined;
3201
+ } | null | undefined;
3202
+ }> & {
3203
+ _id: import("mongoose").Types.ObjectId;
3204
+ } & {
3205
+ __v: number;
3206
+ }, any>, id: string, auth: string) => Promise<(import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3207
+ email: string;
3208
+ token: string;
3209
+ username: string;
3210
+ password: string;
3211
+ apiToken: string;
3212
+ verified?: boolean | null | undefined;
3213
+ connections?: {
3214
+ discord?: {
3215
+ id?: string | null | undefined;
3216
+ username?: string | null | undefined;
3217
+ verified?: boolean | null | undefined;
3218
+ } | null | undefined;
3219
+ epic?: {
3220
+ id?: string | null | undefined;
3221
+ username?: string | null | undefined;
3222
+ verified?: boolean | null | undefined;
3223
+ } | null | undefined;
3224
+ } | null | undefined;
3225
+ }>> & import("mongoose").FlatRecord<{
3226
+ email: string;
3227
+ token: string;
3228
+ username: string;
3229
+ password: string;
3230
+ apiToken: string;
3231
+ verified?: boolean | null | undefined;
3232
+ connections?: {
3233
+ discord?: {
3234
+ id?: string | null | undefined;
3235
+ username?: string | null | undefined;
3236
+ verified?: boolean | null | undefined;
3237
+ } | null | undefined;
3238
+ epic?: {
3239
+ id?: string | null | undefined;
3240
+ username?: string | null | undefined;
3241
+ verified?: boolean | null | undefined;
3242
+ } | null | undefined;
3243
+ } | null | undefined;
3244
+ }> & {
3245
+ _id: import("mongoose").Types.ObjectId;
3246
+ } & {
3247
+ __v: number;
3248
+ }) | null>;
3249
+ }, {
3250
+ statics: {
3251
+ verifyPassword(this: import("mongoose").Model<import("mongoose").FlatRecord<{
3252
+ email: string;
3253
+ token: string;
3254
+ username: string;
3255
+ password: string;
3256
+ apiToken: string;
3257
+ verified?: boolean | null | undefined;
3258
+ connections?: {
3259
+ discord?: {
3260
+ id?: string | null | undefined;
3261
+ username?: string | null | undefined;
3262
+ verified?: boolean | null | undefined;
3263
+ } | null | undefined;
3264
+ epic?: {
3265
+ id?: string | null | undefined;
3266
+ username?: string | null | undefined;
3267
+ verified?: boolean | null | undefined;
3268
+ } | null | undefined;
3269
+ } | null | undefined;
3270
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3271
+ email: string;
3272
+ token: string;
3273
+ username: string;
3274
+ password: string;
3275
+ apiToken: string;
3276
+ verified?: boolean | null | undefined;
3277
+ connections?: {
3278
+ discord?: {
3279
+ id?: string | null | undefined;
3280
+ username?: string | null | undefined;
3281
+ verified?: boolean | null | undefined;
3282
+ } | null | undefined;
3283
+ epic?: {
3284
+ id?: string | null | undefined;
3285
+ username?: string | null | undefined;
3286
+ verified?: boolean | null | undefined;
3287
+ } | null | undefined;
3288
+ } | null | undefined;
3289
+ }>> & import("mongoose").FlatRecord<{
3290
+ email: string;
3291
+ token: string;
3292
+ username: string;
3293
+ password: string;
3294
+ apiToken: string;
3295
+ verified?: boolean | null | undefined;
3296
+ connections?: {
3297
+ discord?: {
3298
+ id?: string | null | undefined;
3299
+ username?: string | null | undefined;
3300
+ verified?: boolean | null | undefined;
3301
+ } | null | undefined;
3302
+ epic?: {
3303
+ id?: string | null | undefined;
3304
+ username?: string | null | undefined;
3305
+ verified?: boolean | null | undefined;
3306
+ } | null | undefined;
3307
+ } | null | undefined;
3308
+ }> & {
3309
+ _id: import("mongoose").Types.ObjectId;
3310
+ } & {
3311
+ __v: number;
3312
+ }, any>, password: string, hash: string): Promise<boolean>;
3313
+ findByToken(this: import("mongoose").Model<import("mongoose").FlatRecord<{
3314
+ email: string;
3315
+ token: string;
3316
+ username: string;
3317
+ password: string;
3318
+ apiToken: string;
3319
+ verified?: boolean | null | undefined;
3320
+ connections?: {
3321
+ discord?: {
3322
+ id?: string | null | undefined;
3323
+ username?: string | null | undefined;
3324
+ verified?: boolean | null | undefined;
3325
+ } | null | undefined;
3326
+ epic?: {
3327
+ id?: string | null | undefined;
3328
+ username?: string | null | undefined;
3329
+ verified?: boolean | null | undefined;
3330
+ } | null | undefined;
3331
+ } | null | undefined;
3332
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3333
+ email: string;
3334
+ token: string;
3335
+ username: string;
3336
+ password: string;
3337
+ apiToken: string;
3338
+ verified?: boolean | null | undefined;
3339
+ connections?: {
3340
+ discord?: {
3341
+ id?: string | null | undefined;
3342
+ username?: string | null | undefined;
3343
+ verified?: boolean | null | undefined;
3344
+ } | null | undefined;
3345
+ epic?: {
3346
+ id?: string | null | undefined;
3347
+ username?: string | null | undefined;
3348
+ verified?: boolean | null | undefined;
3349
+ } | null | undefined;
3350
+ } | null | undefined;
3351
+ }>> & import("mongoose").FlatRecord<{
3352
+ email: string;
3353
+ token: string;
3354
+ username: string;
3355
+ password: string;
3356
+ apiToken: string;
3357
+ verified?: boolean | null | undefined;
3358
+ connections?: {
3359
+ discord?: {
3360
+ id?: string | null | undefined;
3361
+ username?: string | null | undefined;
3362
+ verified?: boolean | null | undefined;
3363
+ } | null | undefined;
3364
+ epic?: {
3365
+ id?: string | null | undefined;
3366
+ username?: string | null | undefined;
3367
+ verified?: boolean | null | undefined;
3368
+ } | null | undefined;
3369
+ } | null | undefined;
3370
+ }> & {
3371
+ _id: import("mongoose").Types.ObjectId;
3372
+ } & {
3373
+ __v: number;
3374
+ }, any>, id: string, auth: string): Promise<(import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3375
+ email: string;
3376
+ token: string;
3377
+ username: string;
3378
+ password: string;
3379
+ apiToken: string;
3380
+ verified?: boolean | null | undefined;
3381
+ connections?: {
3382
+ discord?: {
3383
+ id?: string | null | undefined;
3384
+ username?: string | null | undefined;
3385
+ verified?: boolean | null | undefined;
3386
+ } | null | undefined;
3387
+ epic?: {
3388
+ id?: string | null | undefined;
3389
+ username?: string | null | undefined;
3390
+ verified?: boolean | null | undefined;
3391
+ } | null | undefined;
3392
+ } | null | undefined;
3393
+ }>> & import("mongoose").FlatRecord<{
3394
+ email: string;
3395
+ token: string;
3396
+ username: string;
3397
+ password: string;
3398
+ apiToken: string;
3399
+ verified?: boolean | null | undefined;
3400
+ connections?: {
3401
+ discord?: {
3402
+ id?: string | null | undefined;
3403
+ username?: string | null | undefined;
3404
+ verified?: boolean | null | undefined;
3405
+ } | null | undefined;
3406
+ epic?: {
3407
+ id?: string | null | undefined;
3408
+ username?: string | null | undefined;
3409
+ verified?: boolean | null | undefined;
3410
+ } | null | undefined;
3411
+ } | null | undefined;
3412
+ }> & {
3413
+ _id: import("mongoose").Types.ObjectId;
3414
+ } & {
3415
+ __v: number;
3416
+ }) | null>;
3417
+ findByAPIToken(this: import("mongoose").Model<import("mongoose").FlatRecord<{
3418
+ email: string;
3419
+ token: string;
3420
+ username: string;
3421
+ password: string;
3422
+ apiToken: string;
3423
+ verified?: boolean | null | undefined;
3424
+ connections?: {
3425
+ discord?: {
3426
+ id?: string | null | undefined;
3427
+ username?: string | null | undefined;
3428
+ verified?: boolean | null | undefined;
3429
+ } | null | undefined;
3430
+ epic?: {
3431
+ id?: string | null | undefined;
3432
+ username?: string | null | undefined;
3433
+ verified?: boolean | null | undefined;
3434
+ } | null | undefined;
3435
+ } | null | undefined;
3436
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3437
+ email: string;
3438
+ token: string;
3439
+ username: string;
3440
+ password: string;
3441
+ apiToken: string;
3442
+ verified?: boolean | null | undefined;
3443
+ connections?: {
3444
+ discord?: {
3445
+ id?: string | null | undefined;
3446
+ username?: string | null | undefined;
3447
+ verified?: boolean | null | undefined;
3448
+ } | null | undefined;
3449
+ epic?: {
3450
+ id?: string | null | undefined;
3451
+ username?: string | null | undefined;
3452
+ verified?: boolean | null | undefined;
3453
+ } | null | undefined;
3454
+ } | null | undefined;
3455
+ }>> & import("mongoose").FlatRecord<{
3456
+ email: string;
3457
+ token: string;
3458
+ username: string;
3459
+ password: string;
3460
+ apiToken: string;
3461
+ verified?: boolean | null | undefined;
3462
+ connections?: {
3463
+ discord?: {
3464
+ id?: string | null | undefined;
3465
+ username?: string | null | undefined;
3466
+ verified?: boolean | null | undefined;
3467
+ } | null | undefined;
3468
+ epic?: {
3469
+ id?: string | null | undefined;
3470
+ username?: string | null | undefined;
3471
+ verified?: boolean | null | undefined;
3472
+ } | null | undefined;
3473
+ } | null | undefined;
3474
+ }> & {
3475
+ _id: import("mongoose").Types.ObjectId;
3476
+ } & {
3477
+ __v: number;
3478
+ }, any>, id: string, auth: string): Promise<(import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3479
+ email: string;
3480
+ token: string;
3481
+ username: string;
3482
+ password: string;
3483
+ apiToken: string;
3484
+ verified?: boolean | null | undefined;
3485
+ connections?: {
3486
+ discord?: {
3487
+ id?: string | null | undefined;
3488
+ username?: string | null | undefined;
3489
+ verified?: boolean | null | undefined;
3490
+ } | null | undefined;
3491
+ epic?: {
3492
+ id?: string | null | undefined;
3493
+ username?: string | null | undefined;
3494
+ verified?: boolean | null | undefined;
3495
+ } | null | undefined;
3496
+ } | null | undefined;
3497
+ }>> & import("mongoose").FlatRecord<{
3498
+ email: string;
3499
+ token: string;
3500
+ username: string;
3501
+ password: string;
3502
+ apiToken: string;
3503
+ verified?: boolean | null | undefined;
3504
+ connections?: {
3505
+ discord?: {
3506
+ id?: string | null | undefined;
3507
+ username?: string | null | undefined;
3508
+ verified?: boolean | null | undefined;
3509
+ } | null | undefined;
3510
+ epic?: {
3511
+ id?: string | null | undefined;
3512
+ username?: string | null | undefined;
3513
+ verified?: boolean | null | undefined;
3514
+ } | null | undefined;
3515
+ } | null | undefined;
3516
+ }> & {
3517
+ _id: import("mongoose").Types.ObjectId;
3518
+ } & {
3519
+ __v: number;
3520
+ }) | null>;
3521
+ };
3522
+ }, {
3523
+ email: string;
3524
+ token: string;
3525
+ username: string;
3526
+ password: string;
3527
+ apiToken: string;
3528
+ verified?: boolean | null | undefined;
3529
+ connections?: {
3530
+ discord?: {
3531
+ id?: string | null | undefined;
3532
+ username?: string | null | undefined;
3533
+ verified?: boolean | null | undefined;
3534
+ } | null | undefined;
3535
+ epic?: {
3536
+ id?: string | null | undefined;
3537
+ username?: string | null | undefined;
3538
+ verified?: boolean | null | undefined;
3539
+ } | null | undefined;
3540
+ } | null | undefined;
3541
+ }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3542
+ email: string;
3543
+ token: string;
3544
+ username: string;
3545
+ password: string;
3546
+ apiToken: string;
3547
+ verified?: boolean | null | undefined;
3548
+ connections?: {
3549
+ discord?: {
3550
+ id?: string | null | undefined;
3551
+ username?: string | null | undefined;
3552
+ verified?: boolean | null | undefined;
3553
+ } | null | undefined;
3554
+ epic?: {
3555
+ id?: string | null | undefined;
3556
+ username?: string | null | undefined;
3557
+ verified?: boolean | null | undefined;
3558
+ } | null | undefined;
3559
+ } | null | undefined;
3560
+ }>> & import("mongoose").FlatRecord<{
3561
+ email: string;
3562
+ token: string;
3563
+ username: string;
3564
+ password: string;
3565
+ apiToken: string;
3566
+ verified?: boolean | null | undefined;
3567
+ connections?: {
3568
+ discord?: {
3569
+ id?: string | null | undefined;
3570
+ username?: string | null | undefined;
3571
+ verified?: boolean | null | undefined;
3572
+ } | null | undefined;
3573
+ epic?: {
3574
+ id?: string | null | undefined;
3575
+ username?: string | null | undefined;
3576
+ verified?: boolean | null | undefined;
3577
+ } | null | undefined;
3578
+ } | null | undefined;
3579
+ }> & {
3580
+ _id: import("mongoose").Types.ObjectId;
3581
+ } & {
3582
+ __v: number;
3583
+ }>> & {
3584
+ verifyPassword: (this: import("mongoose").Model<import("mongoose").FlatRecord<{
3585
+ email: string;
3586
+ token: string;
3587
+ username: string;
3588
+ password: string;
3589
+ apiToken: string;
3590
+ verified?: boolean | null | undefined;
3591
+ connections?: {
3592
+ discord?: {
3593
+ id?: string | null | undefined;
3594
+ username?: string | null | undefined;
3595
+ verified?: boolean | null | undefined;
3596
+ } | null | undefined;
3597
+ epic?: {
3598
+ id?: string | null | undefined;
3599
+ username?: string | null | undefined;
3600
+ verified?: boolean | null | undefined;
3601
+ } | null | undefined;
3602
+ } | null | undefined;
3603
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3604
+ email: string;
3605
+ token: string;
3606
+ username: string;
3607
+ password: string;
3608
+ apiToken: string;
3609
+ verified?: boolean | null | undefined;
3610
+ connections?: {
3611
+ discord?: {
3612
+ id?: string | null | undefined;
3613
+ username?: string | null | undefined;
3614
+ verified?: boolean | null | undefined;
3615
+ } | null | undefined;
3616
+ epic?: {
3617
+ id?: string | null | undefined;
3618
+ username?: string | null | undefined;
3619
+ verified?: boolean | null | undefined;
3620
+ } | null | undefined;
3621
+ } | null | undefined;
3622
+ }>> & import("mongoose").FlatRecord<{
3623
+ email: string;
3624
+ token: string;
3625
+ username: string;
3626
+ password: string;
3627
+ apiToken: string;
3628
+ verified?: boolean | null | undefined;
3629
+ connections?: {
3630
+ discord?: {
3631
+ id?: string | null | undefined;
3632
+ username?: string | null | undefined;
3633
+ verified?: boolean | null | undefined;
3634
+ } | null | undefined;
3635
+ epic?: {
3636
+ id?: string | null | undefined;
3637
+ username?: string | null | undefined;
3638
+ verified?: boolean | null | undefined;
3639
+ } | null | undefined;
3640
+ } | null | undefined;
3641
+ }> & {
3642
+ _id: import("mongoose").Types.ObjectId;
3643
+ } & {
3644
+ __v: number;
3645
+ }, any>, password: string, hash: string) => Promise<boolean>;
3646
+ findByToken: (this: import("mongoose").Model<import("mongoose").FlatRecord<{
3647
+ email: string;
3648
+ token: string;
3649
+ username: string;
3650
+ password: string;
3651
+ apiToken: string;
3652
+ verified?: boolean | null | undefined;
3653
+ connections?: {
3654
+ discord?: {
3655
+ id?: string | null | undefined;
3656
+ username?: string | null | undefined;
3657
+ verified?: boolean | null | undefined;
3658
+ } | null | undefined;
3659
+ epic?: {
3660
+ id?: string | null | undefined;
3661
+ username?: string | null | undefined;
3662
+ verified?: boolean | null | undefined;
3663
+ } | null | undefined;
3664
+ } | null | undefined;
3665
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3666
+ email: string;
3667
+ token: string;
3668
+ username: string;
3669
+ password: string;
3670
+ apiToken: string;
3671
+ verified?: boolean | null | undefined;
3672
+ connections?: {
3673
+ discord?: {
3674
+ id?: string | null | undefined;
3675
+ username?: string | null | undefined;
3676
+ verified?: boolean | null | undefined;
3677
+ } | null | undefined;
3678
+ epic?: {
3679
+ id?: string | null | undefined;
3680
+ username?: string | null | undefined;
3681
+ verified?: boolean | null | undefined;
3682
+ } | null | undefined;
3683
+ } | null | undefined;
3684
+ }>> & import("mongoose").FlatRecord<{
3685
+ email: string;
3686
+ token: string;
3687
+ username: string;
3688
+ password: string;
3689
+ apiToken: string;
3690
+ verified?: boolean | null | undefined;
3691
+ connections?: {
3692
+ discord?: {
3693
+ id?: string | null | undefined;
3694
+ username?: string | null | undefined;
3695
+ verified?: boolean | null | undefined;
3696
+ } | null | undefined;
3697
+ epic?: {
3698
+ id?: string | null | undefined;
3699
+ username?: string | null | undefined;
3700
+ verified?: boolean | null | undefined;
3701
+ } | null | undefined;
3702
+ } | null | undefined;
3703
+ }> & {
3704
+ _id: import("mongoose").Types.ObjectId;
3705
+ } & {
3706
+ __v: number;
3707
+ }, any>, id: string, auth: string) => Promise<(import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3708
+ email: string;
3709
+ token: string;
3710
+ username: string;
3711
+ password: string;
3712
+ apiToken: string;
3713
+ verified?: boolean | null | undefined;
3714
+ connections?: {
3715
+ discord?: {
3716
+ id?: string | null | undefined;
3717
+ username?: string | null | undefined;
3718
+ verified?: boolean | null | undefined;
3719
+ } | null | undefined;
3720
+ epic?: {
3721
+ id?: string | null | undefined;
3722
+ username?: string | null | undefined;
3723
+ verified?: boolean | null | undefined;
3724
+ } | null | undefined;
3725
+ } | null | undefined;
3726
+ }>> & import("mongoose").FlatRecord<{
3727
+ email: string;
3728
+ token: string;
3729
+ username: string;
3730
+ password: string;
3731
+ apiToken: string;
3732
+ verified?: boolean | null | undefined;
3733
+ connections?: {
3734
+ discord?: {
3735
+ id?: string | null | undefined;
3736
+ username?: string | null | undefined;
3737
+ verified?: boolean | null | undefined;
3738
+ } | null | undefined;
3739
+ epic?: {
3740
+ id?: string | null | undefined;
3741
+ username?: string | null | undefined;
3742
+ verified?: boolean | null | undefined;
3743
+ } | null | undefined;
3744
+ } | null | undefined;
3745
+ }> & {
3746
+ _id: import("mongoose").Types.ObjectId;
3747
+ } & {
3748
+ __v: number;
3749
+ }) | null>;
3750
+ findByAPIToken: (this: import("mongoose").Model<import("mongoose").FlatRecord<{
3751
+ email: string;
3752
+ token: string;
3753
+ username: string;
3754
+ password: string;
3755
+ apiToken: string;
3756
+ verified?: boolean | null | undefined;
3757
+ connections?: {
3758
+ discord?: {
3759
+ id?: string | null | undefined;
3760
+ username?: string | null | undefined;
3761
+ verified?: boolean | null | undefined;
3762
+ } | null | undefined;
3763
+ epic?: {
3764
+ id?: string | null | undefined;
3765
+ username?: string | null | undefined;
3766
+ verified?: boolean | null | undefined;
3767
+ } | null | undefined;
3768
+ } | null | undefined;
3769
+ }>, {}, {}, {}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3770
+ email: string;
3771
+ token: string;
3772
+ username: string;
3773
+ password: string;
3774
+ apiToken: string;
3775
+ verified?: boolean | null | undefined;
3776
+ connections?: {
3777
+ discord?: {
3778
+ id?: string | null | undefined;
3779
+ username?: string | null | undefined;
3780
+ verified?: boolean | null | undefined;
3781
+ } | null | undefined;
3782
+ epic?: {
3783
+ id?: string | null | undefined;
3784
+ username?: string | null | undefined;
3785
+ verified?: boolean | null | undefined;
3786
+ } | null | undefined;
3787
+ } | null | undefined;
3788
+ }>> & import("mongoose").FlatRecord<{
3789
+ email: string;
3790
+ token: string;
3791
+ username: string;
3792
+ password: string;
3793
+ apiToken: string;
3794
+ verified?: boolean | null | undefined;
3795
+ connections?: {
3796
+ discord?: {
3797
+ id?: string | null | undefined;
3798
+ username?: string | null | undefined;
3799
+ verified?: boolean | null | undefined;
3800
+ } | null | undefined;
3801
+ epic?: {
3802
+ id?: string | null | undefined;
3803
+ username?: string | null | undefined;
3804
+ verified?: boolean | null | undefined;
3805
+ } | null | undefined;
3806
+ } | null | undefined;
3807
+ }> & {
3808
+ _id: import("mongoose").Types.ObjectId;
3809
+ } & {
3810
+ __v: number;
3811
+ }, any>, id: string, auth: string) => Promise<(import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
3812
+ email: string;
3813
+ token: string;
3814
+ username: string;
3815
+ password: string;
3816
+ apiToken: string;
3817
+ verified?: boolean | null | undefined;
3818
+ connections?: {
3819
+ discord?: {
3820
+ id?: string | null | undefined;
3821
+ username?: string | null | undefined;
3822
+ verified?: boolean | null | undefined;
3823
+ } | null | undefined;
3824
+ epic?: {
3825
+ id?: string | null | undefined;
3826
+ username?: string | null | undefined;
3827
+ verified?: boolean | null | undefined;
3828
+ } | null | undefined;
3829
+ } | null | undefined;
3830
+ }>> & import("mongoose").FlatRecord<{
3831
+ email: string;
3832
+ token: string;
3833
+ username: string;
3834
+ password: string;
3835
+ apiToken: string;
3836
+ verified?: boolean | null | undefined;
3837
+ connections?: {
3838
+ discord?: {
3839
+ id?: string | null | undefined;
3840
+ username?: string | null | undefined;
3841
+ verified?: boolean | null | undefined;
3842
+ } | null | undefined;
3843
+ epic?: {
3844
+ id?: string | null | undefined;
3845
+ username?: string | null | undefined;
3846
+ verified?: boolean | null | undefined;
3847
+ } | null | undefined;
3848
+ } | null | undefined;
3849
+ }> & {
3850
+ _id: import("mongoose").Types.ObjectId;
3851
+ } & {
3852
+ __v: number;
3853
+ }) | null>;
3854
+ };
3855
+ export declare enum DatabaseErrors {
3856
+ InternalError = 1,
3857
+ BadValue = 2,
3858
+ NoSuchKey = 4,
3859
+ KeyNotFound = 211,
3860
+ DuplicateKey = 11000
3861
+ }
3862
+
3863
+ export {};