@serenityjs/core 0.8.6 → 0.8.7-beta-20250715225413
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/CHANGELOG.md +14 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +39 -23
- package/dist/index.mjs +41 -25
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @serenityjs/core
|
|
2
2
|
|
|
3
|
+
## 0.8.7-beta-20250715225413
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`2c0fbcd`](https://github.com/SerenityJS/serenity/commit/2c0fbcdd354a70ea2839ed1bc2214b148de2c18a) Thanks [@PMK744](https://github.com/PMK744)! - init v0.8.7-beta
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`2c0fbcd`](https://github.com/SerenityJS/serenity/commit/2c0fbcdd354a70ea2839ed1bc2214b148de2c18a)]:
|
|
10
|
+
- @serenityjs/data@0.8.7-beta-20250715225413
|
|
11
|
+
- @serenityjs/emitter@0.8.7-beta-20250715225413
|
|
12
|
+
- @serenityjs/logger@0.8.7-beta-20250715225413
|
|
13
|
+
- @serenityjs/nbt@0.8.7-beta-20250715225413
|
|
14
|
+
- @serenityjs/protocol@0.8.7-beta-20250715225413
|
|
15
|
+
- @serenityjs/raknet@0.8.7-beta-20250715225413
|
|
16
|
+
|
|
3
17
|
## 0.8.6
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -17442,6 +17442,7 @@ declare class ResourcePackClientResponseHandler extends NetworkHandler {
|
|
|
17442
17442
|
declare class SetLocalPlayerAsInitializedHandler extends NetworkHandler {
|
|
17443
17443
|
static readonly packet = Packet.SetLocalPlayerAsInitialized;
|
|
17444
17444
|
static readonly CraftingData: CraftingDataPacket;
|
|
17445
|
+
static readonly BiomeDefinitions: BiomeDefinitionListPacket;
|
|
17445
17446
|
handle(packet: SetLocalPlayerAsInitializedPacket, connection: Connection): void;
|
|
17446
17447
|
}
|
|
17447
17448
|
|
package/dist/index.d.ts
CHANGED
|
@@ -17442,6 +17442,7 @@ declare class ResourcePackClientResponseHandler extends NetworkHandler {
|
|
|
17442
17442
|
declare class SetLocalPlayerAsInitializedHandler extends NetworkHandler {
|
|
17443
17443
|
static readonly packet = Packet.SetLocalPlayerAsInitialized;
|
|
17444
17444
|
static readonly CraftingData: CraftingDataPacket;
|
|
17445
|
+
static readonly BiomeDefinitions: BiomeDefinitionListPacket;
|
|
17445
17446
|
handle(packet: SetLocalPlayerAsInitializedPacket, connection: Connection): void;
|
|
17446
17447
|
}
|
|
17447
17448
|
|