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 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 | Client IP address for geo-detection |
48
- | `country` | string | ISO 3166-1 alpha-2 country code for geo-targeting |
49
- | `message_analysis` | string | Extraction method: `"fast"`, `"balanced"` (default), `"thorough"` |
50
- | `fill_priority` | string | URL resolution: `"speed"` or `"coverage"` (default) |
51
- | `min_intent` | string | Intent filter: `"any"`, `"low"` (default), `"medium"`, `"high"` |
52
- | `skip_message_analysis` | boolean | Skip NLP/LLM and use message directly as search query |
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: 'Client IP address for geo-detection',
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: 'ISO 3166-1 alpha-2 country code for geo-targeting',
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: 'balanced',
242
- description: 'Keyword extraction method. Fast uses NLP only (~50ms), others use LLM.',
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: 'URL resolution fallback strategy',
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: 'Minimum purchase intent level for affiliate resolution',
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: 'Skip NLP/LLM extraction and use message directly as search query. Overrides message_analysis, min_intent, and fill_priority.',
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)',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-chatads",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "n8n wrapper around the ChatAds FastAPI backend (affiliate/chatads_backend.py)",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",