@hostwebhook/node-types 1.81.0 → 1.83.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/dist/credentials.d.ts +0 -2
- package/dist/credentials.js +2 -1
- package/dist/esm/credentials.d.ts +0 -2
- package/dist/esm/credentials.js +2 -1
- package/dist/esm/gmail-operations.d.ts +12 -0
- package/dist/esm/gmail-operations.js +29 -7
- package/dist/gmail-operations.d.ts +12 -0
- package/dist/gmail-operations.js +29 -7
- package/package.json +1 -1
package/dist/credentials.d.ts
CHANGED
package/dist/credentials.js
CHANGED
|
@@ -60,7 +60,8 @@ exports.CREDENTIAL_TYPES = [
|
|
|
60
60
|
{ type: 'apify' },
|
|
61
61
|
{ type: 'http_auth' },
|
|
62
62
|
{ type: 'aws_s3' },
|
|
63
|
-
|
|
63
|
+
/* [2026-09-14] `memory_contextwindow` se retiró: el backend de memoria
|
|
64
|
+
ContextWindow del AI Node dejó de soportarse (el dueño lo pidió). */
|
|
64
65
|
{ type: 'memory_mongodb', ssrfValidated: true, tunnelable: true },
|
|
65
66
|
{ type: 'mcp_server' },
|
|
66
67
|
{ type: 'voice_agent' },
|
package/dist/esm/credentials.js
CHANGED
|
@@ -55,7 +55,8 @@ export const CREDENTIAL_TYPES = [
|
|
|
55
55
|
{ type: 'apify' },
|
|
56
56
|
{ type: 'http_auth' },
|
|
57
57
|
{ type: 'aws_s3' },
|
|
58
|
-
|
|
58
|
+
/* [2026-09-14] `memory_contextwindow` se retiró: el backend de memoria
|
|
59
|
+
ContextWindow del AI Node dejó de soportarse (el dueño lo pidió). */
|
|
59
60
|
{ type: 'memory_mongodb', ssrfValidated: true, tunnelable: true },
|
|
60
61
|
{ type: 'mcp_server' },
|
|
61
62
|
{ type: 'voice_agent' },
|
|
@@ -80,6 +80,12 @@ export interface GmailParamSpec {
|
|
|
80
80
|
value: string;
|
|
81
81
|
label: string;
|
|
82
82
|
}>;
|
|
83
|
+
/**
|
|
84
|
+
* Se pinta en la pestaña «Advanced» y no en «Config» [2026-09-14]. Igual
|
|
85
|
+
* que Drive, GitHub o Bucket. Lo que va ahí: las cabeceras del hilo
|
|
86
|
+
* (threadId, inReplyTo, references), CC/BCC, y los adjuntos.
|
|
87
|
+
*/
|
|
88
|
+
advanced?: boolean;
|
|
83
89
|
}
|
|
84
90
|
export interface GmailOperationSpec {
|
|
85
91
|
/** Etiqueta del desplegable y de la página. */
|
|
@@ -108,6 +114,12 @@ export interface GmailOperationSpec {
|
|
|
108
114
|
* renderizador se invocaba tras `operation !== "send"`— y la ruta determinista no
|
|
109
115
|
* las sabe mandar: `emailSender.send` recibe to/subject/html y nada más. Darles
|
|
110
116
|
* soporte es una función nueva, no una mudanza.
|
|
117
|
+
*
|
|
118
|
+
* `attachments` [2026-09-14]: las cuatro operaciones que arman un mensaje
|
|
119
|
+
* (send, sendAndWaitForResponse, createDraft, replyToThread) adjuntan lo que
|
|
120
|
+
* el flujo ya tiene. Es una RUTA del payload, como el «File from payload» de
|
|
121
|
+
* Jira: la api saca las referencias `_file`, las resuelve por el registro con
|
|
122
|
+
* el `orgId` y arma el `multipart/mixed`. No hay subida a mano. Va en Advanced.
|
|
111
123
|
*/
|
|
112
124
|
export declare const GMAIL_OPERATION_SPECS: Record<GmailOperation, GmailOperationSpec>;
|
|
113
125
|
export declare const GMAIL_DROPDOWN_OPERATIONS: readonly GmailOperation[];
|
|
@@ -74,6 +74,12 @@ export const GMAIL_OPERATION_GROUPS = ['Messages', 'Drafts', 'Labels', 'Threads'
|
|
|
74
74
|
* renderizador se invocaba tras `operation !== "send"`— y la ruta determinista no
|
|
75
75
|
* las sabe mandar: `emailSender.send` recibe to/subject/html y nada más. Darles
|
|
76
76
|
* soporte es una función nueva, no una mudanza.
|
|
77
|
+
*
|
|
78
|
+
* `attachments` [2026-09-14]: las cuatro operaciones que arman un mensaje
|
|
79
|
+
* (send, sendAndWaitForResponse, createDraft, replyToThread) adjuntan lo que
|
|
80
|
+
* el flujo ya tiene. Es una RUTA del payload, como el «File from payload» de
|
|
81
|
+
* Jira: la api saca las referencias `_file`, las resuelve por el registro con
|
|
82
|
+
* el `orgId` y arma el `multipart/mixed`. No hay subida a mano. Va en Advanced.
|
|
77
83
|
*/
|
|
78
84
|
export const GMAIL_OPERATION_SPECS = {
|
|
79
85
|
send: {
|
|
@@ -85,6 +91,7 @@ export const GMAIL_OPERATION_SPECS = {
|
|
|
85
91
|
{ name: 'to', label: 'To', type: 'emails', required: true, placeholder: '{{payload.email}}' },
|
|
86
92
|
{ name: 'subject', label: 'Subject', type: 'string', required: true, placeholder: 'Order #{{payload.id}}' },
|
|
87
93
|
{ name: 'body', label: 'Body (HTML)', type: 'htmlTemplate', required: true, placeholder: '<p>Hi {{payload.name}}...</p>', language: 'html' },
|
|
94
|
+
{ name: 'attachments', label: 'Files from the payload', type: 'string', advanced: true, placeholder: '{{payload._files}}', description: 'A file reference from the payload — what a webhook uploaded ({{payload._files}}), what a Drive list downloaded ({{payload.files}}), or one file ({{payload._file}}). Up to 5 files, 25 MB in total.' },
|
|
88
95
|
],
|
|
89
96
|
},
|
|
90
97
|
sendAndWaitForResponse: {
|
|
@@ -103,6 +110,7 @@ export const GMAIL_OPERATION_SPECS = {
|
|
|
103
110
|
{ name: 'disapproveCommentLabel', label: 'Comment form label', type: 'string', placeholder: 'Why are you disapproving?', description: "Heading shown above the textarea. Only used when 'Require comment' is on." },
|
|
104
111
|
{ name: 'disapproveCommentPlaceholder', label: 'Comment placeholder', type: 'string', placeholder: 'Tell the sender why — this helps them improve the next attempt.', description: "Hint shown inside the empty textarea. Only used when 'Require comment' is on." },
|
|
105
112
|
{ name: 'timeoutMinutes', label: 'Timeout (minutes)', type: 'number', placeholder: '1440', description: 'Auto-resolve as approved=false after this many minutes. Default 1440 (24h).' },
|
|
113
|
+
{ name: 'attachments', label: 'Files from the payload', type: 'string', advanced: true, placeholder: '{{payload._files}}', description: 'A file reference from the payload — what a webhook uploaded ({{payload._files}}), what a Drive list downloaded ({{payload.files}}), or one file ({{payload._file}}). Up to 5 files, 25 MB in total.' },
|
|
106
114
|
],
|
|
107
115
|
},
|
|
108
116
|
createDraft: {
|
|
@@ -114,11 +122,12 @@ export const GMAIL_OPERATION_SPECS = {
|
|
|
114
122
|
{ name: 'to', label: 'To', type: 'emails', required: true, placeholder: '{{payload.email}}', description: 'Recipients the draft will be addressed to' },
|
|
115
123
|
{ name: 'subject', label: 'Subject', type: 'string', placeholder: 'Draft: {{payload.topic}}' },
|
|
116
124
|
{ name: 'body', label: 'Body (HTML)', type: 'htmlTemplate', language: 'html' },
|
|
117
|
-
{ name: 'cc', label: 'CC', type: 'emails' },
|
|
118
|
-
{ name: 'bcc', label: 'BCC', type: 'emails' },
|
|
119
|
-
{ name: '
|
|
120
|
-
{ name: '
|
|
121
|
-
{ name: '
|
|
125
|
+
{ name: 'cc', label: 'CC', type: 'emails', advanced: true },
|
|
126
|
+
{ name: 'bcc', label: 'BCC', type: 'emails', advanced: true },
|
|
127
|
+
{ name: 'attachments', label: 'Files from the payload', type: 'string', advanced: true, placeholder: '{{payload._files}}', description: 'A file reference from the payload — what a webhook uploaded ({{payload._files}}), what a Drive list downloaded ({{payload.files}}), or one file ({{payload._file}}). Up to 5 files, 25 MB in total.' },
|
|
128
|
+
{ name: 'threadId', label: 'Thread ID', type: 'string', advanced: true, description: 'Optional — attach draft to an existing thread' },
|
|
129
|
+
{ name: 'inReplyTo', label: 'In-Reply-To', type: 'string', advanced: true, description: 'Optional Message-ID header' },
|
|
130
|
+
{ name: 'references', label: 'References', type: 'string', advanced: true, description: 'Optional References chain' },
|
|
122
131
|
],
|
|
123
132
|
},
|
|
124
133
|
sendDraft: {
|
|
@@ -139,8 +148,9 @@ export const GMAIL_OPERATION_SPECS = {
|
|
|
139
148
|
{ name: 'body', label: 'Body (HTML)', type: 'htmlTemplate', required: true, language: 'html' },
|
|
140
149
|
{ name: 'subject', label: 'Subject', type: 'string', description: 'Optional — defaults to "Re: <original>"' },
|
|
141
150
|
{ name: 'to', label: 'To', type: 'emails', description: 'Optional — defaults to last sender in thread' },
|
|
142
|
-
{ name: 'cc', label: 'CC', type: 'emails' },
|
|
143
|
-
{ name: 'bcc', label: 'BCC', type: 'emails' },
|
|
151
|
+
{ name: 'cc', label: 'CC', type: 'emails', advanced: true },
|
|
152
|
+
{ name: 'bcc', label: 'BCC', type: 'emails', advanced: true },
|
|
153
|
+
{ name: 'attachments', label: 'Files from the payload', type: 'string', advanced: true, placeholder: '{{payload._files}}', description: 'A file reference from the payload — what a webhook uploaded ({{payload._files}}), what a Drive list downloaded ({{payload.files}}), or one file ({{payload._file}}). Up to 5 files, 25 MB in total.' },
|
|
144
154
|
],
|
|
145
155
|
},
|
|
146
156
|
getMessage: {
|
|
@@ -278,6 +288,14 @@ export const GMAIL_OPERATION_SPECS = {
|
|
|
278
288
|
export const GMAIL_DROPDOWN_OPERATIONS = GMAIL_OPERATIONS.filter((op) => GMAIL_OPERATION_SPECS[op].group !== undefined);
|
|
279
289
|
export const GMAIL_TOOLKIT_OPERATIONS = GMAIL_OPERATIONS.filter((op) => op !== 'sendAndWaitForResponse');
|
|
280
290
|
const p = (name, description, required = true, type = 'string') => ({ name, type, description, required });
|
|
291
|
+
/**
|
|
292
|
+
* Los adjuntos, para la IA [2026-09-14]: el modelo no sube ficheros, pasa
|
|
293
|
+
* las referencias que ya están en el payload (los objetos `_file`) tal cual,
|
|
294
|
+
* como texto JSON. La api las resuelve por el registro de la organización.
|
|
295
|
+
*/
|
|
296
|
+
const ADJUNTOS = p('attachments', 'Optional. Files to attach, taken from the payload: pass the `_file` reference object(s) ' +
|
|
297
|
+
'exactly as they appear (a single `_file`, or the `_files` / `files` array), as a JSON ' +
|
|
298
|
+
'string. Never invent one. Up to 5 files, 25 MB in total.', false);
|
|
281
299
|
export const GMAIL_TOOLKIT_SPECS = [
|
|
282
300
|
{
|
|
283
301
|
operation: 'send',
|
|
@@ -297,6 +315,7 @@ export const GMAIL_TOOLKIT_SPECS = [
|
|
|
297
315
|
p('body', 'HTML-formatted email body.'),
|
|
298
316
|
p('cc', 'Optional CC recipients.', false),
|
|
299
317
|
p('bcc', 'Optional BCC recipients.', false),
|
|
318
|
+
ADJUNTOS,
|
|
300
319
|
],
|
|
301
320
|
},
|
|
302
321
|
{
|
|
@@ -319,6 +338,7 @@ export const GMAIL_TOOLKIT_SPECS = [
|
|
|
319
338
|
p('threadId', 'Optional — attach draft to an existing thread.', false),
|
|
320
339
|
p('inReplyTo', 'Optional Message-ID header to reply to.', false),
|
|
321
340
|
p('references', 'Optional References header chain.', false),
|
|
341
|
+
ADJUNTOS,
|
|
322
342
|
],
|
|
323
343
|
},
|
|
324
344
|
{
|
|
@@ -355,6 +375,7 @@ export const GMAIL_TOOLKIT_SPECS = [
|
|
|
355
375
|
p('subject', 'Optional — defaults to "Re: <original>".', false),
|
|
356
376
|
p('cc', 'Optional CC recipients.', false),
|
|
357
377
|
p('bcc', 'Optional BCC recipients.', false),
|
|
378
|
+
ADJUNTOS,
|
|
358
379
|
],
|
|
359
380
|
},
|
|
360
381
|
{
|
|
@@ -510,6 +531,7 @@ export const GMAIL_SEND_AND_WAIT_TOOL_SPEC = {
|
|
|
510
531
|
p('disapproveLabel', "Optional. Disapprove button label. Default: 'Disapprove'.", false),
|
|
511
532
|
p('includeDisapprove', 'Optional. Include the Disapprove button. Default: true. Set to false for approve-only confirmations.', false),
|
|
512
533
|
p('timeoutMinutes', 'Optional. Minutes to wait before auto-resolving with approved=false. Default 1440 (24h).', false),
|
|
534
|
+
ADJUNTOS,
|
|
513
535
|
],
|
|
514
536
|
};
|
|
515
537
|
/** Todo lo que el nodo sabe ejecutar, se ofrezca o no como herramienta. */
|
|
@@ -80,6 +80,12 @@ export interface GmailParamSpec {
|
|
|
80
80
|
value: string;
|
|
81
81
|
label: string;
|
|
82
82
|
}>;
|
|
83
|
+
/**
|
|
84
|
+
* Se pinta en la pestaña «Advanced» y no en «Config» [2026-09-14]. Igual
|
|
85
|
+
* que Drive, GitHub o Bucket. Lo que va ahí: las cabeceras del hilo
|
|
86
|
+
* (threadId, inReplyTo, references), CC/BCC, y los adjuntos.
|
|
87
|
+
*/
|
|
88
|
+
advanced?: boolean;
|
|
83
89
|
}
|
|
84
90
|
export interface GmailOperationSpec {
|
|
85
91
|
/** Etiqueta del desplegable y de la página. */
|
|
@@ -108,6 +114,12 @@ export interface GmailOperationSpec {
|
|
|
108
114
|
* renderizador se invocaba tras `operation !== "send"`— y la ruta determinista no
|
|
109
115
|
* las sabe mandar: `emailSender.send` recibe to/subject/html y nada más. Darles
|
|
110
116
|
* soporte es una función nueva, no una mudanza.
|
|
117
|
+
*
|
|
118
|
+
* `attachments` [2026-09-14]: las cuatro operaciones que arman un mensaje
|
|
119
|
+
* (send, sendAndWaitForResponse, createDraft, replyToThread) adjuntan lo que
|
|
120
|
+
* el flujo ya tiene. Es una RUTA del payload, como el «File from payload» de
|
|
121
|
+
* Jira: la api saca las referencias `_file`, las resuelve por el registro con
|
|
122
|
+
* el `orgId` y arma el `multipart/mixed`. No hay subida a mano. Va en Advanced.
|
|
111
123
|
*/
|
|
112
124
|
export declare const GMAIL_OPERATION_SPECS: Record<GmailOperation, GmailOperationSpec>;
|
|
113
125
|
export declare const GMAIL_DROPDOWN_OPERATIONS: readonly GmailOperation[];
|
package/dist/gmail-operations.js
CHANGED
|
@@ -79,6 +79,12 @@ exports.GMAIL_OPERATION_GROUPS = ['Messages', 'Drafts', 'Labels', 'Threads'];
|
|
|
79
79
|
* renderizador se invocaba tras `operation !== "send"`— y la ruta determinista no
|
|
80
80
|
* las sabe mandar: `emailSender.send` recibe to/subject/html y nada más. Darles
|
|
81
81
|
* soporte es una función nueva, no una mudanza.
|
|
82
|
+
*
|
|
83
|
+
* `attachments` [2026-09-14]: las cuatro operaciones que arman un mensaje
|
|
84
|
+
* (send, sendAndWaitForResponse, createDraft, replyToThread) adjuntan lo que
|
|
85
|
+
* el flujo ya tiene. Es una RUTA del payload, como el «File from payload» de
|
|
86
|
+
* Jira: la api saca las referencias `_file`, las resuelve por el registro con
|
|
87
|
+
* el `orgId` y arma el `multipart/mixed`. No hay subida a mano. Va en Advanced.
|
|
82
88
|
*/
|
|
83
89
|
exports.GMAIL_OPERATION_SPECS = {
|
|
84
90
|
send: {
|
|
@@ -90,6 +96,7 @@ exports.GMAIL_OPERATION_SPECS = {
|
|
|
90
96
|
{ name: 'to', label: 'To', type: 'emails', required: true, placeholder: '{{payload.email}}' },
|
|
91
97
|
{ name: 'subject', label: 'Subject', type: 'string', required: true, placeholder: 'Order #{{payload.id}}' },
|
|
92
98
|
{ name: 'body', label: 'Body (HTML)', type: 'htmlTemplate', required: true, placeholder: '<p>Hi {{payload.name}}...</p>', language: 'html' },
|
|
99
|
+
{ name: 'attachments', label: 'Files from the payload', type: 'string', advanced: true, placeholder: '{{payload._files}}', description: 'A file reference from the payload — what a webhook uploaded ({{payload._files}}), what a Drive list downloaded ({{payload.files}}), or one file ({{payload._file}}). Up to 5 files, 25 MB in total.' },
|
|
93
100
|
],
|
|
94
101
|
},
|
|
95
102
|
sendAndWaitForResponse: {
|
|
@@ -108,6 +115,7 @@ exports.GMAIL_OPERATION_SPECS = {
|
|
|
108
115
|
{ name: 'disapproveCommentLabel', label: 'Comment form label', type: 'string', placeholder: 'Why are you disapproving?', description: "Heading shown above the textarea. Only used when 'Require comment' is on." },
|
|
109
116
|
{ name: 'disapproveCommentPlaceholder', label: 'Comment placeholder', type: 'string', placeholder: 'Tell the sender why — this helps them improve the next attempt.', description: "Hint shown inside the empty textarea. Only used when 'Require comment' is on." },
|
|
110
117
|
{ name: 'timeoutMinutes', label: 'Timeout (minutes)', type: 'number', placeholder: '1440', description: 'Auto-resolve as approved=false after this many minutes. Default 1440 (24h).' },
|
|
118
|
+
{ name: 'attachments', label: 'Files from the payload', type: 'string', advanced: true, placeholder: '{{payload._files}}', description: 'A file reference from the payload — what a webhook uploaded ({{payload._files}}), what a Drive list downloaded ({{payload.files}}), or one file ({{payload._file}}). Up to 5 files, 25 MB in total.' },
|
|
111
119
|
],
|
|
112
120
|
},
|
|
113
121
|
createDraft: {
|
|
@@ -119,11 +127,12 @@ exports.GMAIL_OPERATION_SPECS = {
|
|
|
119
127
|
{ name: 'to', label: 'To', type: 'emails', required: true, placeholder: '{{payload.email}}', description: 'Recipients the draft will be addressed to' },
|
|
120
128
|
{ name: 'subject', label: 'Subject', type: 'string', placeholder: 'Draft: {{payload.topic}}' },
|
|
121
129
|
{ name: 'body', label: 'Body (HTML)', type: 'htmlTemplate', language: 'html' },
|
|
122
|
-
{ name: 'cc', label: 'CC', type: 'emails' },
|
|
123
|
-
{ name: 'bcc', label: 'BCC', type: 'emails' },
|
|
124
|
-
{ name: '
|
|
125
|
-
{ name: '
|
|
126
|
-
{ name: '
|
|
130
|
+
{ name: 'cc', label: 'CC', type: 'emails', advanced: true },
|
|
131
|
+
{ name: 'bcc', label: 'BCC', type: 'emails', advanced: true },
|
|
132
|
+
{ name: 'attachments', label: 'Files from the payload', type: 'string', advanced: true, placeholder: '{{payload._files}}', description: 'A file reference from the payload — what a webhook uploaded ({{payload._files}}), what a Drive list downloaded ({{payload.files}}), or one file ({{payload._file}}). Up to 5 files, 25 MB in total.' },
|
|
133
|
+
{ name: 'threadId', label: 'Thread ID', type: 'string', advanced: true, description: 'Optional — attach draft to an existing thread' },
|
|
134
|
+
{ name: 'inReplyTo', label: 'In-Reply-To', type: 'string', advanced: true, description: 'Optional Message-ID header' },
|
|
135
|
+
{ name: 'references', label: 'References', type: 'string', advanced: true, description: 'Optional References chain' },
|
|
127
136
|
],
|
|
128
137
|
},
|
|
129
138
|
sendDraft: {
|
|
@@ -144,8 +153,9 @@ exports.GMAIL_OPERATION_SPECS = {
|
|
|
144
153
|
{ name: 'body', label: 'Body (HTML)', type: 'htmlTemplate', required: true, language: 'html' },
|
|
145
154
|
{ name: 'subject', label: 'Subject', type: 'string', description: 'Optional — defaults to "Re: <original>"' },
|
|
146
155
|
{ name: 'to', label: 'To', type: 'emails', description: 'Optional — defaults to last sender in thread' },
|
|
147
|
-
{ name: 'cc', label: 'CC', type: 'emails' },
|
|
148
|
-
{ name: 'bcc', label: 'BCC', type: 'emails' },
|
|
156
|
+
{ name: 'cc', label: 'CC', type: 'emails', advanced: true },
|
|
157
|
+
{ name: 'bcc', label: 'BCC', type: 'emails', advanced: true },
|
|
158
|
+
{ name: 'attachments', label: 'Files from the payload', type: 'string', advanced: true, placeholder: '{{payload._files}}', description: 'A file reference from the payload — what a webhook uploaded ({{payload._files}}), what a Drive list downloaded ({{payload.files}}), or one file ({{payload._file}}). Up to 5 files, 25 MB in total.' },
|
|
149
159
|
],
|
|
150
160
|
},
|
|
151
161
|
getMessage: {
|
|
@@ -283,6 +293,14 @@ exports.GMAIL_OPERATION_SPECS = {
|
|
|
283
293
|
exports.GMAIL_DROPDOWN_OPERATIONS = exports.GMAIL_OPERATIONS.filter((op) => exports.GMAIL_OPERATION_SPECS[op].group !== undefined);
|
|
284
294
|
exports.GMAIL_TOOLKIT_OPERATIONS = exports.GMAIL_OPERATIONS.filter((op) => op !== 'sendAndWaitForResponse');
|
|
285
295
|
const p = (name, description, required = true, type = 'string') => ({ name, type, description, required });
|
|
296
|
+
/**
|
|
297
|
+
* Los adjuntos, para la IA [2026-09-14]: el modelo no sube ficheros, pasa
|
|
298
|
+
* las referencias que ya están en el payload (los objetos `_file`) tal cual,
|
|
299
|
+
* como texto JSON. La api las resuelve por el registro de la organización.
|
|
300
|
+
*/
|
|
301
|
+
const ADJUNTOS = p('attachments', 'Optional. Files to attach, taken from the payload: pass the `_file` reference object(s) ' +
|
|
302
|
+
'exactly as they appear (a single `_file`, or the `_files` / `files` array), as a JSON ' +
|
|
303
|
+
'string. Never invent one. Up to 5 files, 25 MB in total.', false);
|
|
286
304
|
exports.GMAIL_TOOLKIT_SPECS = [
|
|
287
305
|
{
|
|
288
306
|
operation: 'send',
|
|
@@ -302,6 +320,7 @@ exports.GMAIL_TOOLKIT_SPECS = [
|
|
|
302
320
|
p('body', 'HTML-formatted email body.'),
|
|
303
321
|
p('cc', 'Optional CC recipients.', false),
|
|
304
322
|
p('bcc', 'Optional BCC recipients.', false),
|
|
323
|
+
ADJUNTOS,
|
|
305
324
|
],
|
|
306
325
|
},
|
|
307
326
|
{
|
|
@@ -324,6 +343,7 @@ exports.GMAIL_TOOLKIT_SPECS = [
|
|
|
324
343
|
p('threadId', 'Optional — attach draft to an existing thread.', false),
|
|
325
344
|
p('inReplyTo', 'Optional Message-ID header to reply to.', false),
|
|
326
345
|
p('references', 'Optional References header chain.', false),
|
|
346
|
+
ADJUNTOS,
|
|
327
347
|
],
|
|
328
348
|
},
|
|
329
349
|
{
|
|
@@ -360,6 +380,7 @@ exports.GMAIL_TOOLKIT_SPECS = [
|
|
|
360
380
|
p('subject', 'Optional — defaults to "Re: <original>".', false),
|
|
361
381
|
p('cc', 'Optional CC recipients.', false),
|
|
362
382
|
p('bcc', 'Optional BCC recipients.', false),
|
|
383
|
+
ADJUNTOS,
|
|
363
384
|
],
|
|
364
385
|
},
|
|
365
386
|
{
|
|
@@ -515,6 +536,7 @@ exports.GMAIL_SEND_AND_WAIT_TOOL_SPEC = {
|
|
|
515
536
|
p('disapproveLabel', "Optional. Disapprove button label. Default: 'Disapprove'.", false),
|
|
516
537
|
p('includeDisapprove', 'Optional. Include the Disapprove button. Default: true. Set to false for approve-only confirmations.', false),
|
|
517
538
|
p('timeoutMinutes', 'Optional. Minutes to wait before auto-resolving with approved=false. Default 1440 (24h).', false),
|
|
539
|
+
ADJUNTOS,
|
|
518
540
|
],
|
|
519
541
|
};
|
|
520
542
|
/** Todo lo que el nodo sabe ejecutar, se ofrezca o no como herramienta. */
|
package/package.json
CHANGED