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