@agenticmail/api 0.5.1 → 0.5.3
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 +2 -2
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @agenticmail/api
|
|
2
2
|
|
|
3
|
-
The API server for [AgenticMail](https://github.com/agenticmail/agenticmail) — the part that lets AI agents (and humans) talk to the email system over the network.
|
|
3
|
+
The API server for [AgenticMail](https://github.com/agenticmail/agenticmail) — the part that lets AI agents (and humans) talk to the email and SMS system over the network.
|
|
4
4
|
|
|
5
|
-
This package runs a web server that handles everything: sending email, reading inboxes, managing agents, real-time notifications, inter-agent messaging, spam filtering, outbound security scanning, and gateway configuration. Every feature in AgenticMail is accessible through this API.
|
|
5
|
+
This package runs a web server that handles everything: sending email and SMS, reading inboxes, managing agents, phone number access, real-time notifications, inter-agent messaging, spam filtering, outbound security scanning, and gateway configuration. Every feature in AgenticMail is accessible through this API.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenticmail/api",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "REST API server for AgenticMail",
|
|
3
|
+
"version": "0.5.3",
|
|
4
|
+
"description": "REST API server for AgenticMail \u2014 email and SMS endpoints for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -55,11 +55,14 @@
|
|
|
55
55
|
"bugs": "https://github.com/agenticmail/agenticmail/issues",
|
|
56
56
|
"keywords": [
|
|
57
57
|
"email",
|
|
58
|
+
"sms",
|
|
59
|
+
"phone",
|
|
58
60
|
"ai",
|
|
59
61
|
"agent",
|
|
60
62
|
"api",
|
|
61
63
|
"agenticmail",
|
|
62
|
-
"express"
|
|
64
|
+
"express",
|
|
65
|
+
"google-voice"
|
|
63
66
|
],
|
|
64
67
|
"publishConfig": {
|
|
65
68
|
"access": "public"
|