@serenityjs/core 0.8.13 → 0.8.14-beta-20250930213101
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +12 -7
- package/dist/index.mjs +12 -7
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @serenityjs/core
|
|
2
2
|
|
|
3
|
+
## 0.8.14-beta-20250930213101
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`15979f9`](https://github.com/SerenityJS/serenity/commit/15979f9e46b8441ac107b7c394d20461f140203c) Thanks [@PMK744](https://github.com/PMK744)! - init v0.8.14-beta
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`15979f9`](https://github.com/SerenityJS/serenity/commit/15979f9e46b8441ac107b7c394d20461f140203c)]:
|
|
10
|
+
- @serenityjs/data@0.8.14-beta-20250930213101
|
|
11
|
+
- @serenityjs/emitter@0.8.14-beta-20250930213101
|
|
12
|
+
- @serenityjs/logger@0.8.14-beta-20250930213101
|
|
13
|
+
- @serenityjs/nbt@0.8.14-beta-20250930213101
|
|
14
|
+
- @serenityjs/protocol@0.8.14-beta-20250930213101
|
|
15
|
+
- @serenityjs/raknet@0.8.14-beta-20250930213101
|
|
16
|
+
|
|
3
17
|
## 0.8.13
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -12047,9 +12047,10 @@ declare class Dimension {
|
|
|
12047
12047
|
* Spawns an entity in the dimension.
|
|
12048
12048
|
* @param type The type of the entity.
|
|
12049
12049
|
* @param position The position of the entity.
|
|
12050
|
+
* @param spawnImmediately Whether to spawn the entity immediately; defaults to true.
|
|
12050
12051
|
* @returns The entity that was spawned.
|
|
12051
12052
|
*/
|
|
12052
|
-
spawnEntity(type: EntityIdentifier | EntityType, position: Vector3f): Entity;
|
|
12053
|
+
spawnEntity(type: EntityIdentifier | EntityType, position: Vector3f, spawnImmediately?: boolean): Entity;
|
|
12053
12054
|
/**
|
|
12054
12055
|
* Spawns an item in the dimension.
|
|
12055
12056
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -12047,9 +12047,10 @@ declare class Dimension {
|
|
|
12047
12047
|
* Spawns an entity in the dimension.
|
|
12048
12048
|
* @param type The type of the entity.
|
|
12049
12049
|
* @param position The position of the entity.
|
|
12050
|
+
* @param spawnImmediately Whether to spawn the entity immediately; defaults to true.
|
|
12050
12051
|
* @returns The entity that was spawned.
|
|
12051
12052
|
*/
|
|
12052
|
-
spawnEntity(type: EntityIdentifier | EntityType, position: Vector3f): Entity;
|
|
12053
|
+
spawnEntity(type: EntityIdentifier | EntityType, position: Vector3f, spawnImmediately?: boolean): Entity;
|
|
12053
12054
|
/**
|
|
12054
12055
|
* Spawns an item in the dimension.
|
|
12055
12056
|
*
|