@koishijs/plugin-adapter-dingtalk 1.0.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/lib/index.d.ts +3 -0
- package/lib/index.js +33 -0
- package/lib/index.js.map +7 -0
- package/lib/index.mjs +8 -0
- package/lib/index.mjs.map +7 -0
- package/package.json +49 -0
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// koishi/plugins/adapter/dingtalk/src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
default: () => src_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(src_exports);
|
|
26
|
+
var import_adapter_dingtalk = require("@satorijs/adapter-dingtalk");
|
|
27
|
+
__reExport(src_exports, require("@satorijs/adapter-dingtalk"), module.exports);
|
|
28
|
+
var src_default = import_adapter_dingtalk.DingtalkBot;
|
|
29
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
30
|
+
0 && (module.exports = {
|
|
31
|
+
...require("@satorijs/adapter-dingtalk")
|
|
32
|
+
});
|
|
33
|
+
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 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
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,8BAA4B;AAG5B,wBAAc,uCAHd;AAEA,IAAO,cAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/lib/index.mjs
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 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
|
+
"mappings": ";AAAA,SAAS,mBAAmB;AAG5B,cAAc;AADd,IAAO,cAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@koishijs/plugin-adapter-dingtalk",
|
|
3
|
+
"description": "Dingtalk Adapter for Koishi",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"module": "lib/index.mjs",
|
|
7
|
+
"typings": "lib/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"lib"
|
|
10
|
+
],
|
|
11
|
+
"author": "LittleC <i@ltlec.com>",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/satorijs/satori.git",
|
|
16
|
+
"directory": "adapters/dingtalk"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/satorijs/satori/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://koishi.chat/plugins/adapter/dingtalk.html",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"bot",
|
|
24
|
+
"dingding",
|
|
25
|
+
"dingtalk",
|
|
26
|
+
"chatbot",
|
|
27
|
+
"koishi"
|
|
28
|
+
],
|
|
29
|
+
"koishi": {
|
|
30
|
+
"description": {
|
|
31
|
+
"en": "Dingtalk Adapter",
|
|
32
|
+
"zh": "钉钉适配器"
|
|
33
|
+
},
|
|
34
|
+
"service": {
|
|
35
|
+
"implements": [
|
|
36
|
+
"adapter"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"koishi": "^4.13.7"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"koishi": "^4.13.7"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@satorijs/adapter-dingtalk": "^1.0.0"
|
|
48
|
+
}
|
|
49
|
+
}
|