@serenityjs/protocol 0.8.14 → 0.8.15-beta-20251120232013
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 +86 -24
- package/dist/index.d.ts +86 -24
- 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.15-beta-20251120232013
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4ea00c0`](https://github.com/SerenityJS/serenity/commit/4ea00c0c76cb910d725b91a21fa88271e6409e69) Thanks [@PMK744](https://github.com/PMK744)! - init v0.8.15-beta
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`4ea00c0`](https://github.com/SerenityJS/serenity/commit/4ea00c0c76cb910d725b91a21fa88271e6409e69)]:
|
|
10
|
+
- @serenityjs/nbt@0.8.15-beta-20251120232013
|
|
11
|
+
- @serenityjs/raknet@0.8.15-beta-20251120232013
|
|
12
|
+
|
|
3
13
|
## 0.8.14
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1474,8 +1474,8 @@ declare enum ItemStackRequestActionType {
|
|
|
1474
1474
|
endif = 23
|
|
1475
1475
|
}
|
|
1476
1476
|
|
|
1477
|
-
declare enum
|
|
1478
|
-
|
|
1477
|
+
declare enum ItemStackResponseResult {
|
|
1478
|
+
Success = 0,
|
|
1479
1479
|
Error = 1
|
|
1480
1480
|
}
|
|
1481
1481
|
|
|
@@ -4714,9 +4714,9 @@ declare class NetworkItemStackDescriptor extends DataType {
|
|
|
4714
4714
|
*/
|
|
4715
4715
|
readonly metadata: number | null;
|
|
4716
4716
|
/**
|
|
4717
|
-
* The
|
|
4717
|
+
* The network id of the item stack.
|
|
4718
4718
|
*/
|
|
4719
|
-
readonly
|
|
4719
|
+
readonly itemStackId: number | null;
|
|
4720
4720
|
/**
|
|
4721
4721
|
* The network block id of the item.
|
|
4722
4722
|
*/
|
|
@@ -4730,11 +4730,11 @@ declare class NetworkItemStackDescriptor extends DataType {
|
|
|
4730
4730
|
* @param id The network id of the item.
|
|
4731
4731
|
* @param stackSize The size of the stack.
|
|
4732
4732
|
* @param metadata The metadata of the item.
|
|
4733
|
-
* @param
|
|
4733
|
+
* @param itemStackId The network id of the item stack.
|
|
4734
4734
|
* @param networkBlockid The network block id of the item.
|
|
4735
4735
|
* @param extras The extra data of the item.
|
|
4736
4736
|
*/
|
|
4737
|
-
constructor(network: number, stackSize?: number | null, metadata?: number | null,
|
|
4737
|
+
constructor(network: number, stackSize?: number | null, metadata?: number | null, itemStackId?: number | null, networkBlockid?: number | null, extras?: ItemInstanceUserData | null);
|
|
4738
4738
|
static read(stream: BinaryStream): NetworkItemStackDescriptor;
|
|
4739
4739
|
static write(stream: BinaryStream, value: NetworkItemStackDescriptor): void;
|
|
4740
4740
|
}
|
|
@@ -5409,25 +5409,86 @@ declare class ItemStackRequest extends DataType {
|
|
|
5409
5409
|
static write(stream: BinaryStream, value: Array<ItemStackRequest>): void;
|
|
5410
5410
|
}
|
|
5411
5411
|
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
5416
|
-
|
|
5412
|
+
declare class ItemStackResponseSlotInfo extends DataType {
|
|
5413
|
+
/**
|
|
5414
|
+
* The slot the response is referring to.
|
|
5415
|
+
*/
|
|
5416
|
+
slot: number;
|
|
5417
|
+
/**
|
|
5418
|
+
* The amount of items in the slot.
|
|
5419
|
+
*/
|
|
5417
5420
|
amount: number;
|
|
5421
|
+
/**
|
|
5422
|
+
* The item stack id.
|
|
5423
|
+
*/
|
|
5424
|
+
itemStackId: number;
|
|
5425
|
+
/**
|
|
5426
|
+
* The custom name of the item in the slot.
|
|
5427
|
+
*/
|
|
5428
|
+
customName: string;
|
|
5429
|
+
/**
|
|
5430
|
+
* The filter custom name of the item in the slot.
|
|
5431
|
+
*/
|
|
5432
|
+
filterCustomName: string;
|
|
5433
|
+
/**
|
|
5434
|
+
* The durability correction of the item in the slot.
|
|
5435
|
+
*/
|
|
5418
5436
|
durabilityCorrection: number;
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5437
|
+
/**
|
|
5438
|
+
* Creates a new ItemStackResponseSlotInfo instance.
|
|
5439
|
+
* @param slot The slot the response is referring to.
|
|
5440
|
+
* @param amount The amount of items in the slot.
|
|
5441
|
+
* @param itemStackId The item stack id.
|
|
5442
|
+
* @param customName The custom name of the item in the slot.
|
|
5443
|
+
* @param filterCustomName The filter custom name of the item in the slot.
|
|
5444
|
+
* @param durabilityCorrection The durability correction of the item in the slot.
|
|
5445
|
+
*/
|
|
5446
|
+
constructor(slot: number, amount: number, itemStackId: number, customName: string, filterCustomName: string, durabilityCorrection: number);
|
|
5447
|
+
static read(stream: BinaryStream): ItemStackResponseSlotInfo;
|
|
5448
|
+
static write(stream: BinaryStream, value: ItemStackResponseSlotInfo): void;
|
|
5423
5449
|
}
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5450
|
+
|
|
5451
|
+
declare class ItemStackResponseContainerInfo extends DataType {
|
|
5452
|
+
/**
|
|
5453
|
+
* The full name of the container being referred to.
|
|
5454
|
+
*/
|
|
5455
|
+
fullContainerName: FullContainerName;
|
|
5456
|
+
/**
|
|
5457
|
+
* The slots in the container.
|
|
5458
|
+
*/
|
|
5459
|
+
slots: Array<ItemStackResponseSlotInfo>;
|
|
5460
|
+
/**
|
|
5461
|
+
* Creates a new ItemStackResponseContainerInfo instance.
|
|
5462
|
+
* @param fullContainerName The full name of the container being referred to.
|
|
5463
|
+
* @param slots The slots in the container.
|
|
5464
|
+
*/
|
|
5465
|
+
constructor(fullContainerName: FullContainerName, slots: Array<ItemStackResponseSlotInfo>);
|
|
5466
|
+
static read(stream: BinaryStream): ItemStackResponseContainerInfo;
|
|
5467
|
+
static write(stream: BinaryStream, value: ItemStackResponseContainerInfo): void;
|
|
5468
|
+
}
|
|
5469
|
+
|
|
5470
|
+
declare class ItemStackResponseInfo extends DataType {
|
|
5471
|
+
/**
|
|
5472
|
+
* The status of the item stack response.
|
|
5473
|
+
*/
|
|
5474
|
+
result: ItemStackResponseResult;
|
|
5475
|
+
/**
|
|
5476
|
+
* The id of the client request.
|
|
5477
|
+
*/
|
|
5478
|
+
clientRequestId: number;
|
|
5479
|
+
/**
|
|
5480
|
+
* The containers associated with this response.
|
|
5481
|
+
*/
|
|
5482
|
+
containers?: Array<ItemStackResponseContainerInfo>;
|
|
5483
|
+
/**
|
|
5484
|
+
* Creates a new ItemStackResponseInfo instance.
|
|
5485
|
+
* @param result The status of the item stack response.
|
|
5486
|
+
* @param clientRequestId The id of the client request.
|
|
5487
|
+
* @param containers The containers associated with this response.
|
|
5488
|
+
*/
|
|
5489
|
+
constructor(result: ItemStackResponseResult, clientRequestId: number, containers?: Array<ItemStackResponseContainerInfo>);
|
|
5490
|
+
static read(stream: BinaryStream): Array<ItemStackResponseInfo>;
|
|
5491
|
+
static write(stream: BinaryStream, value: Array<ItemStackResponseInfo>): void;
|
|
5431
5492
|
}
|
|
5432
5493
|
|
|
5433
5494
|
declare class ItemStacks extends DataType {
|
|
@@ -6581,6 +6642,7 @@ declare class AddPlayerPacket extends DataPacket {
|
|
|
6581
6642
|
declare class AnimatePacket extends DataPacket {
|
|
6582
6643
|
id: AnimateId;
|
|
6583
6644
|
runtimeEntityId: bigint;
|
|
6645
|
+
data: number;
|
|
6584
6646
|
boatRowingTime: number | null;
|
|
6585
6647
|
}
|
|
6586
6648
|
|
|
@@ -6925,7 +6987,7 @@ declare class ItemStackRequestPacket extends DataPacket {
|
|
|
6925
6987
|
}
|
|
6926
6988
|
|
|
6927
6989
|
declare class ItemStackResponsePacket extends DataPacket {
|
|
6928
|
-
responses: Array<
|
|
6990
|
+
responses: Array<ItemStackResponseInfo>;
|
|
6929
6991
|
}
|
|
6930
6992
|
|
|
6931
6993
|
declare class LegacyTelemetryEventPacket extends DataPacket {
|
|
@@ -7930,4 +7992,4 @@ declare const MINECRAFT_TICK_SPEED = 50;
|
|
|
7930
7992
|
declare const BLOCK_STATE_VERSION: number;
|
|
7931
7993
|
declare const SHIELD_NETWORK_ID = 380;
|
|
7932
7994
|
|
|
7933
|
-
export { AbilityIndex, AbilityLayer, AbilityLayerType, AbilitySet, AbilitySetId, ActorDamageCause, ActorDataId, ActorDataType, ActorEvent, ActorEventPacket, ActorFlag, ActorLink, ActorLinkSet, ActorLinkType, AddEntityPacket, AddItemActorPacket, AddPaintingPacket, AddPlayerPacket, AimAssistMode, AnimateAction, AnimateEntity, AnimateEntityPacket, AnimateId, AnimatePacket, Attribute, AttributeModifier, AttributeName, AvailableActorIdentifiersPacket, AvailableCommandsPacket, AwardAchievementPacket, BLOCK_STATE_VERSION, BehaviorPackInfo, BiomeDefinitionData, BiomeDefinitionList, BiomeDefinitionListPacket, BiomeStringList, BlockAction, BlockActorDataPacket, BlockEventPacket, BlockEventType, BlockFace, BlockPickRequestPacket, BlockPosition, BlockUpdate, BookActions, BookEditAction, BookEditPacket, BossEventAdd, BossEventColor, BossEventPacket, BossEventUpdate, BossEventUpdateType, ByteArray, CameraAudioListener, CameraControlScheme, CameraFOVInstruction, CameraFadeDuration, CameraFadeInstruction, CameraInstructions, CameraInstructionsPacket, CameraPreset, CameraPresetAimAssistDefinition, CameraPresetsPacket, CameraSetEasing, CameraSetInstruction, CameraShakePacket, CameraTargetInstruction, ChainedSubcommandValues, ChangeDimensionPacket, ChunkCoords, ChunkRadiusUpdatePacket, ClientBoundDebugRendererPacket, ClientBoundMapItemDataPacket, ClientCacheStatusPacket, type ClientData, ClientInputLocksFlag, ClientPredictedVehicle, ClientToServerHandshakePacket, ClientboundCloseFormPacket, Color, CommandBlockActorRuntimeId, CommandBlockMode, CommandBlockSettings, CommandBlockUpdatePacket, CommandOriginData, CommandOutputData, CommandOutputMessage, CommandOutputPacket, CommandParameterType, CommandPermissionLevel, CommandRequestPacket, Commands, CompletedUsingItemPacket, ComplexInventoryTransaction, CompressionMethod, ContainerClosePacket, ContainerDataType, ContainerId, ContainerMixDataEntry, ContainerName, ContainerOpenPacket, ContainerSetDataPacket, ContainerType, CorrectPlayerMovePredictionPacket, CraftingDataEntry, CraftingDataEntryType, CraftingDataPacket, CreativeContentPacket, CreativeGroup, CreativeItem, CreativeItemCategory, CreativeItemGroup, CurrectStructureFeaturePacket, DataItem, DataPacket, DeathInfoPacket, DeathParameters, DebugInfoPacket, DebuggerProtocolVersion, DefaultAbilityValues, DeviceOS, Difficulty, DimensionDataPacket, DimensionDefinition, DimensionDefinitionGroup, DimensionType, DisconnectMessage, DisconnectPacket, DisconnectReason, DisplaySlotType, DynamicEnums, EasingType, EffectType, EmoteFlags, EmoteListPacket, EmotePacket, Emotes, EnchantOption, Enchantment, EntityAttributes, EntityPickRequestPacket, EntityPropertyType, EnumConstraints, EnumValues, Enums, EquipmentSlot, Experiments, Fogs, Framer, FullContainerName, FurnanceRecipe, GameRule, GameRuleType, GameRules, GameRulesChangedPacket, Gamemode, GeneratorType, GraphicsMode, GraphicsOverrideParameterPacket, GraphicsOverrideParameterPayload, GraphicsOverrideParameterType, HeightMapDataType, HudElement, HudElementData, HudVisibility, HurtArmorPacket, type IPosition, type IdentityData, InputData, InputLockFlags, InputMode, InputTransaction, InteractAction, InteractPacket, InteractPosition, InteractionMode, InternalType, InventoryAction, InventoryContentPacket, InventoryLayout, InventoryLeftTab, InventoryRightTab, InventorySlotPacket, InventorySource, InventorySourceType, InventoryTransaction, InventoryTransactionPacket, ItemData, ItemInstanceUserData, ItemRegistryPacket, ItemReleaseInventoryTransaction, ItemReleaseInventoryTransactionType, ItemStackActionTakePlace,
|
|
7995
|
+
export { AbilityIndex, AbilityLayer, AbilityLayerType, AbilitySet, AbilitySetId, ActorDamageCause, ActorDataId, ActorDataType, ActorEvent, ActorEventPacket, ActorFlag, ActorLink, ActorLinkSet, ActorLinkType, AddEntityPacket, AddItemActorPacket, AddPaintingPacket, AddPlayerPacket, AimAssistMode, AnimateAction, AnimateEntity, AnimateEntityPacket, AnimateId, AnimatePacket, Attribute, AttributeModifier, AttributeName, AvailableActorIdentifiersPacket, AvailableCommandsPacket, AwardAchievementPacket, BLOCK_STATE_VERSION, BehaviorPackInfo, BiomeDefinitionData, BiomeDefinitionList, BiomeDefinitionListPacket, BiomeStringList, BlockAction, BlockActorDataPacket, BlockEventPacket, BlockEventType, BlockFace, BlockPickRequestPacket, BlockPosition, BlockUpdate, BookActions, BookEditAction, BookEditPacket, BossEventAdd, BossEventColor, BossEventPacket, BossEventUpdate, BossEventUpdateType, ByteArray, CameraAudioListener, CameraControlScheme, CameraFOVInstruction, CameraFadeDuration, CameraFadeInstruction, CameraInstructions, CameraInstructionsPacket, CameraPreset, CameraPresetAimAssistDefinition, CameraPresetsPacket, CameraSetEasing, CameraSetInstruction, CameraShakePacket, CameraTargetInstruction, ChainedSubcommandValues, ChangeDimensionPacket, ChunkCoords, ChunkRadiusUpdatePacket, ClientBoundDebugRendererPacket, ClientBoundMapItemDataPacket, ClientCacheStatusPacket, type ClientData, ClientInputLocksFlag, ClientPredictedVehicle, ClientToServerHandshakePacket, ClientboundCloseFormPacket, Color, CommandBlockActorRuntimeId, CommandBlockMode, CommandBlockSettings, CommandBlockUpdatePacket, CommandOriginData, CommandOutputData, CommandOutputMessage, CommandOutputPacket, CommandParameterType, CommandPermissionLevel, CommandRequestPacket, Commands, CompletedUsingItemPacket, ComplexInventoryTransaction, CompressionMethod, ContainerClosePacket, ContainerDataType, ContainerId, ContainerMixDataEntry, ContainerName, ContainerOpenPacket, ContainerSetDataPacket, ContainerType, CorrectPlayerMovePredictionPacket, CraftingDataEntry, CraftingDataEntryType, CraftingDataPacket, CreativeContentPacket, CreativeGroup, CreativeItem, CreativeItemCategory, CreativeItemGroup, CurrectStructureFeaturePacket, DataItem, DataPacket, DeathInfoPacket, DeathParameters, DebugInfoPacket, DebuggerProtocolVersion, DefaultAbilityValues, DeviceOS, Difficulty, DimensionDataPacket, DimensionDefinition, DimensionDefinitionGroup, DimensionType, DisconnectMessage, DisconnectPacket, DisconnectReason, DisplaySlotType, DynamicEnums, EasingType, EffectType, EmoteFlags, EmoteListPacket, EmotePacket, Emotes, EnchantOption, Enchantment, EntityAttributes, EntityPickRequestPacket, EntityPropertyType, EnumConstraints, EnumValues, Enums, EquipmentSlot, Experiments, Fogs, Framer, FullContainerName, FurnanceRecipe, GameRule, GameRuleType, GameRules, GameRulesChangedPacket, Gamemode, GeneratorType, GraphicsMode, GraphicsOverrideParameterPacket, GraphicsOverrideParameterPayload, GraphicsOverrideParameterType, HeightMapDataType, HudElement, HudElementData, HudVisibility, HurtArmorPacket, type IPosition, type IdentityData, InputData, InputLockFlags, InputMode, InputTransaction, InteractAction, InteractPacket, InteractPosition, InteractionMode, InternalType, InventoryAction, InventoryContentPacket, InventoryLayout, InventoryLeftTab, InventoryRightTab, InventorySlotPacket, InventorySource, InventorySourceType, InventoryTransaction, InventoryTransactionPacket, ItemData, ItemInstanceUserData, ItemRegistryPacket, ItemReleaseInventoryTransaction, ItemReleaseInventoryTransactionType, ItemStackActionTakePlace, ItemStackRequest, ItemStackRequestAction, ItemStackRequestActionBeanconPayment, ItemStackRequestActionCraftCreative, ItemStackRequestActionCraftGrindstoneRequest, ItemStackRequestActionCraftLoomRequest, ItemStackRequestActionCraftRecipe, ItemStackRequestActionCraftRecipeAuto, ItemStackRequestActionCreate, ItemStackRequestActionDestroyConsume, ItemStackRequestActionDrop, ItemStackRequestActionMineBlock, ItemStackRequestActionOptional, ItemStackRequestActionResultsDeprecated, ItemStackRequestActionSwap, ItemStackRequestActionType, ItemStackRequestPacket, ItemStackRequestSlotInfo, ItemStackResponseContainerInfo, ItemStackResponseInfo, ItemStackResponsePacket, ItemStackResponseResult, ItemStackResponseSlotInfo, ItemStacks, ItemTrackedType, ItemUseInventoryTransaction, ItemUseInventoryTransactionType, ItemUseMethod, ItemUseOnEntityInventoryTransaction, ItemUseOnEntityInventoryTransactionType, type LegacyTelemetryEventData, LegacyTelemetryEventPacket, LegacyTransaction, LevelChunkPacket, LevelEvent, LevelEventGenericPacket, LevelEventPacket, LevelSoundEvent, LevelSoundEventPacket, LoginPacket, type LoginTokenData, LoginTokens, MINECRAFT_SEM_VERSION, MINECRAFT_TICK_SPEED, MINECRAFT_VERSION, MapCreationBits, MapDecoration, MapDecorationBits, MapDecorationType, MapInfoRequestPacket, MapPixel, MapScale, MapTextureUpdateBits, MapTrackedItems, MaterialReducerDataEntry, MaterialRenderMethod, Materials, MemoryTier, MobArmorEquipmentPacket, MobEffectEvents, MobEffectPacket, MobEquipmentPacket, ModalFormCanceled, ModalFormCanceledReason, ModalFormData, ModalFormRequestPacket, ModalFormResponsePacket, ModalFormType, MotionPredictHintsPacket, MoveActorAbsolutePacket, MoveActorDeltaPacket, MoveDeltaFlags, MoveMode, MovePlayerPacket, MovementEffectPacket, MovementEffectType, NbtLoop, NetworkBlockTypeDefinition, NetworkChunkPublisherUpdatePacket, NetworkItemInstanceDescriptor, NetworkItemStackDescriptor, NetworkSettingsPacket, NetworkStackLatencyPacket, NpcDialogueAction, NpcDialoguePacket, NpcRequestPacket, NpcRequestType, ObjectiveSortOrder, OnScreenTextureAnimationPacket, OpenSignPacket, OptionalIO, PROTOCOL_VERSION, PackLinks, PackType, Packet, PacketPool, PacketViolationWarningPacket, Packets, Patterns, PermissionFlag, PermissionLevel, PlayMode, PlaySoundPacket, PlayStatus, PlayStatusPacket, PlayerActionPacket, PlayerActionType, PlayerAuthInputData, PlayerAuthInputPacket, PlayerAuthInputTransaction, PlayerAuthItemStackRequest, PlayerBlockActionData, PlayerBlockActions, PlayerEnchantOptionsPacket, PlayerFogPacket, PlayerHotbarPacket, PlayerInputTick, PlayerListAction, PlayerListPacket, PlayerListRecord, PlayerSkinPacket, PlayerStartItemCooldownPacket, PlayerUpdateEntityOverridesPacket, PlayerUpdateEntityOverridesType, PlayerUpdateEntityOverridesValue, PostFixes, PotionMixDataEntry, PredictedResult, PredictionType, PropertySyncData, RecipeIngredient, RecipeUnlockingRequirement, RemoveEntityPacket, RemoveObjectivePacket, RequestChunkRadiusPacket, RequestNetworkSettingsPacket, RequestPermissionsPacket, RequestedResourcePack, ResourceIdVersions, ResourcePackChunkDataPacket, ResourcePackChunkRequestPacket, ResourcePackClientResponsePacket, ResourcePackDataInfoPacket, ResourcePackDescriptor, ResourcePackResponse, ResourcePackStackPacket, ResourcePacksClientRequest, ResourcePacksInfoPacket, RespawnPacket, RespawnState, RiderJumpPacket, Rotation, RotationByte, SHIELD_NETWORK_ID, ScoreEntry, ScoreboardActionType, ScoreboardIdentity, ScoreboardIdentityAction, ScoreboardIdentityType, ScriptDebugShape, ScriptDebugShapeType, ScriptMessagePacket, SerializedSkin, ServerAuthMovementMode, ServerScriptDebugDrawerPacket, ServerSettingsResponsePacket, ServerToClientHandshakePacket, ServerboundDiagnosticsPacket, ServerboundLoadingScreenPacketPacket, ServerboundLoadingScreenType, SetActorDataPacket, SetActorLinkPacket, SetActorMotionPacket, SetCommandsEnabledPacket, SetDefaultGamemodePacket, SetDifficultyPacket, SetDisplayObjectivePacket, SetHealthPacket, SetHudPacket, SetLastHurtByPacket, SetLocalPlayerAsInitializedPacket, SetPlayerGameTypePacket, SetPlayerInventoryOptionsPacket, SetScorePacket, SetScoreboardIdentityPacket, SetSpawnPositionPacket, SetTimePacket, SetTitlePacket, ShakeAction, ShakeType, ShapedRecipe, ShapelessRecipe, ShowCreditsPacket, ShowProfilePacket, SignedBlockPosition, SkinAnimation, SkinImage, SkinPersonaPiece, SkinPersonaTintPiece, SpawnParticleEffectPacket, SpawnType, StartGamePacket, StopSoundPacket, StructureBlockUpdatePacket, StructureEditorData, StructureSettings, SubChunkEntry, SubChunkEntryWithCache, SubChunkEntryWithoutCache, SubChunkPacket, SubChunkRequestPacket, SubChunkRequests, SubChunkResult, SubchunkBlocks, Subcommands, SyncActorPropertyPacket, TakeItemActorPacket, TelemetryEventType, TeleportCause, TextPacket, TextPacketType, TextParameters, TextSource, TitleType, ToastRequestPacket, TradeOffer, TransactionSourceType, TransferPacket, TriggerType, type TrimDataMaterial, TrimDataPacket, type TrimDataPattern, UnlockedRecipesEntry, UnlockedRecipesPacket, UnlockedRecipesType, UnlockingContext, UpdateAbilitiesPacket, UpdateAdventureSettingsPacket, UpdateAttributesPacket, UpdateBlockFlagsType, UpdateBlockLayerType, UpdateBlockPacket, UpdateBlockSyncPacket, UpdateClientInputLocksPacket, UpdatePlayerGameTypePacket, UpdateSubchunkBlocksPacket, UpdateTradePacket, UpdateType, UserDataShapelessRecipe, Uuid, Vector2f, Vector3f, Vector3i, ViolationSeverity, ViolationType, WearableSlot, getPacketId };
|
package/dist/index.d.ts
CHANGED
|
@@ -1474,8 +1474,8 @@ declare enum ItemStackRequestActionType {
|
|
|
1474
1474
|
endif = 23
|
|
1475
1475
|
}
|
|
1476
1476
|
|
|
1477
|
-
declare enum
|
|
1478
|
-
|
|
1477
|
+
declare enum ItemStackResponseResult {
|
|
1478
|
+
Success = 0,
|
|
1479
1479
|
Error = 1
|
|
1480
1480
|
}
|
|
1481
1481
|
|
|
@@ -4714,9 +4714,9 @@ declare class NetworkItemStackDescriptor extends DataType {
|
|
|
4714
4714
|
*/
|
|
4715
4715
|
readonly metadata: number | null;
|
|
4716
4716
|
/**
|
|
4717
|
-
* The
|
|
4717
|
+
* The network id of the item stack.
|
|
4718
4718
|
*/
|
|
4719
|
-
readonly
|
|
4719
|
+
readonly itemStackId: number | null;
|
|
4720
4720
|
/**
|
|
4721
4721
|
* The network block id of the item.
|
|
4722
4722
|
*/
|
|
@@ -4730,11 +4730,11 @@ declare class NetworkItemStackDescriptor extends DataType {
|
|
|
4730
4730
|
* @param id The network id of the item.
|
|
4731
4731
|
* @param stackSize The size of the stack.
|
|
4732
4732
|
* @param metadata The metadata of the item.
|
|
4733
|
-
* @param
|
|
4733
|
+
* @param itemStackId The network id of the item stack.
|
|
4734
4734
|
* @param networkBlockid The network block id of the item.
|
|
4735
4735
|
* @param extras The extra data of the item.
|
|
4736
4736
|
*/
|
|
4737
|
-
constructor(network: number, stackSize?: number | null, metadata?: number | null,
|
|
4737
|
+
constructor(network: number, stackSize?: number | null, metadata?: number | null, itemStackId?: number | null, networkBlockid?: number | null, extras?: ItemInstanceUserData | null);
|
|
4738
4738
|
static read(stream: BinaryStream): NetworkItemStackDescriptor;
|
|
4739
4739
|
static write(stream: BinaryStream, value: NetworkItemStackDescriptor): void;
|
|
4740
4740
|
}
|
|
@@ -5409,25 +5409,86 @@ declare class ItemStackRequest extends DataType {
|
|
|
5409
5409
|
static write(stream: BinaryStream, value: Array<ItemStackRequest>): void;
|
|
5410
5410
|
}
|
|
5411
5411
|
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
5416
|
-
|
|
5412
|
+
declare class ItemStackResponseSlotInfo extends DataType {
|
|
5413
|
+
/**
|
|
5414
|
+
* The slot the response is referring to.
|
|
5415
|
+
*/
|
|
5416
|
+
slot: number;
|
|
5417
|
+
/**
|
|
5418
|
+
* The amount of items in the slot.
|
|
5419
|
+
*/
|
|
5417
5420
|
amount: number;
|
|
5421
|
+
/**
|
|
5422
|
+
* The item stack id.
|
|
5423
|
+
*/
|
|
5424
|
+
itemStackId: number;
|
|
5425
|
+
/**
|
|
5426
|
+
* The custom name of the item in the slot.
|
|
5427
|
+
*/
|
|
5428
|
+
customName: string;
|
|
5429
|
+
/**
|
|
5430
|
+
* The filter custom name of the item in the slot.
|
|
5431
|
+
*/
|
|
5432
|
+
filterCustomName: string;
|
|
5433
|
+
/**
|
|
5434
|
+
* The durability correction of the item in the slot.
|
|
5435
|
+
*/
|
|
5418
5436
|
durabilityCorrection: number;
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5437
|
+
/**
|
|
5438
|
+
* Creates a new ItemStackResponseSlotInfo instance.
|
|
5439
|
+
* @param slot The slot the response is referring to.
|
|
5440
|
+
* @param amount The amount of items in the slot.
|
|
5441
|
+
* @param itemStackId The item stack id.
|
|
5442
|
+
* @param customName The custom name of the item in the slot.
|
|
5443
|
+
* @param filterCustomName The filter custom name of the item in the slot.
|
|
5444
|
+
* @param durabilityCorrection The durability correction of the item in the slot.
|
|
5445
|
+
*/
|
|
5446
|
+
constructor(slot: number, amount: number, itemStackId: number, customName: string, filterCustomName: string, durabilityCorrection: number);
|
|
5447
|
+
static read(stream: BinaryStream): ItemStackResponseSlotInfo;
|
|
5448
|
+
static write(stream: BinaryStream, value: ItemStackResponseSlotInfo): void;
|
|
5423
5449
|
}
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5450
|
+
|
|
5451
|
+
declare class ItemStackResponseContainerInfo extends DataType {
|
|
5452
|
+
/**
|
|
5453
|
+
* The full name of the container being referred to.
|
|
5454
|
+
*/
|
|
5455
|
+
fullContainerName: FullContainerName;
|
|
5456
|
+
/**
|
|
5457
|
+
* The slots in the container.
|
|
5458
|
+
*/
|
|
5459
|
+
slots: Array<ItemStackResponseSlotInfo>;
|
|
5460
|
+
/**
|
|
5461
|
+
* Creates a new ItemStackResponseContainerInfo instance.
|
|
5462
|
+
* @param fullContainerName The full name of the container being referred to.
|
|
5463
|
+
* @param slots The slots in the container.
|
|
5464
|
+
*/
|
|
5465
|
+
constructor(fullContainerName: FullContainerName, slots: Array<ItemStackResponseSlotInfo>);
|
|
5466
|
+
static read(stream: BinaryStream): ItemStackResponseContainerInfo;
|
|
5467
|
+
static write(stream: BinaryStream, value: ItemStackResponseContainerInfo): void;
|
|
5468
|
+
}
|
|
5469
|
+
|
|
5470
|
+
declare class ItemStackResponseInfo extends DataType {
|
|
5471
|
+
/**
|
|
5472
|
+
* The status of the item stack response.
|
|
5473
|
+
*/
|
|
5474
|
+
result: ItemStackResponseResult;
|
|
5475
|
+
/**
|
|
5476
|
+
* The id of the client request.
|
|
5477
|
+
*/
|
|
5478
|
+
clientRequestId: number;
|
|
5479
|
+
/**
|
|
5480
|
+
* The containers associated with this response.
|
|
5481
|
+
*/
|
|
5482
|
+
containers?: Array<ItemStackResponseContainerInfo>;
|
|
5483
|
+
/**
|
|
5484
|
+
* Creates a new ItemStackResponseInfo instance.
|
|
5485
|
+
* @param result The status of the item stack response.
|
|
5486
|
+
* @param clientRequestId The id of the client request.
|
|
5487
|
+
* @param containers The containers associated with this response.
|
|
5488
|
+
*/
|
|
5489
|
+
constructor(result: ItemStackResponseResult, clientRequestId: number, containers?: Array<ItemStackResponseContainerInfo>);
|
|
5490
|
+
static read(stream: BinaryStream): Array<ItemStackResponseInfo>;
|
|
5491
|
+
static write(stream: BinaryStream, value: Array<ItemStackResponseInfo>): void;
|
|
5431
5492
|
}
|
|
5432
5493
|
|
|
5433
5494
|
declare class ItemStacks extends DataType {
|
|
@@ -6581,6 +6642,7 @@ declare class AddPlayerPacket extends DataPacket {
|
|
|
6581
6642
|
declare class AnimatePacket extends DataPacket {
|
|
6582
6643
|
id: AnimateId;
|
|
6583
6644
|
runtimeEntityId: bigint;
|
|
6645
|
+
data: number;
|
|
6584
6646
|
boatRowingTime: number | null;
|
|
6585
6647
|
}
|
|
6586
6648
|
|
|
@@ -6925,7 +6987,7 @@ declare class ItemStackRequestPacket extends DataPacket {
|
|
|
6925
6987
|
}
|
|
6926
6988
|
|
|
6927
6989
|
declare class ItemStackResponsePacket extends DataPacket {
|
|
6928
|
-
responses: Array<
|
|
6990
|
+
responses: Array<ItemStackResponseInfo>;
|
|
6929
6991
|
}
|
|
6930
6992
|
|
|
6931
6993
|
declare class LegacyTelemetryEventPacket extends DataPacket {
|
|
@@ -7930,4 +7992,4 @@ declare const MINECRAFT_TICK_SPEED = 50;
|
|
|
7930
7992
|
declare const BLOCK_STATE_VERSION: number;
|
|
7931
7993
|
declare const SHIELD_NETWORK_ID = 380;
|
|
7932
7994
|
|
|
7933
|
-
export { AbilityIndex, AbilityLayer, AbilityLayerType, AbilitySet, AbilitySetId, ActorDamageCause, ActorDataId, ActorDataType, ActorEvent, ActorEventPacket, ActorFlag, ActorLink, ActorLinkSet, ActorLinkType, AddEntityPacket, AddItemActorPacket, AddPaintingPacket, AddPlayerPacket, AimAssistMode, AnimateAction, AnimateEntity, AnimateEntityPacket, AnimateId, AnimatePacket, Attribute, AttributeModifier, AttributeName, AvailableActorIdentifiersPacket, AvailableCommandsPacket, AwardAchievementPacket, BLOCK_STATE_VERSION, BehaviorPackInfo, BiomeDefinitionData, BiomeDefinitionList, BiomeDefinitionListPacket, BiomeStringList, BlockAction, BlockActorDataPacket, BlockEventPacket, BlockEventType, BlockFace, BlockPickRequestPacket, BlockPosition, BlockUpdate, BookActions, BookEditAction, BookEditPacket, BossEventAdd, BossEventColor, BossEventPacket, BossEventUpdate, BossEventUpdateType, ByteArray, CameraAudioListener, CameraControlScheme, CameraFOVInstruction, CameraFadeDuration, CameraFadeInstruction, CameraInstructions, CameraInstructionsPacket, CameraPreset, CameraPresetAimAssistDefinition, CameraPresetsPacket, CameraSetEasing, CameraSetInstruction, CameraShakePacket, CameraTargetInstruction, ChainedSubcommandValues, ChangeDimensionPacket, ChunkCoords, ChunkRadiusUpdatePacket, ClientBoundDebugRendererPacket, ClientBoundMapItemDataPacket, ClientCacheStatusPacket, type ClientData, ClientInputLocksFlag, ClientPredictedVehicle, ClientToServerHandshakePacket, ClientboundCloseFormPacket, Color, CommandBlockActorRuntimeId, CommandBlockMode, CommandBlockSettings, CommandBlockUpdatePacket, CommandOriginData, CommandOutputData, CommandOutputMessage, CommandOutputPacket, CommandParameterType, CommandPermissionLevel, CommandRequestPacket, Commands, CompletedUsingItemPacket, ComplexInventoryTransaction, CompressionMethod, ContainerClosePacket, ContainerDataType, ContainerId, ContainerMixDataEntry, ContainerName, ContainerOpenPacket, ContainerSetDataPacket, ContainerType, CorrectPlayerMovePredictionPacket, CraftingDataEntry, CraftingDataEntryType, CraftingDataPacket, CreativeContentPacket, CreativeGroup, CreativeItem, CreativeItemCategory, CreativeItemGroup, CurrectStructureFeaturePacket, DataItem, DataPacket, DeathInfoPacket, DeathParameters, DebugInfoPacket, DebuggerProtocolVersion, DefaultAbilityValues, DeviceOS, Difficulty, DimensionDataPacket, DimensionDefinition, DimensionDefinitionGroup, DimensionType, DisconnectMessage, DisconnectPacket, DisconnectReason, DisplaySlotType, DynamicEnums, EasingType, EffectType, EmoteFlags, EmoteListPacket, EmotePacket, Emotes, EnchantOption, Enchantment, EntityAttributes, EntityPickRequestPacket, EntityPropertyType, EnumConstraints, EnumValues, Enums, EquipmentSlot, Experiments, Fogs, Framer, FullContainerName, FurnanceRecipe, GameRule, GameRuleType, GameRules, GameRulesChangedPacket, Gamemode, GeneratorType, GraphicsMode, GraphicsOverrideParameterPacket, GraphicsOverrideParameterPayload, GraphicsOverrideParameterType, HeightMapDataType, HudElement, HudElementData, HudVisibility, HurtArmorPacket, type IPosition, type IdentityData, InputData, InputLockFlags, InputMode, InputTransaction, InteractAction, InteractPacket, InteractPosition, InteractionMode, InternalType, InventoryAction, InventoryContentPacket, InventoryLayout, InventoryLeftTab, InventoryRightTab, InventorySlotPacket, InventorySource, InventorySourceType, InventoryTransaction, InventoryTransactionPacket, ItemData, ItemInstanceUserData, ItemRegistryPacket, ItemReleaseInventoryTransaction, ItemReleaseInventoryTransactionType, ItemStackActionTakePlace,
|
|
7995
|
+
export { AbilityIndex, AbilityLayer, AbilityLayerType, AbilitySet, AbilitySetId, ActorDamageCause, ActorDataId, ActorDataType, ActorEvent, ActorEventPacket, ActorFlag, ActorLink, ActorLinkSet, ActorLinkType, AddEntityPacket, AddItemActorPacket, AddPaintingPacket, AddPlayerPacket, AimAssistMode, AnimateAction, AnimateEntity, AnimateEntityPacket, AnimateId, AnimatePacket, Attribute, AttributeModifier, AttributeName, AvailableActorIdentifiersPacket, AvailableCommandsPacket, AwardAchievementPacket, BLOCK_STATE_VERSION, BehaviorPackInfo, BiomeDefinitionData, BiomeDefinitionList, BiomeDefinitionListPacket, BiomeStringList, BlockAction, BlockActorDataPacket, BlockEventPacket, BlockEventType, BlockFace, BlockPickRequestPacket, BlockPosition, BlockUpdate, BookActions, BookEditAction, BookEditPacket, BossEventAdd, BossEventColor, BossEventPacket, BossEventUpdate, BossEventUpdateType, ByteArray, CameraAudioListener, CameraControlScheme, CameraFOVInstruction, CameraFadeDuration, CameraFadeInstruction, CameraInstructions, CameraInstructionsPacket, CameraPreset, CameraPresetAimAssistDefinition, CameraPresetsPacket, CameraSetEasing, CameraSetInstruction, CameraShakePacket, CameraTargetInstruction, ChainedSubcommandValues, ChangeDimensionPacket, ChunkCoords, ChunkRadiusUpdatePacket, ClientBoundDebugRendererPacket, ClientBoundMapItemDataPacket, ClientCacheStatusPacket, type ClientData, ClientInputLocksFlag, ClientPredictedVehicle, ClientToServerHandshakePacket, ClientboundCloseFormPacket, Color, CommandBlockActorRuntimeId, CommandBlockMode, CommandBlockSettings, CommandBlockUpdatePacket, CommandOriginData, CommandOutputData, CommandOutputMessage, CommandOutputPacket, CommandParameterType, CommandPermissionLevel, CommandRequestPacket, Commands, CompletedUsingItemPacket, ComplexInventoryTransaction, CompressionMethod, ContainerClosePacket, ContainerDataType, ContainerId, ContainerMixDataEntry, ContainerName, ContainerOpenPacket, ContainerSetDataPacket, ContainerType, CorrectPlayerMovePredictionPacket, CraftingDataEntry, CraftingDataEntryType, CraftingDataPacket, CreativeContentPacket, CreativeGroup, CreativeItem, CreativeItemCategory, CreativeItemGroup, CurrectStructureFeaturePacket, DataItem, DataPacket, DeathInfoPacket, DeathParameters, DebugInfoPacket, DebuggerProtocolVersion, DefaultAbilityValues, DeviceOS, Difficulty, DimensionDataPacket, DimensionDefinition, DimensionDefinitionGroup, DimensionType, DisconnectMessage, DisconnectPacket, DisconnectReason, DisplaySlotType, DynamicEnums, EasingType, EffectType, EmoteFlags, EmoteListPacket, EmotePacket, Emotes, EnchantOption, Enchantment, EntityAttributes, EntityPickRequestPacket, EntityPropertyType, EnumConstraints, EnumValues, Enums, EquipmentSlot, Experiments, Fogs, Framer, FullContainerName, FurnanceRecipe, GameRule, GameRuleType, GameRules, GameRulesChangedPacket, Gamemode, GeneratorType, GraphicsMode, GraphicsOverrideParameterPacket, GraphicsOverrideParameterPayload, GraphicsOverrideParameterType, HeightMapDataType, HudElement, HudElementData, HudVisibility, HurtArmorPacket, type IPosition, type IdentityData, InputData, InputLockFlags, InputMode, InputTransaction, InteractAction, InteractPacket, InteractPosition, InteractionMode, InternalType, InventoryAction, InventoryContentPacket, InventoryLayout, InventoryLeftTab, InventoryRightTab, InventorySlotPacket, InventorySource, InventorySourceType, InventoryTransaction, InventoryTransactionPacket, ItemData, ItemInstanceUserData, ItemRegistryPacket, ItemReleaseInventoryTransaction, ItemReleaseInventoryTransactionType, ItemStackActionTakePlace, ItemStackRequest, ItemStackRequestAction, ItemStackRequestActionBeanconPayment, ItemStackRequestActionCraftCreative, ItemStackRequestActionCraftGrindstoneRequest, ItemStackRequestActionCraftLoomRequest, ItemStackRequestActionCraftRecipe, ItemStackRequestActionCraftRecipeAuto, ItemStackRequestActionCreate, ItemStackRequestActionDestroyConsume, ItemStackRequestActionDrop, ItemStackRequestActionMineBlock, ItemStackRequestActionOptional, ItemStackRequestActionResultsDeprecated, ItemStackRequestActionSwap, ItemStackRequestActionType, ItemStackRequestPacket, ItemStackRequestSlotInfo, ItemStackResponseContainerInfo, ItemStackResponseInfo, ItemStackResponsePacket, ItemStackResponseResult, ItemStackResponseSlotInfo, ItemStacks, ItemTrackedType, ItemUseInventoryTransaction, ItemUseInventoryTransactionType, ItemUseMethod, ItemUseOnEntityInventoryTransaction, ItemUseOnEntityInventoryTransactionType, type LegacyTelemetryEventData, LegacyTelemetryEventPacket, LegacyTransaction, LevelChunkPacket, LevelEvent, LevelEventGenericPacket, LevelEventPacket, LevelSoundEvent, LevelSoundEventPacket, LoginPacket, type LoginTokenData, LoginTokens, MINECRAFT_SEM_VERSION, MINECRAFT_TICK_SPEED, MINECRAFT_VERSION, MapCreationBits, MapDecoration, MapDecorationBits, MapDecorationType, MapInfoRequestPacket, MapPixel, MapScale, MapTextureUpdateBits, MapTrackedItems, MaterialReducerDataEntry, MaterialRenderMethod, Materials, MemoryTier, MobArmorEquipmentPacket, MobEffectEvents, MobEffectPacket, MobEquipmentPacket, ModalFormCanceled, ModalFormCanceledReason, ModalFormData, ModalFormRequestPacket, ModalFormResponsePacket, ModalFormType, MotionPredictHintsPacket, MoveActorAbsolutePacket, MoveActorDeltaPacket, MoveDeltaFlags, MoveMode, MovePlayerPacket, MovementEffectPacket, MovementEffectType, NbtLoop, NetworkBlockTypeDefinition, NetworkChunkPublisherUpdatePacket, NetworkItemInstanceDescriptor, NetworkItemStackDescriptor, NetworkSettingsPacket, NetworkStackLatencyPacket, NpcDialogueAction, NpcDialoguePacket, NpcRequestPacket, NpcRequestType, ObjectiveSortOrder, OnScreenTextureAnimationPacket, OpenSignPacket, OptionalIO, PROTOCOL_VERSION, PackLinks, PackType, Packet, PacketPool, PacketViolationWarningPacket, Packets, Patterns, PermissionFlag, PermissionLevel, PlayMode, PlaySoundPacket, PlayStatus, PlayStatusPacket, PlayerActionPacket, PlayerActionType, PlayerAuthInputData, PlayerAuthInputPacket, PlayerAuthInputTransaction, PlayerAuthItemStackRequest, PlayerBlockActionData, PlayerBlockActions, PlayerEnchantOptionsPacket, PlayerFogPacket, PlayerHotbarPacket, PlayerInputTick, PlayerListAction, PlayerListPacket, PlayerListRecord, PlayerSkinPacket, PlayerStartItemCooldownPacket, PlayerUpdateEntityOverridesPacket, PlayerUpdateEntityOverridesType, PlayerUpdateEntityOverridesValue, PostFixes, PotionMixDataEntry, PredictedResult, PredictionType, PropertySyncData, RecipeIngredient, RecipeUnlockingRequirement, RemoveEntityPacket, RemoveObjectivePacket, RequestChunkRadiusPacket, RequestNetworkSettingsPacket, RequestPermissionsPacket, RequestedResourcePack, ResourceIdVersions, ResourcePackChunkDataPacket, ResourcePackChunkRequestPacket, ResourcePackClientResponsePacket, ResourcePackDataInfoPacket, ResourcePackDescriptor, ResourcePackResponse, ResourcePackStackPacket, ResourcePacksClientRequest, ResourcePacksInfoPacket, RespawnPacket, RespawnState, RiderJumpPacket, Rotation, RotationByte, SHIELD_NETWORK_ID, ScoreEntry, ScoreboardActionType, ScoreboardIdentity, ScoreboardIdentityAction, ScoreboardIdentityType, ScriptDebugShape, ScriptDebugShapeType, ScriptMessagePacket, SerializedSkin, ServerAuthMovementMode, ServerScriptDebugDrawerPacket, ServerSettingsResponsePacket, ServerToClientHandshakePacket, ServerboundDiagnosticsPacket, ServerboundLoadingScreenPacketPacket, ServerboundLoadingScreenType, SetActorDataPacket, SetActorLinkPacket, SetActorMotionPacket, SetCommandsEnabledPacket, SetDefaultGamemodePacket, SetDifficultyPacket, SetDisplayObjectivePacket, SetHealthPacket, SetHudPacket, SetLastHurtByPacket, SetLocalPlayerAsInitializedPacket, SetPlayerGameTypePacket, SetPlayerInventoryOptionsPacket, SetScorePacket, SetScoreboardIdentityPacket, SetSpawnPositionPacket, SetTimePacket, SetTitlePacket, ShakeAction, ShakeType, ShapedRecipe, ShapelessRecipe, ShowCreditsPacket, ShowProfilePacket, SignedBlockPosition, SkinAnimation, SkinImage, SkinPersonaPiece, SkinPersonaTintPiece, SpawnParticleEffectPacket, SpawnType, StartGamePacket, StopSoundPacket, StructureBlockUpdatePacket, StructureEditorData, StructureSettings, SubChunkEntry, SubChunkEntryWithCache, SubChunkEntryWithoutCache, SubChunkPacket, SubChunkRequestPacket, SubChunkRequests, SubChunkResult, SubchunkBlocks, Subcommands, SyncActorPropertyPacket, TakeItemActorPacket, TelemetryEventType, TeleportCause, TextPacket, TextPacketType, TextParameters, TextSource, TitleType, ToastRequestPacket, TradeOffer, TransactionSourceType, TransferPacket, TriggerType, type TrimDataMaterial, TrimDataPacket, type TrimDataPattern, UnlockedRecipesEntry, UnlockedRecipesPacket, UnlockedRecipesType, UnlockingContext, UpdateAbilitiesPacket, UpdateAdventureSettingsPacket, UpdateAttributesPacket, UpdateBlockFlagsType, UpdateBlockLayerType, UpdateBlockPacket, UpdateBlockSyncPacket, UpdateClientInputLocksPacket, UpdatePlayerGameTypePacket, UpdateSubchunkBlocksPacket, UpdateTradePacket, UpdateType, UserDataShapelessRecipe, Uuid, Vector2f, Vector3f, Vector3i, ViolationSeverity, ViolationType, WearableSlot, getPacketId };
|