@serenityjs/protocol 0.4.2-beta-20240810064204 → 0.4.2-beta-20240810193104

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +20 -20
  2. package/package.json +6 -6
package/dist/index.d.ts CHANGED
@@ -2542,83 +2542,83 @@ declare class SerializedSkin extends DataType {
2542
2542
  /**
2543
2543
  * The identifier of the skin.
2544
2544
  */
2545
- readonly identifier: string;
2545
+ identifier: string;
2546
2546
  /**
2547
2547
  * The playfab identifier of the skin.
2548
2548
  */
2549
- readonly playFabIdentifier: string;
2549
+ playFabIdentifier: string;
2550
2550
  /**
2551
2551
  * The resource patch of the skin.
2552
2552
  */
2553
- readonly resourcePatch: string;
2553
+ resourcePatch: string;
2554
2554
  /**
2555
2555
  * The skin image.
2556
2556
  */
2557
- readonly skinImage: SkinImage;
2557
+ skinImage: SkinImage;
2558
2558
  /**
2559
2559
  * The animations of the skin.
2560
2560
  */
2561
- readonly animations: Array<SkinAnimation>;
2561
+ animations: Array<SkinAnimation>;
2562
2562
  /**
2563
2563
  * The cape image.
2564
2564
  */
2565
- readonly capeImage: SkinImage;
2565
+ capeImage: SkinImage;
2566
2566
  /**
2567
2567
  * The geometry data of the skin.
2568
2568
  */
2569
- readonly geometryData: string;
2569
+ geometryData: string;
2570
2570
  /**
2571
2571
  * The geometry version of the skin.
2572
2572
  */
2573
- readonly geometryVersion: string;
2573
+ geometryVersion: string;
2574
2574
  /**
2575
2575
  * The animation data of the skin.
2576
2576
  */
2577
- readonly animationData: string;
2577
+ animationData: string;
2578
2578
  /**
2579
2579
  * The animation engine of the skin.
2580
2580
  */
2581
- readonly capeIdentifier: string;
2581
+ capeIdentifier: string;
2582
2582
  /**
2583
2583
  * The full identifier of the skin.
2584
2584
  */
2585
- readonly fullIdentifier: string;
2585
+ fullIdentifier: string;
2586
2586
  /**
2587
2587
  * The arm size of the skin.
2588
2588
  */
2589
- readonly armSize: string;
2589
+ armSize: string;
2590
2590
  /**
2591
2591
  * The skin color of the skin.
2592
2592
  */
2593
- readonly skinColor: string;
2593
+ skinColor: string;
2594
2594
  /**
2595
2595
  * The persona pieces of the skin.
2596
2596
  */
2597
- readonly personaPieces: Array<SkinPersonaPiece>;
2597
+ personaPieces: Array<SkinPersonaPiece>;
2598
2598
  /**
2599
2599
  * The tint pieces of the skin.
2600
2600
  */
2601
- readonly tintPieces: Array<SkinPersonaTintPiece>;
2601
+ tintPieces: Array<SkinPersonaTintPiece>;
2602
2602
  /**
2603
2603
  * If the skin is premium.
2604
2604
  */
2605
- readonly isPremium: boolean;
2605
+ isPremium: boolean;
2606
2606
  /**
2607
2607
  * If the skin is persona.
2608
2608
  */
2609
- readonly isPersona: boolean;
2609
+ isPersona: boolean;
2610
2610
  /**
2611
2611
  * If there is a persona cape on classic skin.
2612
2612
  */
2613
- readonly isPersonaCapeOnClassic: boolean;
2613
+ isPersonaCapeOnClassic: boolean;
2614
2614
  /**
2615
2615
  * If the skin is used by its primary user.
2616
2616
  */
2617
- readonly isPrimaryUser: boolean;
2617
+ isPrimaryUser: boolean;
2618
2618
  /**
2619
2619
  * If the skin will override the player appearance.
2620
2620
  */
2621
- readonly overridingPlayerAppearance: boolean;
2621
+ overridingPlayerAppearance: boolean;
2622
2622
  /**
2623
2623
  * Creates a new serialized skin.
2624
2624
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenityjs/protocol",
3
- "version": "0.4.2-beta-20240810064204",
3
+ "version": "0.4.2-beta-20240810193104",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "repository": "https://github.com/SerenityJS/serenity",
@@ -18,9 +18,9 @@
18
18
  "preset": "@serenityjs/jest-presets/jest/node"
19
19
  },
20
20
  "devDependencies": {
21
- "@serenityjs/eslint-config": "0.4.2-beta-20240810064204",
22
- "@serenityjs/jest-presets": "0.4.2-beta-20240810064204",
23
- "@serenityjs/typescript-config": "0.4.2-beta-20240810064204",
21
+ "@serenityjs/eslint-config": "0.4.2-beta-20240810193104",
22
+ "@serenityjs/jest-presets": "0.4.2-beta-20240810193104",
23
+ "@serenityjs/typescript-config": "0.4.2-beta-20240810193104",
24
24
  "@types/jest": "^29.5.12",
25
25
  "@types/node": "^20.11.24",
26
26
  "jest": "^29.7.0",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@serenityjs/binarystream": "^2.6.6",
32
- "@serenityjs/nbt": "0.4.2-beta-20240810064204",
33
- "@serenityjs/raknet": "0.4.2-beta-20240810064204"
32
+ "@serenityjs/nbt": "0.4.2-beta-20240810193104",
33
+ "@serenityjs/raknet": "0.4.2-beta-20240810193104"
34
34
  }
35
35
  }