@minecraft/server-admin 1.0.0-beta.1.20.40-preview.21 → 1.0.0-beta.1.20.40-preview.23

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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +2 -1
  3. package/package.json +4 -1
package/README.md CHANGED
@@ -6,4 +6,4 @@ Contains types related to administering a Bedrock Dedicated Server. These types
6
6
 
7
7
  See full documentation for this module here:
8
8
 
9
- https://learn.microsoft.com/en-us/minecraft/creator/scriptapi/@minecraft/server-admin/@minecraft/server-admin
9
+ https://learn.microsoft.com/en-us/minecraft/creator/scriptapi/minecraft/server-admin/minecraft-server-admin
package/index.d.ts CHANGED
@@ -18,11 +18,12 @@
18
18
  * ```json
19
19
  * {
20
20
  * "module_name": "@minecraft/server-admin",
21
- * "version": "1.0.0-beta.1.20.40-preview.21"
21
+ * "version": "1.0.0-beta.1.20.40-preview.23"
22
22
  * }
23
23
  * ```
24
24
  *
25
25
  */
26
+ import * as minecraftcommon from '@minecraft/common';
26
27
  /**
27
28
  * This represents a placeholder object that represents a
28
29
  * secret string. The contents of that string are not available
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft/server-admin",
3
- "version": "1.0.0-beta.1.20.40-preview.21",
3
+ "version": "1.0.0-beta.1.20.40-preview.23",
4
4
  "description": "",
5
5
  "contributors": [
6
6
  {
@@ -12,5 +12,8 @@
12
12
  "email": "mikeam@microsoft.com"
13
13
  }
14
14
  ],
15
+ "dependencies": {
16
+ "@minecraft/common": "^1.0.0-rc.1.20.40-preview.23"
17
+ },
15
18
  "license": "MIT"
16
19
  }