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.
- package/lib/index.js +4 -4
- 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.
|
|
3
|
+
* @Version 1.3.3
|
|
4
4
|
* @Author Hotaru <me@hotaru.icu>
|
|
5
5
|
* @Copyright 2024-2025 Hotaru. All rights reserved.
|
|
6
|
-
* @License
|
|
6
|
+
* @License GPL-3.0
|
|
7
7
|
* @Link https://github.com/kotorijs/kotori
|
|
8
|
-
* @Date
|
|
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
|
+
"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.
|
|
20
|
+
"kotori-bot": "^1.7.3"
|
|
21
21
|
}
|
|
22
22
|
}
|