@digipair/skill-sendmail 0.96.0 → 0.97.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.
- package/package.json +1 -1
- package/schema.fr.json +60 -1
- package/schema.json +60 -1
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -81,7 +81,66 @@
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
],
|
|
84
|
-
"x-events": []
|
|
84
|
+
"x-events": [],
|
|
85
|
+
"responses": {
|
|
86
|
+
"200": {
|
|
87
|
+
"description": "Résultat de l'envoi d'email",
|
|
88
|
+
"content": {
|
|
89
|
+
"application/json": {
|
|
90
|
+
"schema": {
|
|
91
|
+
"type": "object",
|
|
92
|
+
"properties": {
|
|
93
|
+
"messageId": {
|
|
94
|
+
"type": "string",
|
|
95
|
+
"description": "Identifiant unique du message"
|
|
96
|
+
},
|
|
97
|
+
"envelope": {
|
|
98
|
+
"type": "object",
|
|
99
|
+
"properties": {
|
|
100
|
+
"from": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"description": "Expéditeur de l'enveloppe"
|
|
103
|
+
},
|
|
104
|
+
"to": {
|
|
105
|
+
"type": "array",
|
|
106
|
+
"items": {
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
"description": "Destinataires de l'enveloppe"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"accepted": {
|
|
114
|
+
"type": "array",
|
|
115
|
+
"items": {
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
118
|
+
"description": "Destinataires acceptés"
|
|
119
|
+
},
|
|
120
|
+
"rejected": {
|
|
121
|
+
"type": "array",
|
|
122
|
+
"items": {
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
"description": "Destinataires rejetés"
|
|
126
|
+
},
|
|
127
|
+
"pending": {
|
|
128
|
+
"type": "array",
|
|
129
|
+
"items": {
|
|
130
|
+
"type": "string"
|
|
131
|
+
},
|
|
132
|
+
"description": "Destinataires en attente"
|
|
133
|
+
},
|
|
134
|
+
"response": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"description": "Réponse du serveur"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
85
144
|
}
|
|
86
145
|
}
|
|
87
146
|
},
|
package/schema.json
CHANGED
|
@@ -81,7 +81,66 @@
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
],
|
|
84
|
-
"x-events": []
|
|
84
|
+
"x-events": [],
|
|
85
|
+
"responses": {
|
|
86
|
+
"200": {
|
|
87
|
+
"description": "Email sending result",
|
|
88
|
+
"content": {
|
|
89
|
+
"application/json": {
|
|
90
|
+
"schema": {
|
|
91
|
+
"type": "object",
|
|
92
|
+
"properties": {
|
|
93
|
+
"messageId": {
|
|
94
|
+
"type": "string",
|
|
95
|
+
"description": "Unique message identifier"
|
|
96
|
+
},
|
|
97
|
+
"envelope": {
|
|
98
|
+
"type": "object",
|
|
99
|
+
"properties": {
|
|
100
|
+
"from": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"description": "Envelope sender"
|
|
103
|
+
},
|
|
104
|
+
"to": {
|
|
105
|
+
"type": "array",
|
|
106
|
+
"items": {
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
"description": "Envelope recipients"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"accepted": {
|
|
114
|
+
"type": "array",
|
|
115
|
+
"items": {
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
118
|
+
"description": "Accepted recipients"
|
|
119
|
+
},
|
|
120
|
+
"rejected": {
|
|
121
|
+
"type": "array",
|
|
122
|
+
"items": {
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
"description": "Rejected recipients"
|
|
126
|
+
},
|
|
127
|
+
"pending": {
|
|
128
|
+
"type": "array",
|
|
129
|
+
"items": {
|
|
130
|
+
"type": "string"
|
|
131
|
+
},
|
|
132
|
+
"description": "Pending recipients"
|
|
133
|
+
},
|
|
134
|
+
"response": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"description": "Server response"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
85
144
|
}
|
|
86
145
|
}
|
|
87
146
|
},
|