@fnlb-project/shared 1.4.6 → 1.4.7
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 +4 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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
|
}
|