@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.
@@ -241,18 +241,36 @@ export interface ICategoryConfig {
241
241
  replyLangs?: Locales[];
242
242
  searchLangs?: Locales[];
243
243
  platform?: `${CategoryConfigSupportedPlatforms}`[];
244
- privacy?: `${CategoryConfigPartyPrivacy}`;
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?: string[];
307
- startOutfitVariants?: number[][][];
308
- startBackpack?: string[];
309
- startBackpackVariants?: number[][][];
310
- startPickaxe?: string[];
311
- startPickaxeVariants?: number[][][];
312
- startShoes?: string[];
313
- startBanner?: string[];
314
- joinOutfit?: string[];
315
- joinOutfitVariants?: number[][][];
316
- joinBackpack?: string[];
317
- joinBackpackVariants?: number[][][];
318
- joinPickaxe?: string[];
319
- joinPickaxeVariants?: number[][][];
320
- joinEmote?: string[];
321
- joinShoes?: string[];
322
- joinEmoji?: string[];
323
- joinBanner?: string[];
324
- memberJoinOutfit?: string[];
325
- memberJoinOutfitVariants?: number[][][];
326
- memberJoinBackpack?: string[];
327
- memberJoinBackpackVariants?: number[][][];
328
- memberJoinPickaxe?: string[];
329
- memberJoinPickaxeVariants?: number[][][];
330
- memberJoinEmote?: string[];
331
- memberJoinShoes?: string[];
332
- memberJoinEmoji?: string[];
333
- memberJoinBanner?: string[];
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fnlb-project/shared",
3
- "version": "1.5.11",
3
+ "version": "1.5.12",
4
4
  "description": "FNLB Shared Library",
5
5
  "files": ["dist"],
6
6
  "author": "FNLB-Project",