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