minecraft-data 3.75.0 → 3.76.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.
package/doc/history.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # History
2
2
 
3
+ ## 3.76.0
4
+
5
+ * update `minecraft-data`
6
+
3
7
  ## 3.75.0
4
8
 
5
9
  * update `minecraft-data`
package/index.d.ts CHANGED
@@ -1351,6 +1351,9 @@ declare namespace MinecraftData {
1351
1351
  /** `1.20.5 - latest`
1352
1352
  * New Item schema */
1353
1353
  "itemsWithComponents": boolean;
1354
+ /** `1.14 - latest`
1355
+ * Support the execute command */
1356
+ "hasExecuteCommand": boolean;
1354
1357
  }
1355
1358
 
1356
1359
  type Object = { [key: string]: any }
@@ -825,5 +825,10 @@
825
825
  "name": "itemsWithComponents",
826
826
  "description": "New Item schema",
827
827
  "versions": ["1.20.5", "latest"]
828
+ },
829
+ {
830
+ "name": "hasExecuteCommand",
831
+ "description": "Support the execute command",
832
+ "versions": ["1.14", "latest"]
828
833
  }
829
834
  ]
@@ -1,3 +1,6 @@
1
+ ## 3.76.0
2
+ * [add has execute command feature](https://github.com/PrismarineJS/minecraft-data/commit/20f34ae536e30370ecdb6fde6412ddba4d67d9a0) (thanks @rom1504)
3
+
1
4
  ## 3.75.0
2
5
  * [use login data of 1.20.5 in 1.20.6](https://github.com/PrismarineJS/minecraft-data/commit/b5d1b0bfa18d3c9f41d289c285d2b54827f22004) (thanks @rom1504)
3
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.75.0",
3
+ "version": "3.76.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",