mcbe-leveldb 1.10.0 → 1.10.1
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 +6 -0
- package/nbtSchemas.d.ts +25 -0
- package/nbtSchemas.js +9 -0
- package/nbtSchemas.js.map +1 -1
- package/nbtSchemas.ts +19 -0
- package/package.json +1 -1
package/Changelog.md
CHANGED
package/nbtSchemas.d.ts
CHANGED
|
@@ -1862,6 +1862,18 @@ export declare namespace NBTSchemas {
|
|
|
1862
1862
|
readonly value: 1;
|
|
1863
1863
|
}];
|
|
1864
1864
|
};
|
|
1865
|
+
readonly y_2026_drop_1: {
|
|
1866
|
+
readonly type: "byte";
|
|
1867
|
+
readonly markdownDescription: "1 or 0 (true/false) - true if the y_2026_drop_1 experimental toggle is enabled.";
|
|
1868
|
+
readonly markdownEnumDescriptions: ["false", "true"];
|
|
1869
|
+
readonly enum: [{
|
|
1870
|
+
readonly type: "byte";
|
|
1871
|
+
readonly value: 0;
|
|
1872
|
+
}, {
|
|
1873
|
+
readonly type: "byte";
|
|
1874
|
+
readonly value: 1;
|
|
1875
|
+
}];
|
|
1876
|
+
};
|
|
1865
1877
|
};
|
|
1866
1878
|
readonly additionalProperties: {
|
|
1867
1879
|
readonly type: "byte";
|
|
@@ -14537,6 +14549,19 @@ export declare namespace NBTSchemas {
|
|
|
14537
14549
|
type: "byte";
|
|
14538
14550
|
value: 0 | 1;
|
|
14539
14551
|
};
|
|
14552
|
+
/**
|
|
14553
|
+
* 1 or 0 (true/false) - true if the y_2026_drop_1 experimental toggle is enabled.
|
|
14554
|
+
*
|
|
14555
|
+
* @enum 0 | 1
|
|
14556
|
+
*
|
|
14557
|
+
* @enumDescriptions
|
|
14558
|
+
* - `0`: false
|
|
14559
|
+
* - `1`: true
|
|
14560
|
+
*/
|
|
14561
|
+
y_2026_drop_1?: {
|
|
14562
|
+
type: "byte";
|
|
14563
|
+
value: 0 | 1;
|
|
14564
|
+
};
|
|
14540
14565
|
} & {
|
|
14541
14566
|
[key: string]: {
|
|
14542
14567
|
type: "byte";
|
package/nbtSchemas.js
CHANGED
|
@@ -1633,6 +1633,15 @@ export var NBTSchemas;
|
|
|
1633
1633
|
{ type: "byte", value: 1 },
|
|
1634
1634
|
],
|
|
1635
1635
|
},
|
|
1636
|
+
y_2026_drop_1: {
|
|
1637
|
+
type: "byte",
|
|
1638
|
+
markdownDescription: "1 or 0 (true/false) - true if the y_2026_drop_1 experimental toggle is enabled.",
|
|
1639
|
+
markdownEnumDescriptions: ["false", "true"],
|
|
1640
|
+
enum: [
|
|
1641
|
+
{ type: "byte", value: 0 },
|
|
1642
|
+
{ type: "byte", value: 1 },
|
|
1643
|
+
],
|
|
1644
|
+
},
|
|
1636
1645
|
},
|
|
1637
1646
|
additionalProperties: {
|
|
1638
1647
|
type: "byte",
|