@fnlb-project/shared 1.5.11 → 1.5.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/index.d.ts +89 -36
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -241,18 +241,36 @@ export interface ICategoryConfig {
|
|
|
241
241
|
replyLangs?: Locales[];
|
|
242
242
|
searchLangs?: Locales[];
|
|
243
243
|
platform?: `${CategoryConfigSupportedPlatforms}`[];
|
|
244
|
-
privacy?:
|
|
244
|
+
privacy?: CategoryConfigPartyPrivacy;
|
|
245
245
|
prefixes?: string[];
|
|
246
|
-
extraOwners?: string[];
|
|
247
|
-
admins?: string[];
|
|
248
|
-
whitelistUsers?: string[];
|
|
249
|
-
blacklistUsers?: string[];
|
|
250
|
-
excludedAutoAddFriends?: string[];
|
|
251
|
-
otherBots?: string[];
|
|
252
246
|
statusText?: string[];
|
|
253
|
-
statusInterval?: number
|
|
247
|
+
statusInterval?: number;
|
|
254
248
|
level?: number[];
|
|
255
249
|
bpLevel?: number[];
|
|
250
|
+
extraOwners?: {
|
|
251
|
+
id?: string;
|
|
252
|
+
name?: string;
|
|
253
|
+
}[];
|
|
254
|
+
admins?: {
|
|
255
|
+
id?: string;
|
|
256
|
+
name?: string;
|
|
257
|
+
}[];
|
|
258
|
+
whitelistUsers?: {
|
|
259
|
+
id?: string;
|
|
260
|
+
name?: string;
|
|
261
|
+
}[];
|
|
262
|
+
blacklistUsers?: {
|
|
263
|
+
id?: string;
|
|
264
|
+
name?: string;
|
|
265
|
+
}[];
|
|
266
|
+
excludedAutoAddFriends?: {
|
|
267
|
+
id?: string;
|
|
268
|
+
name?: string;
|
|
269
|
+
}[];
|
|
270
|
+
otherBots?: {
|
|
271
|
+
id?: string;
|
|
272
|
+
name?: string;
|
|
273
|
+
}[];
|
|
256
274
|
disableMatchmakingChecks?: boolean;
|
|
257
275
|
disableJoinMessages?: boolean;
|
|
258
276
|
disableAutomaticMessages?: boolean;
|
|
@@ -303,34 +321,69 @@ export interface ICategoryConfig {
|
|
|
303
321
|
onlyFriendsCommands?: string[];
|
|
304
322
|
onlyPartyMembersCommands?: string[];
|
|
305
323
|
onlyWhisperCommands?: string[];
|
|
306
|
-
startOutfit?:
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
324
|
+
startOutfit?: {
|
|
325
|
+
id?: string;
|
|
326
|
+
variants?: number[][];
|
|
327
|
+
}[];
|
|
328
|
+
startBackpack?: {
|
|
329
|
+
id?: string;
|
|
330
|
+
variants?: number[][];
|
|
331
|
+
}[];
|
|
332
|
+
startPickaxe?: {
|
|
333
|
+
id?: string;
|
|
334
|
+
variants?: number[][];
|
|
335
|
+
}[];
|
|
336
|
+
startShoes?: {
|
|
337
|
+
id?: string;
|
|
338
|
+
variants?: number[][];
|
|
339
|
+
}[];
|
|
340
|
+
startBanner?: {
|
|
341
|
+
id?: string;
|
|
342
|
+
}[];
|
|
343
|
+
joinOutfit?: {
|
|
344
|
+
id?: string;
|
|
345
|
+
variants?: number[][];
|
|
346
|
+
}[];
|
|
347
|
+
joinBackpack?: {
|
|
348
|
+
id?: string;
|
|
349
|
+
variants?: number[][];
|
|
350
|
+
}[];
|
|
351
|
+
joinPickaxe?: {
|
|
352
|
+
id?: string;
|
|
353
|
+
variants?: number[][];
|
|
354
|
+
}[];
|
|
355
|
+
joinEmote?: {
|
|
356
|
+
id?: string;
|
|
357
|
+
}[];
|
|
358
|
+
joinShoes?: {
|
|
359
|
+
id?: string;
|
|
360
|
+
variants?: number[][];
|
|
361
|
+
}[];
|
|
362
|
+
joinBanner?: {
|
|
363
|
+
id?: string;
|
|
364
|
+
}[];
|
|
365
|
+
memberJoinOutfit?: {
|
|
366
|
+
id?: string;
|
|
367
|
+
variants?: number[][];
|
|
368
|
+
}[];
|
|
369
|
+
memberJoinBackpack?: {
|
|
370
|
+
id?: string;
|
|
371
|
+
variants?: number[][];
|
|
372
|
+
}[];
|
|
373
|
+
memberJoinPickaxe?: {
|
|
374
|
+
id?: string;
|
|
375
|
+
variants?: number[][];
|
|
376
|
+
}[];
|
|
377
|
+
memberJoinEmote?: {
|
|
378
|
+
id?: string;
|
|
379
|
+
}[];
|
|
380
|
+
memberJoinShoes?: {
|
|
381
|
+
id?: string;
|
|
382
|
+
variants?: number[][];
|
|
383
|
+
}[];
|
|
384
|
+
memberJoinBanner?: {
|
|
385
|
+
id?: string;
|
|
386
|
+
}[];
|
|
334
387
|
}
|
|
335
388
|
export interface IDBCategory {
|
|
336
389
|
id: string;
|