mioku-plugin-admin 2.0.0 → 2.1.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 +87 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mioku-plugin-admin",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "管理插件,提供事件通知与群管/个人管理指令",
|
|
5
5
|
"main": "index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -24,6 +24,92 @@
|
|
|
24
24
|
"config",
|
|
25
25
|
"ai"
|
|
26
26
|
],
|
|
27
|
+
"accessHooks": [
|
|
28
|
+
{
|
|
29
|
+
"id": "/改头像",
|
|
30
|
+
"match": "/^\\/改头像/"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "/改昵称",
|
|
34
|
+
"match": "/^\\/改昵称/"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "/改签名",
|
|
38
|
+
"match": "/^\\/改签名/"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "/改性别",
|
|
42
|
+
"match": "/^\\/改性别/"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "/改群名片",
|
|
46
|
+
"match": "/^\\/改群名片/"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "/改群昵称",
|
|
50
|
+
"match": "/^\\/改群昵称/"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"id": "/改群头像",
|
|
54
|
+
"match": "/^\\/改群头像/"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "/改头衔",
|
|
58
|
+
"match": "/^\\/改头衔/"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "我要头衔",
|
|
62
|
+
"match": "/^我要头衔/"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "/踢",
|
|
66
|
+
"match": "/^\\/踢/"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "/禁言",
|
|
70
|
+
"match": "/^\\/禁言/"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "/解禁",
|
|
74
|
+
"match": "/^\\/解禁/"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"id": "/设管理",
|
|
78
|
+
"match": "/^\\/设管理/"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": "/全体禁言",
|
|
82
|
+
"match": "/^\\/全体禁言/"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "/全体解禁",
|
|
86
|
+
"match": "/^\\/全体解禁/"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"id": "/删好友",
|
|
90
|
+
"match": "/^\\/删好友/"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "/退群",
|
|
94
|
+
"match": "/^\\/退群/"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"id": "/发好友",
|
|
98
|
+
"match": "/^\\/发好友/"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "/发群聊",
|
|
102
|
+
"match": "/^\\/发群聊/"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"id": "/全部好友",
|
|
106
|
+
"match": "/^\\/全部好友/"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"id": "/全部群聊",
|
|
110
|
+
"match": "/^\\/全部群聊/"
|
|
111
|
+
}
|
|
112
|
+
],
|
|
27
113
|
"help": {
|
|
28
114
|
"title": "管理",
|
|
29
115
|
"description": "Bot管理插件,提供事件通知与管理指令",
|