@corsair-dev/agentmail 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +33 -0
  2. package/package.json +9 -3
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @corsair-dev/agentmail
2
+
3
+ AgentMail plugin for Corsair.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pnpm add @corsair-dev/agentmail
9
+ ```
10
+
11
+ ## Endpoints
12
+
13
+ | Operation | Operation ID | Risk | Description |
14
+ |-----------|--------------|------|-------------|
15
+ | `messages.get` | `agentmail.api.messages.get` | `read` | Retrieve the complete details of an AgentMail message |
16
+ | `messages.list` | `agentmail.api.messages.list` | `read` | List messages from an AgentMail inbox |
17
+ | `messages.send` | `agentmail.api.messages.send` | `write` | Send an email using AgentMail |
18
+
19
+ ## Auth
20
+
21
+ Auth: API key. Corsair prompts your tenant for credentials on first use.
22
+
23
+ ## Webhooks
24
+
25
+ Handles 1 webhook event. See the reference for payloads and `webhookHooks`.
26
+
27
+ ## Reference
28
+
29
+ Full docs, types, and examples: https://docs.corsair.dev/plugins/agentmail
30
+
31
+ ## License
32
+
33
+ Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corsair-dev/agentmail",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "AgentMail plugin for Corsair",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,18 +25,24 @@
25
25
  "tsup": "^8.0.1",
26
26
  "typescript": "^5.9.3",
27
27
  "zod": "4.1.13",
28
- "corsair": "0.1.110"
28
+ "corsair": "0.1.129"
29
29
  },
30
30
  "keywords": [
31
31
  "corsair",
32
32
  "agentmail",
33
33
  "plugin"
34
34
  ],
35
- "author": "",
35
+ "author": "Corsair (https://corsair.dev)",
36
36
  "license": "Apache-2.0",
37
37
  "files": [
38
38
  "dist"
39
39
  ],
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/corsairdev/corsair.git",
43
+ "directory": "packages/agentmail"
44
+ },
45
+ "homepage": "https://docs.corsair.dev/plugins/agentmail",
40
46
  "scripts": {
41
47
  "build": "rm -rf dist && tsc --build --force && tsup",
42
48
  "typecheck": "tsc --noEmit",