@minecraft/server-editor 0.1.0-beta.1.26.20-preview.20 → 0.1.0-beta.1.26.20-preview.22

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 (2) hide show
  1. package/index.d.ts +15 -0
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -3795,6 +3795,20 @@ export class MinimapManager {
3795
3795
  * @throws This function can throw errors.
3796
3796
  */
3797
3797
  getMinimap(minimapId: string): MinimapItem;
3798
+ /**
3799
+ * @remarks
3800
+ * This function can't be called in restricted-execution mode.
3801
+ *
3802
+ * @throws This function can throw errors.
3803
+ */
3804
+ setVanillaBiomeColorMap(colorMap: Record<string, minecraftserver.RGB>): void;
3805
+ /**
3806
+ * @remarks
3807
+ * This function can't be called in restricted-execution mode.
3808
+ *
3809
+ * @throws This function can throw errors.
3810
+ */
3811
+ updateVanillaColorMap(biomeType: minecraftserver.BiomeType, color: minecraftserver.RGB): void;
3798
3812
  }
3799
3813
 
3800
3814
  /**
@@ -5888,6 +5902,7 @@ export interface BuiltInUIManager {
5888
5902
  * is being written to the world
5889
5903
  */
5890
5904
  export interface ClipboardWriteOptions {
5905
+ excludeAirBlocks?: boolean;
5891
5906
  /**
5892
5907
  * @remarks
5893
5908
  * An enum which represents the axis (or combination of axis')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft/server-editor",
3
- "version": "0.1.0-beta.1.26.20-preview.20",
3
+ "version": "0.1.0-beta.1.26.20-preview.22",
4
4
  "description": "",
5
5
  "contributors": [
6
6
  {
@@ -14,8 +14,8 @@
14
14
  ],
15
15
  "peerDependencies": {
16
16
  "@minecraft/common": "^1.0.0",
17
- "@minecraft/server": "^2.8.0-beta.1.26.20-preview.20",
18
- "@minecraft/vanilla-data": ">=1.20.70 || 1.26.20-preview.20"
17
+ "@minecraft/server": "^2.8.0-beta.1.26.20-preview.22",
18
+ "@minecraft/vanilla-data": ">=1.20.70 || 1.26.20-preview.22"
19
19
  },
20
20
  "license": "MIT"
21
21
  }