@occultus/api 0.27.2 → 0.28.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/package.json +16 -12
- package/script/api.js +6872 -0
- package/script/main.ts +1 -0
- package/src/apiVer.ts +3 -2
package/script/main.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../src/index"
|
package/src/apiVer.ts
CHANGED
|
@@ -25,10 +25,11 @@ export class StarTenon {
|
|
|
25
25
|
* - 9:对 1.1.0 Core 的适配,页面跳转的改进
|
|
26
26
|
* - 10:加入了 Server Binding API
|
|
27
27
|
* - 10.1:新的工具集函数,BlockEntity 的 API 行为变化
|
|
28
|
+
* - 11:教程 API 的改进,单独的依赖库文件的提供
|
|
28
29
|
*/
|
|
29
|
-
static apiLevel: number =
|
|
30
|
+
static apiLevel: number = 11;
|
|
30
31
|
/**
|
|
31
32
|
* Star Tenon API 对应的版本号
|
|
32
33
|
*/
|
|
33
|
-
static version: string = `0.
|
|
34
|
+
static version: string = `0.28.0 (API: ${this.apiLevel})`;
|
|
34
35
|
}
|