minecraft-data 3.44.0 → 3.46.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.
Files changed (63) hide show
  1. package/data.js +23 -1
  2. package/doc/history.md +8 -0
  3. package/index.d.ts +4 -1
  4. package/minecraft-data/.github/helper-bot/index.js +58 -59
  5. package/minecraft-data/.github/workflows/update-helper.yml +1 -1
  6. package/minecraft-data/README.md +1 -1
  7. package/minecraft-data/data/bedrock/1.16.220/protocol.json +1 -1
  8. package/minecraft-data/data/bedrock/1.16.220/types.yml +2 -2
  9. package/minecraft-data/data/bedrock/1.17.0/protocol.json +1 -1
  10. package/minecraft-data/data/bedrock/1.17.0/types.yml +2 -2
  11. package/minecraft-data/data/bedrock/1.17.10/protocol.json +1 -1
  12. package/minecraft-data/data/bedrock/1.17.10/types.yml +2 -2
  13. package/minecraft-data/data/bedrock/1.17.30/protocol.json +1 -1
  14. package/minecraft-data/data/bedrock/1.17.30/types.yml +2 -2
  15. package/minecraft-data/data/bedrock/1.17.40/protocol.json +1 -1
  16. package/minecraft-data/data/bedrock/1.17.40/types.yml +2 -2
  17. package/minecraft-data/data/bedrock/1.18.0/protocol.json +1 -1
  18. package/minecraft-data/data/bedrock/1.18.0/types.yml +2 -2
  19. package/minecraft-data/data/bedrock/1.18.11/protocol.json +1 -1
  20. package/minecraft-data/data/bedrock/1.18.11/types.yml +2 -2
  21. package/minecraft-data/data/bedrock/1.18.30/protocol.json +1 -1
  22. package/minecraft-data/data/bedrock/1.18.30/types.yml +2 -2
  23. package/minecraft-data/data/bedrock/1.19.1/protocol.json +1 -1
  24. package/minecraft-data/data/bedrock/1.19.1/types.yml +2 -2
  25. package/minecraft-data/data/bedrock/1.19.10/protocol.json +1 -1
  26. package/minecraft-data/data/bedrock/1.19.10/types.yml +1 -1
  27. package/minecraft-data/data/bedrock/1.19.20/protocol.json +1 -1
  28. package/minecraft-data/data/bedrock/1.19.20/types.yml +1 -1
  29. package/minecraft-data/data/bedrock/1.19.21/protocol.json +1 -1
  30. package/minecraft-data/data/bedrock/1.19.21/types.yml +1 -1
  31. package/minecraft-data/data/bedrock/1.19.30/protocol.json +1 -1
  32. package/minecraft-data/data/bedrock/1.19.30/types.yml +1 -1
  33. package/minecraft-data/data/bedrock/1.19.40/protocol.json +1 -1
  34. package/minecraft-data/data/bedrock/1.19.40/types.yml +1 -1
  35. package/minecraft-data/data/bedrock/1.19.50/protocol.json +1 -1
  36. package/minecraft-data/data/bedrock/1.19.50/types.yml +1 -1
  37. package/minecraft-data/data/bedrock/1.19.60/protocol.json +1 -1
  38. package/minecraft-data/data/bedrock/1.19.60/types.yml +1 -1
  39. package/minecraft-data/data/bedrock/1.19.62/protocol.json +1 -1
  40. package/minecraft-data/data/bedrock/1.19.62/types.yml +1 -1
  41. package/minecraft-data/data/bedrock/1.19.70/protocol.json +1 -1
  42. package/minecraft-data/data/bedrock/1.19.70/types.yml +1 -1
  43. package/minecraft-data/data/bedrock/1.19.80/protocol.json +1 -1
  44. package/minecraft-data/data/bedrock/1.19.80/types.yml +1 -1
  45. package/minecraft-data/data/bedrock/1.20.0/protocol.json +1 -1
  46. package/minecraft-data/data/bedrock/1.20.0/types.yml +1 -1
  47. package/minecraft-data/data/bedrock/1.20.10/proto.yml +4021 -0
  48. package/minecraft-data/data/bedrock/1.20.10/protocol.json +1 -1
  49. package/minecraft-data/data/bedrock/1.20.10/types.yml +2101 -0
  50. package/minecraft-data/data/bedrock/1.20.30/protocol.json +11748 -0
  51. package/minecraft-data/data/bedrock/1.20.30/version.json +6 -0
  52. package/minecraft-data/data/bedrock/common/features.json +10 -0
  53. package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
  54. package/minecraft-data/data/bedrock/common/versions.json +2 -1
  55. package/minecraft-data/data/bedrock/latest/proto.yml +80 -9
  56. package/minecraft-data/data/bedrock/latest/types.yml +17 -1
  57. package/minecraft-data/data/dataPaths.json +24 -2
  58. package/minecraft-data/data/pc/1.20/blocks.json +18251 -16821
  59. package/minecraft-data/data/pc/common/features.json +16 -1
  60. package/minecraft-data/data/pc/common/protocolVersions.json +64 -0
  61. package/minecraft-data/doc/history.md +10 -0
  62. package/package.json +1 -1
  63. package/typings/index-template.d.ts +4 -1
