@serenityjs/protocol 0.7.1-beta-20250120172921 → 0.7.1-beta-20250122171359
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 +3 -3
- package/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# @serenityjs/protocol
|
|
2
2
|
|
|
3
|
-
## 0.7.1-beta-
|
|
3
|
+
## 0.7.1-beta-20250122171359
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- [`659a067`](https://github.com/SerenityJS/serenity/commit/659a0679098fc7f1c13620cad3ff1135412bac06) Thanks [@PMK744](https://github.com/PMK744)! - init v0.7.1-beta
|
|
8
8
|
|
|
9
9
|
- Updated dependencies [[`659a067`](https://github.com/SerenityJS/serenity/commit/659a0679098fc7f1c13620cad3ff1135412bac06)]:
|
|
10
|
-
- @serenityjs/nbt@0.7.1-beta-
|
|
11
|
-
- @serenityjs/raknet@0.7.1-beta-
|
|
10
|
+
- @serenityjs/nbt@0.7.1-beta-20250122171359
|
|
11
|
+
- @serenityjs/raknet@0.7.1-beta-20250122171359
|
|
12
12
|
|
|
13
13
|
## 0.7.0
|
|
14
14
|
|
package/dist/index.d.mts
CHANGED
|
@@ -644,7 +644,8 @@ declare enum RespawnState {
|
|
|
644
644
|
declare enum ModalFormType {
|
|
645
645
|
Action = "form",
|
|
646
646
|
Message = "modal",
|
|
647
|
-
Modal = "custom_form"
|
|
647
|
+
Modal = "custom_form",
|
|
648
|
+
Dialogue = "dialogue"
|
|
648
649
|
}
|
|
649
650
|
|
|
650
651
|
declare enum UpdateBlockLayerType {
|
|
@@ -2966,6 +2967,11 @@ declare class Vector3f extends DataType implements IPosition {
|
|
|
2966
2967
|
* @returns true if the 3D vector is zero, false otherwise.
|
|
2967
2968
|
*/
|
|
2968
2969
|
isZero(): boolean;
|
|
2970
|
+
/**
|
|
2971
|
+
* Clones this 3D vector into a new 3D vector.
|
|
2972
|
+
* @returns The cloned 3D vector.
|
|
2973
|
+
*/
|
|
2974
|
+
clone(): Vector3f;
|
|
2969
2975
|
/**
|
|
2970
2976
|
* Converts this array to a 3D vector.
|
|
2971
2977
|
* @returns The 3D vector that was converted.
|
package/dist/index.d.ts
CHANGED
|
@@ -644,7 +644,8 @@ declare enum RespawnState {
|
|
|
644
644
|
declare enum ModalFormType {
|
|
645
645
|
Action = "form",
|
|
646
646
|
Message = "modal",
|
|
647
|
-
Modal = "custom_form"
|
|
647
|
+
Modal = "custom_form",
|
|
648
|
+
Dialogue = "dialogue"
|
|
648
649
|
}
|
|
649
650
|
|
|
650
651
|
declare enum UpdateBlockLayerType {
|
|
@@ -2966,6 +2967,11 @@ declare class Vector3f extends DataType implements IPosition {
|
|
|
2966
2967
|
* @returns true if the 3D vector is zero, false otherwise.
|
|
2967
2968
|
*/
|
|
2968
2969
|
isZero(): boolean;
|
|
2970
|
+
/**
|
|
2971
|
+
* Clones this 3D vector into a new 3D vector.
|
|
2972
|
+
* @returns The cloned 3D vector.
|
|
2973
|
+
*/
|
|
2974
|
+
clone(): Vector3f;
|
|
2969
2975
|
/**
|
|
2970
2976
|
* Converts this array to a 3D vector.
|
|
2971
2977
|
* @returns The 3D vector that was converted.
|