minecraft-data 3.27.0 → 3.28.0

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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 567,
3
+ "minecraftVersion": "1.19.62",
4
+ "majorVersion": "1.19",
5
+ "releaseType": "release"
6
+ }
@@ -1,4 +1,10 @@
1
1
  [
2
+ {
3
+ "version": 567,
4
+ "minecraftVersion": "1.19.62",
5
+ "majorVersion": "1.19",
6
+ "releaseType": "release"
7
+ },
2
8
  {
3
9
  "version": 567,
4
10
  "minecraftVersion": "1.19.60",
@@ -19,5 +19,6 @@
19
19
  "1.19.30",
20
20
  "1.19.40",
21
21
  "1.19.50",
22
- "1.19.60"
22
+ "1.19.60",
23
+ "1.19.62"
23
24
  ]
@@ -1,7 +1,7 @@
1
1
  # Created from MiNET and gophertunnel docs
2
2
  # The version below is the latest version this protocol schema was updated for.
3
3
  # The output protocol.json will be in the folder for the version
4
- !version: 1.19.60
4
+ !version: 1.19.62
5
5
 
6
6
  # Some ProtoDef aliases
7
7
  string: ["pstring",{"countType":"varint"}] # String / array types
@@ -779,6 +779,7 @@ Skin:
779
779
  # on a classic skin.
780
780
  cape_on_classic: bool
781
781
  primary_user: bool
782
+ overriding_player_appearance: bool
782
783
 
783
784
  PlayerRecords:
784
785
  type: u8 =>
@@ -1537,9 +1537,30 @@
1537
1537
  "steve": "bedrock/1.16.201",
1538
1538
  "blocksB2J": "bedrock/1.19.1",
1539
1539
  "blocksJ2B": "bedrock/1.19.1",
1540
+ "proto": "bedrock/1.19.60",
1541
+ "types": "bedrock/1.19.60",
1542
+ "version": "bedrock/1.19.60"
1543
+ },
1544
+ "1.19.62": {
1545
+ "blocks": "bedrock/1.19.1",
1546
+ "blockStates": "bedrock/1.19.1",
1547
+ "blockCollisionShapes": "bedrock/1.19.1",
1548
+ "biomes": "bedrock/1.19.1",
1549
+ "entities": "bedrock/1.19.1",
1550
+ "items": "bedrock/1.19.10",
1551
+ "recipes": "bedrock/1.19.10",
1552
+ "instruments": "bedrock/1.17.0",
1553
+ "materials": "pc/1.17",
1554
+ "enchantments": "pc/1.17",
1555
+ "effects": "pc/1.17",
1556
+ "protocol": "bedrock/1.19.62",
1557
+ "windows": "bedrock/1.16.201",
1558
+ "steve": "bedrock/1.16.201",
1559
+ "blocksB2J": "bedrock/1.19.1",
1560
+ "blocksJ2B": "bedrock/1.19.1",
1540
1561
  "proto": "bedrock/latest",
1541
1562
  "types": "bedrock/latest",
1542
- "version": "bedrock/1.19.60"
1563
+ "version": "bedrock/1.19.62"
1543
1564
  }
1544
1565
  }
1545
1566
  }
@@ -1470,10 +1470,6 @@
1470
1470
  "name": "messageId",
1471
1471
  "type": "varint"
1472
1472
  },
1473
- {
1474
- "name": "successful",
1475
- "type": "bool"
1476
- },
1477
1473
  {
1478
1474
  "name": "data",
1479
1475
  "type": [
@@ -2395,27 +2391,27 @@
2395
2391
  ],
2396
2392
  "packet_profileless_chat": [
2397
2393
  "container",
2398
- [
2399
- {
2400
- "name": "message",
2401
- "type": "string"
2402
- },
2403
- {
2404
- "name": "type",
2405
- "type": "varint"
2406
- },
2407
- {
2408
- "name": "name",
2409
- "type": "string"
2410
- },
2411
- {
2412
- "name": "target",
2413
- "type": [
2414
- "option",
2415
- "string"
2416
- ]
2417
- }
2418
- ]
2394
+ [
2395
+ {
2396
+ "name": "message",
2397
+ "type": "string"
2398
+ },
2399
+ {
2400
+ "name": "type",
2401
+ "type": "varint"
2402
+ },
2403
+ {
2404
+ "name": "name",
2405
+ "type": "string"
2406
+ },
2407
+ {
2408
+ "name": "target",
2409
+ "type": [
2410
+ "option",
2411
+ "string"
2412
+ ]
2413
+ }
2414
+ ]
2419
2415
  ],
2420
2416
  "packet_entity_status": [
2421
2417
  "container",
@@ -1,3 +1,7 @@
1
+ ## 3.28.0
2
+ * Add bedrock 1.19.62 protocol data (@CreeperG16)
3
+ * Update packet_login_plugin_response in pc 1.19.3 (@frej4189)
4
+
1
5
  ## 3.27.0
2
6
  * Add bedrock 1.19.60 protocol data (@CreeperG16)
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.27.0",
3
+ "version": "3.28.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",