@fnlb-project/shared 1.4.6 → 1.4.8

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.
@@ -206,6 +206,7 @@ export interface IPartyMember {
206
206
  emote?: string;
207
207
  backpack?: string;
208
208
  pickaxe?: string;
209
+ shoes?: string;
209
210
  variants?: ICosmeticVariants;
210
211
  isReady?: boolean;
211
212
  isLeader?: boolean;
@@ -302,6 +303,7 @@ export interface ICategoryConfig {
302
303
  startBackpackVariants?: number[][][];
303
304
  startPickaxe?: string[];
304
305
  startPickaxeVariants?: number[][][];
306
+ startShoes?: string[];
305
307
  startBanner?: string[];
306
308
  joinOutfit?: string[];
307
309
  joinOutfitVariants?: number[][][];
@@ -310,6 +312,7 @@ export interface ICategoryConfig {
310
312
  joinPickaxe?: string[];
311
313
  joinPickaxeVariants?: number[][][];
312
314
  joinEmote?: string[];
315
+ joinShoes?: string[];
313
316
  joinEmoji?: string[];
314
317
  joinBanner?: string[];
315
318
  memberJoinOutfit?: string[];
@@ -319,6 +322,7 @@ export interface ICategoryConfig {
319
322
  memberJoinPickaxe?: string[];
320
323
  memberJoinPickaxeVariants?: number[][][];
321
324
  memberJoinEmote?: string[];
325
+ memberJoinShoes?: string[];
322
326
  memberJoinEmoji?: string[];
323
327
  memberJoinBanner?: string[];
324
328
  }
@@ -367,6 +371,36 @@ export interface ISerializedCommand {
367
371
  onlyPartyMembers?: boolean;
368
372
  };
369
373
  }
374
+ export interface IAPICosmetic {
375
+ id: string;
376
+ type: string;
377
+ displayType: string;
378
+ name: string;
379
+ added: string;
380
+ tags: string[];
381
+ variants?: {
382
+ t: string;
383
+ n: string;
384
+ o: {
385
+ t: string;
386
+ n: string;
387
+ }[];
388
+ }[];
389
+ path: string;
390
+ }
391
+ export interface IAPILiteCosmetic {
392
+ id: string;
393
+ type: string;
394
+ name: string;
395
+ variants?: {
396
+ t: string;
397
+ n: string;
398
+ o: {
399
+ t: string;
400
+ n: string;
401
+ }[];
402
+ }[];
403
+ }
370
404
  export interface IBaseError {
371
405
  message: string;
372
406
  errorCode: ErrorCodes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fnlb-project/shared",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "description": "FNLB Shared Library",
5
5
  "files": ["dist"],
6
6
  "author": "FNLB-Project",