@koishijs/plugin-adapter-dingtalk 2.0.3 → 2.0.5
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 +1 -1
- package/lib/index.js.map +0 -1
- package/lib/index.mjs +1 -1
- package/lib/index.mjs.map +0 -1
- package/package.json +7 -6
- package/src/index.ts +4 -0
package/lib/index.js
CHANGED
|
@@ -17,7 +17,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
17
17
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
|
|
20
|
-
// koishi/
|
|
20
|
+
// koishi/external/upstream/adapter/dingtalk/src/index.ts
|
|
21
21
|
var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
|
23
23
|
default: () => src_default
|
package/lib/index.js.map
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts"],
|
|
4
|
-
"sourcesContent": ["import { DingtalkBot } from '@satorijs/adapter-dingtalk'\n\nexport default DingtalkBot\nexport * from '@satorijs/adapter-dingtalk'\n"],
|
|
5
4
|
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,8BAA4B;AAG5B,wBAAc,uCAHd;AAEA,IAAO,cAAQ;",
|
|
6
5
|
"names": []
|
|
7
6
|
}
|
package/lib/index.mjs
CHANGED
package/lib/index.mjs.map
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts"],
|
|
4
|
-
"sourcesContent": ["import { DingtalkBot } from '@satorijs/adapter-dingtalk'\n\nexport default DingtalkBot\nexport * from '@satorijs/adapter-dingtalk'\n"],
|
|
5
4
|
"mappings": ";AAAA,SAAS,mBAAmB;AAG5B,cAAc;AADd,IAAO,cAAQ;",
|
|
6
5
|
"names": []
|
|
7
6
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koishijs/plugin-adapter-dingtalk",
|
|
3
3
|
"description": "Dingtalk Adapter for Koishi",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.5",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.mjs",
|
|
7
7
|
"typings": "lib/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
|
-
"lib"
|
|
9
|
+
"lib",
|
|
10
|
+
"src"
|
|
10
11
|
],
|
|
11
12
|
"author": "LittleC <i@ltlec.com>",
|
|
12
13
|
"license": "MIT",
|
|
@@ -38,12 +39,12 @@
|
|
|
38
39
|
}
|
|
39
40
|
},
|
|
40
41
|
"peerDependencies": {
|
|
41
|
-
"koishi": "^4.15.
|
|
42
|
+
"koishi": "^4.15.5"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
|
-
"koishi": "^4.15.
|
|
45
|
+
"koishi": "^4.15.5"
|
|
45
46
|
},
|
|
46
47
|
"dependencies": {
|
|
47
|
-
"@satorijs/adapter-dingtalk": "^2.0.
|
|
48
|
+
"@satorijs/adapter-dingtalk": "^2.0.5"
|
|
48
49
|
}
|
|
49
|
-
}
|
|
50
|
+
}
|
package/src/index.ts
ADDED