@graphai/slack_agent 0.0.3 → 0.0.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/README.md +3 -1
- package/lib/slack_agent.js +2 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -42,11 +42,13 @@ const result = await graph.run();
|
|
|
42
42
|
- slackAgent - Slack Agent
|
|
43
43
|
|
|
44
44
|
### Input/Output/Params Schema & samples
|
|
45
|
-
- [slackAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/
|
|
45
|
+
- [slackAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/slackAgent.md)
|
|
46
46
|
|
|
47
47
|
### Input/Params example
|
|
48
48
|
- slackAgent
|
|
49
49
|
|
|
50
|
+
|
|
51
|
+
|
|
50
52
|
```typescript
|
|
51
53
|
{
|
|
52
54
|
"inputs": {
|
package/lib/slack_agent.js
CHANGED
|
@@ -38,6 +38,8 @@ const slackAgentInfo = {
|
|
|
38
38
|
category: ["net"],
|
|
39
39
|
author: "Receptron team",
|
|
40
40
|
repository: "https://github.com/receptron/graphai-agents/tree/main/net/slack_agent",
|
|
41
|
+
// source: "https://github.com/receptron/graphai-agents/tree/main/net/slack_agent/src/slack_agent.ts",
|
|
42
|
+
// package: "@graphai/slack_agent",
|
|
41
43
|
license: "MIT",
|
|
42
44
|
};
|
|
43
45
|
exports.default = slackAgentInfo;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphai/slack_agent",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Slack message agents for GraphAI.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"files": [
|
|
@@ -28,6 +28,6 @@
|
|
|
28
28
|
"homepage": "https://github.com/receptron/graphai-agents#readme",
|
|
29
29
|
"devDependencies": {},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@slack/web-api": "^7.
|
|
31
|
+
"@slack/web-api": "^7.13.0"
|
|
32
32
|
}
|
|
33
33
|
}
|