@sjtdev/koishi-plugin-dota2tracker 1.2.13 → 1.2.14
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 +4 -0
- package/lib/index.js +4 -2
- package/package.json +1 -1
package/changelog.md
CHANGED
package/lib/index.js
CHANGED
|
@@ -1248,7 +1248,8 @@ var Config = import_koishi.Schema.intersect([
|
|
|
1248
1248
|
dailyReportSwitch: import_koishi.Schema.const(true).required(),
|
|
1249
1249
|
dailyReportHours: import_koishi.Schema.number().min(0).max(23).default(6).description("日报时间小时"),
|
|
1250
1250
|
dailyReportShowCombi: import_koishi.Schema.boolean().default(true).description("日报是否显示组合")
|
|
1251
|
-
})
|
|
1251
|
+
}),
|
|
1252
|
+
import_koishi.Schema.object({})
|
|
1252
1253
|
]),
|
|
1253
1254
|
import_koishi.Schema.object({
|
|
1254
1255
|
weeklyReportSwitch: import_koishi.Schema.boolean().default(false).description("周报功能")
|
|
@@ -1258,7 +1259,8 @@ var Config = import_koishi.Schema.intersect([
|
|
|
1258
1259
|
weeklyReportSwitch: import_koishi.Schema.const(true).required(),
|
|
1259
1260
|
weeklyReportDayHours: import_koishi.Schema.tuple([import_koishi.Schema.number().min(1).max(7), import_koishi.Schema.number().min(0).max(23)]).default([1, 10]).description("周报发布于周(几)的(几)点"),
|
|
1260
1261
|
weeklyReportShowCombi: import_koishi.Schema.boolean().default(true).description("周报是否显示组合")
|
|
1261
|
-
})
|
|
1262
|
+
}),
|
|
1263
|
+
import_koishi.Schema.object({})
|
|
1262
1264
|
])
|
|
1263
1265
|
]),
|
|
1264
1266
|
import_koishi.Schema.object({
|