@digipair/skill-sendmail 0.32.7 → 0.33.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/package.json +1 -1
- package/schema.en.json +0 -79
package/package.json
CHANGED
package/schema.en.json
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"openapi": "3.0.0",
|
|
3
|
-
"info": {
|
|
4
|
-
"title": "@digipair/skill-sendmail",
|
|
5
|
-
"summary": "Send Mail",
|
|
6
|
-
"description": "Send Mail",
|
|
7
|
-
"version": "0.1.0",
|
|
8
|
-
"x-icon": "📨"
|
|
9
|
-
},
|
|
10
|
-
"paths": {
|
|
11
|
-
"/send": {
|
|
12
|
-
"post": {
|
|
13
|
-
"tags": ["service"],
|
|
14
|
-
"summary": "Send Mail",
|
|
15
|
-
"description": "Send Mail",
|
|
16
|
-
"parameters": [
|
|
17
|
-
{
|
|
18
|
-
"name": "from",
|
|
19
|
-
"summary": "Sender",
|
|
20
|
-
"required": true,
|
|
21
|
-
"description": "Sender of the email",
|
|
22
|
-
"schema": {
|
|
23
|
-
"type": "string"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"name": "to",
|
|
28
|
-
"summary": "Recipients",
|
|
29
|
-
"required": true,
|
|
30
|
-
"description": "Recipients of the email",
|
|
31
|
-
"schema": {
|
|
32
|
-
"type": "string"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "subject",
|
|
37
|
-
"summary": "Subject",
|
|
38
|
-
"required": true,
|
|
39
|
-
"description": "Subject of the email",
|
|
40
|
-
"schema": {
|
|
41
|
-
"type": "string"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"name": "text",
|
|
46
|
-
"summary": "Text",
|
|
47
|
-
"required": true,
|
|
48
|
-
"description": "Text of the email",
|
|
49
|
-
"schema": {
|
|
50
|
-
"type": "string"
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"name": "html",
|
|
55
|
-
"summary": "HTML",
|
|
56
|
-
"required": true,
|
|
57
|
-
"description": "HTML of the email",
|
|
58
|
-
"schema": {
|
|
59
|
-
"type": "string"
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"name": "config",
|
|
64
|
-
"summary": "Configuration",
|
|
65
|
-
"required": false,
|
|
66
|
-
"description": "Mail server configuration",
|
|
67
|
-
"schema": {
|
|
68
|
-
"type": "object"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
],
|
|
72
|
-
"x-events": []
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"components": {
|
|
77
|
-
"schemas": {}
|
|
78
|
-
}
|
|
79
|
-
}
|