n8n-nodes-chatads 0.1.3 → 0.1.4
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 +6 -6
- package/dist/nodes/ChatAds/ChatAds.node.js +7 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,9 +44,9 @@ The node accepts the following fields (via parameters or `Extra Fields (JSON)`):
|
|
|
44
44
|
| Field | Type | Description |
|
|
45
45
|
|-------|------|-------------|
|
|
46
46
|
| `message` | string (required) | Message to analyze (1-5000 chars) |
|
|
47
|
-
| `ip` | string |
|
|
48
|
-
| `country` | string |
|
|
49
|
-
| `message_analysis` | string |
|
|
50
|
-
| `fill_priority` | string |
|
|
51
|
-
| `min_intent` | string |
|
|
52
|
-
| `skip_message_analysis` | boolean |
|
|
47
|
+
| `ip` | string | IPv4 address for country detection (max 64 characters) |
|
|
48
|
+
| `country` | string | Country code (e.g., 'US'). If provided, skips IP-based country detection |
|
|
49
|
+
| `message_analysis` | string | Controls keyword extraction method. Use 'fast' to optimize for speed, 'thorough' (default) to optimize for best keyword selection |
|
|
50
|
+
| `fill_priority` | string | Controls affiliate link discovery. Use 'speed' to optimize for speed, 'coverage' (default) to ping multiple sources for the right affiliate link |
|
|
51
|
+
| `min_intent` | string | Minimum purchase intent level required for affiliate resolution. 'any' = no filtering, 'low' (default) = filter garbage, 'medium' = balanced quality/fill, 'high' = high-intent keywords only |
|
|
52
|
+
| `skip_message_analysis` | boolean | Treat exact message as product keyword. When true, goes straight to affiliate link discovery without keyword extraction |
|
|
@@ -220,14 +220,14 @@ class ChatAds {
|
|
|
220
220
|
name: 'ip',
|
|
221
221
|
type: 'string',
|
|
222
222
|
default: '',
|
|
223
|
-
description: '
|
|
223
|
+
description: 'IPv4 address for country detection (max 64 characters)',
|
|
224
224
|
},
|
|
225
225
|
{
|
|
226
226
|
displayName: 'Country',
|
|
227
227
|
name: 'country',
|
|
228
228
|
type: 'string',
|
|
229
229
|
default: '',
|
|
230
|
-
description: '
|
|
230
|
+
description: "Country code (e.g., 'US'). If provided, skips IP-based country detection",
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
displayName: 'Message Analysis',
|
|
@@ -235,11 +235,10 @@ class ChatAds {
|
|
|
235
235
|
type: 'options',
|
|
236
236
|
options: [
|
|
237
237
|
{ name: 'Fast', value: 'fast' },
|
|
238
|
-
{ name: 'Balanced', value: 'balanced' },
|
|
239
238
|
{ name: 'Thorough', value: 'thorough' },
|
|
240
239
|
],
|
|
241
|
-
default: '
|
|
242
|
-
description: '
|
|
240
|
+
default: 'thorough',
|
|
241
|
+
description: 'Controls keyword extraction method. Use fast to optimize for speed, thorough to optimize for best keyword selection.',
|
|
243
242
|
},
|
|
244
243
|
{
|
|
245
244
|
displayName: 'Fill Priority',
|
|
@@ -250,7 +249,7 @@ class ChatAds {
|
|
|
250
249
|
{ name: 'Coverage', value: 'coverage' },
|
|
251
250
|
],
|
|
252
251
|
default: 'coverage',
|
|
253
|
-
description: '
|
|
252
|
+
description: 'Controls affiliate link discovery. Use speed to optimize for speed, coverage to ping multiple sources for the right affiliate link',
|
|
254
253
|
},
|
|
255
254
|
{
|
|
256
255
|
displayName: 'Min Intent',
|
|
@@ -263,14 +262,14 @@ class ChatAds {
|
|
|
263
262
|
{ name: 'High', value: 'high' },
|
|
264
263
|
],
|
|
265
264
|
default: 'low',
|
|
266
|
-
description:
|
|
265
|
+
description: "Minimum purchase intent level required for affiliate resolution. 'any' = no filtering, 'low' = filter garbage, 'medium' = balanced quality/fill, 'high' = high-intent keywords only",
|
|
267
266
|
},
|
|
268
267
|
{
|
|
269
268
|
displayName: 'Skip Message Analysis',
|
|
270
269
|
name: 'skip_message_analysis',
|
|
271
270
|
type: 'boolean',
|
|
272
271
|
default: false,
|
|
273
|
-
description: '
|
|
272
|
+
description: 'Treat exact message as product keyword. When true, goes straight to affiliate link discovery without keyword extraction',
|
|
274
273
|
},
|
|
275
274
|
{
|
|
276
275
|
displayName: 'Extra Fields (JSON)',
|