@hostwebhook/node-types 1.54.0 → 1.54.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/dist/registry.js +8 -0
- package/package.json +1 -1
package/dist/registry.js
CHANGED
|
@@ -167,6 +167,14 @@ exports.NODE_REGISTRY = {
|
|
|
167
167
|
group: 'Actions', detailPath: '/dashboard/email-actions', apiPath: '/email-actions',
|
|
168
168
|
stateKey: 'emailActions', allStateKey: 'allEmailActions',
|
|
169
169
|
color: '#f472b6', testable: true,
|
|
170
|
+
/**
|
|
171
|
+
* Sigue siendo herramienta: hay una ruta native + aiEnabled donde el nodo
|
|
172
|
+
* AI genera el correo y este lo manda por Resend —en produccion existe un
|
|
173
|
+
* «using native email as tool»—. Se la quite al partir Gmail dando por
|
|
174
|
+
* hecho que el toolkit era solo suyo, y sin esto el nodo recupera sus
|
|
175
|
+
* handles en modo herramienta: justo el mal enrutado que este flag evita.
|
|
176
|
+
*/
|
|
177
|
+
isToolOnly: (e) => e.aiEnabled === true,
|
|
170
178
|
},
|
|
171
179
|
/**
|
|
172
180
|
* Gmail salio del nodo Email, que ahora manda SOLO por Resend.
|
package/package.json
CHANGED