@serenityjs/core 0.8.2 → 0.8.3-beta-20250508232630
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 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +13 -35
- package/dist/index.mjs +13 -35
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @serenityjs/core
|
|
2
2
|
|
|
3
|
+
## 0.8.3-beta-20250508232630
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`71f2576`](https://github.com/SerenityJS/serenity/commit/71f25765b3bb6a351fddaf9b17649eea6f3417ee) Thanks [@PMK744](https://github.com/PMK744)! - init v0.8.3-beta
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`71f2576`](https://github.com/SerenityJS/serenity/commit/71f25765b3bb6a351fddaf9b17649eea6f3417ee)]:
|
|
10
|
+
- @serenityjs/data@0.8.3-beta-20250508232630
|
|
11
|
+
- @serenityjs/emitter@0.8.3-beta-20250508232630
|
|
12
|
+
- @serenityjs/logger@0.8.3-beta-20250508232630
|
|
13
|
+
- @serenityjs/nbt@0.8.3-beta-20250508232630
|
|
14
|
+
- @serenityjs/protocol@0.8.3-beta-20250508232630
|
|
15
|
+
- @serenityjs/raknet@0.8.3-beta-20250508232630
|
|
16
|
+
|
|
3
17
|
## 0.8.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -10604,7 +10604,7 @@ declare class BlockUpsideDownBitTrait extends BlockTrait {
|
|
|
10604
10604
|
declare class BlockOpenBitTrait extends BlockTrait {
|
|
10605
10605
|
static readonly identifier = "open-bit";
|
|
10606
10606
|
static readonly state = "open_bit";
|
|
10607
|
-
onInteract({ origin }: BlockInteractionOptions): boolean;
|
|
10607
|
+
onInteract({ origin, cancel }: BlockInteractionOptions): boolean;
|
|
10608
10608
|
setBit(open: boolean, silent?: boolean): void;
|
|
10609
10609
|
}
|
|
10610
10610
|
|
package/dist/index.d.ts
CHANGED
|
@@ -10604,7 +10604,7 @@ declare class BlockUpsideDownBitTrait extends BlockTrait {
|
|
|
10604
10604
|
declare class BlockOpenBitTrait extends BlockTrait {
|
|
10605
10605
|
static readonly identifier = "open-bit";
|
|
10606
10606
|
static readonly state = "open_bit";
|
|
10607
|
-
onInteract({ origin }: BlockInteractionOptions): boolean;
|
|
10607
|
+
onInteract({ origin, cancel }: BlockInteractionOptions): boolean;
|
|
10608
10608
|
setBit(open: boolean, silent?: boolean): void;
|
|
10609
10609
|
}
|
|
10610
10610
|
|