kotori-plugin-testing 1.3.3 → 1.3.4

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/lib/index.js +4 -4
  2. package/package.json +2 -2
package/lib/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  /**
2
2
  * @Package kotori-plugin-testing
3
- * @Version 1.3.2
3
+ * @Version 1.3.3
4
4
  * @Author Hotaru <me@hotaru.icu>
5
5
  * @Copyright 2024-2025 Hotaru. All rights reserved.
6
- * @License BAN-ZHINESE-USING
6
+ * @License GPL-3.0
7
7
  * @Link https://github.com/kotorijs/kotori
8
- * @Date 2025/8/4 17:29:56
8
+ * @Date 2026/2/14 15:09:30
9
9
  */
10
10
  "use strict";
11
11
  var __defProp = Object.defineProperty;
@@ -85,7 +85,7 @@ __decorateClass([
85
85
  plugin.on({ type: "ready" })
86
86
  ], TestingPlugin.prototype, "onReady", 1);
87
87
  __decorateClass([
88
- plugin.command({ template: "echo <...content>" })
88
+ plugin.command({ template: "echo <...content>", access: import_kotori_bot.UserAccess.ADMIN })
89
89
  ], TestingPlugin.prototype, "echo", 1);
90
90
  __decorateClass([
91
91
  plugin.command({ template: "eval [...code]", access: import_kotori_bot.UserAccess.ADMIN, options: [["I", "interactive:boolean"]] })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kotori-plugin-testing",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "testing plugin",
5
5
  "main": "lib/index.js",
6
6
  "keywords": [
@@ -17,6 +17,6 @@
17
17
  ],
18
18
  "author": "Hotaru <me@hotaru.icu>",
19
19
  "peerDependencies": {
20
- "kotori-bot": "^1.7.1"
20
+ "kotori-bot": "^1.7.3"
21
21
  }
22
22
  }