@serenityjs/protocol 0.8.11 → 0.8.12-beta-20250825015248
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 +10 -0
- package/dist/index.d.mts +3 -5
- package/dist/index.d.ts +3 -5
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @serenityjs/protocol
|
|
2
2
|
|
|
3
|
+
## 0.8.12-beta-20250825015248
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`0a28554`](https://github.com/SerenityJS/serenity/commit/0a285541c9f61f51ab93dabdc0e895121e9e8936) Thanks [@PMK744](https://github.com/PMK744)! - init v0.8.12-beta
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`0a28554`](https://github.com/SerenityJS/serenity/commit/0a285541c9f61f51ab93dabdc0e895121e9e8936)]:
|
|
10
|
+
- @serenityjs/nbt@0.8.12-beta-20250825015248
|
|
11
|
+
- @serenityjs/raknet@0.8.12-beta-20250825015248
|
|
12
|
+
|
|
3
13
|
## 0.8.11
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -2680,10 +2680,8 @@ declare class AnimateAction extends DataType {
|
|
|
2680
2680
|
}
|
|
2681
2681
|
|
|
2682
2682
|
declare class AnimateEntity extends DataType {
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
static read(stream: BinaryStream): Array<AnimateEntity>;
|
|
2686
|
-
static write(stream: BinaryStream, value: Array<AnimateEntity>): void;
|
|
2683
|
+
static read(stream: BinaryStream): Array<bigint>;
|
|
2684
|
+
static write(stream: BinaryStream, value: Array<bigint>): void;
|
|
2687
2685
|
}
|
|
2688
2686
|
|
|
2689
2687
|
declare class AttributeModifier extends DataType {
|
|
@@ -6345,7 +6343,7 @@ declare class AnimateEntityPacket extends DataPacket {
|
|
|
6345
6343
|
stopExpressionVersion: number;
|
|
6346
6344
|
controller: string;
|
|
6347
6345
|
blendOutTime: number;
|
|
6348
|
-
actorRuntimeIds: Array<
|
|
6346
|
+
actorRuntimeIds: Array<bigint>;
|
|
6349
6347
|
}
|
|
6350
6348
|
|
|
6351
6349
|
declare class AvailableActorIdentifiersPacket extends DataPacket {
|
package/dist/index.d.ts
CHANGED
|
@@ -2680,10 +2680,8 @@ declare class AnimateAction extends DataType {
|
|
|
2680
2680
|
}
|
|
2681
2681
|
|
|
2682
2682
|
declare class AnimateEntity extends DataType {
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
static read(stream: BinaryStream): Array<AnimateEntity>;
|
|
2686
|
-
static write(stream: BinaryStream, value: Array<AnimateEntity>): void;
|
|
2683
|
+
static read(stream: BinaryStream): Array<bigint>;
|
|
2684
|
+
static write(stream: BinaryStream, value: Array<bigint>): void;
|
|
2687
2685
|
}
|
|
2688
2686
|
|
|
2689
2687
|
declare class AttributeModifier extends DataType {
|
|
@@ -6345,7 +6343,7 @@ declare class AnimateEntityPacket extends DataPacket {
|
|
|
6345
6343
|
stopExpressionVersion: number;
|
|
6346
6344
|
controller: string;
|
|
6347
6345
|
blendOutTime: number;
|
|
6348
|
-
actorRuntimeIds: Array<
|
|
6346
|
+
actorRuntimeIds: Array<bigint>;
|
|
6349
6347
|
}
|
|
6350
6348
|
|
|
6351
6349
|
declare class AvailableActorIdentifiersPacket extends DataPacket {
|