@@ -131,7 +131,7 @@ Item:
131
131
  metadata: varint
132
132
  # When server authoritative inventory is enabled, all allocated items have a unique ID used to identify
133
133
  # a specifc item instance.
134
- has_stack_id: u8
134
+ has_stack_id: bool
135
135
  # StackNetworkID is the network ID of this item *instance*. If the stack is empty, 0 is always written for this
136
136
  # field. If not, the field should be set to 1 if the server authoritative inventories are disabled in the
137
137
  # StartGame packet, or to a unique stack ID if it is enabled.
@@ -486,7 +486,7 @@
486
486
  },
487
487
  {
488
488
  "name": "has_stack_id",
489
- "type": "u8"
489
+ "type": "bool"
490
490
  },
491
491
  {
492
492
  "name": "stack_id",
@@ -131,7 +131,7 @@ Item:
131
131
  metadata: varint
132
132
  # When server authoritative inventory is enabled, all allocated items have a unique ID used to identify
133
133
  # a specifc item instance.
134
- has_stack_id: u8
134
+ has_stack_id: bool
135
135
  # StackNetworkID is the network ID of this item *instance*. If the stack is empty, 0 is always written for this
136
136
  # field. If not, the field should be set to 1 if the server authoritative inventories are disabled in the
137
137
  # StartGame packet, or to a unique stack ID if it is enabled.
@@ -486,7 +486,7 @@
486
486
  },
487
487
  {
488
488
  "name": "has_stack_id",
489
- "type": "u8"
489
+ "type": "bool"
490
490
  },
491
491
  {
492
492
  "name": "stack_id",
@@ -131,7 +131,7 @@ Item:
131
131
  metadata: varint
132
132
  # When server authoritative inventory is enabled, all allocated items have a unique ID used to identify
133
133
  # a specifc item instance.
134
- has_stack_id: u8
134
+ has_stack_id: bool
135
135
  # StackNetworkID is the network ID of this item *instance*. If the stack is empty, 0 is always written for this
136
136
  # field. If not, the field should be set to 1 if the server authoritative inventories are disabled in the
137
137
  # StartGame packet, or to a unique stack ID if it is enabled.
@@ -486,7 +486,7 @@
486
486
  },
487
487
  {
488
488
  "name": "has_stack_id",
489
- "type": "u8"
489
+ "type": "bool"
490
490
  },
491
491
  {
492
492
  "name": "stack_id",
@@ -131,7 +131,7 @@ Item:
131
131
  metadata: varint
132
132
  # When server authoritative inventory is enabled, all allocated items have a unique ID used to identify
133
133
  # a specifc item instance.
134
- has_stack_id: u8
134
+ has_stack_id: bool
135
135
  # StackNetworkID is the network ID of this item *instance*. If the stack is empty, 0 is always written for this
136
136
  # field. If not, the field should be set to 1 if the server authoritative inventories are disabled in the
137
137
  # StartGame packet, or to a unique stack ID if it is enabled.