Skip to content

Commit df6897f

Browse files
drobnikjprotoss70
andauthored
feat: marketing updates (#15)
* feat: remove standard mode * fix: formatting fixes * feat: codex key words * feat: update title and description * fix: update logo, final marketing touches from Lukas B. * fix: formating * fix: final touches --------- Co-authored-by: Gokdeniz Kaymak <[email protected]>
1 parent 1d8f206 commit df6897f

File tree

6 files changed

+65
-15
lines changed

6 files changed

+65
-15
lines changed

credentials/ApifyApi.credentials.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export class ApifyApi implements ICredentialType {
55

66
displayName = 'Apify API';
77

8-
documentationUrl = 'https://docs.apify.com/platform/integrations/api#api-token';
8+
documentationUrl = 'https://docs.apify.com/platform/integrations/n8n';
99

1010
properties: INodeProperties[] = [
1111
{

icons/apify-black.svg

Lines changed: 5 additions & 0 deletions
Loading

icons/apify.svg

Lines changed: 0 additions & 5 deletions
This file was deleted.

nodes.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = {
2222
name: 'Apify',
2323
description: 'Apify API',
2424
api: path.resolve(__dirname, 'openapi.yaml'),
25-
icon: './icons/apify.svg',
25+
icon: './icons/apify-black.svg',
2626
tags: [
2727
'Actors/Actor collection',
2828
'Actors/Actor object',

nodes/ApifyContentCrawler/ApifyContentCrawler.node.json

Lines changed: 54 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,59 @@
22
"node": "n8n-nodes-apify-content-crawler",
33
"nodeVersion": "1.0",
44
"codexVersion": "1.0",
5-
"categories": ["Development", "Developer Tools"],
5+
"categories": ["Data & Storage", "Marketing & Content", "Development", "Utility"],
66
"resources": {
7-
"credentialDocumentation": [],
8-
"primaryDocumentation": []
9-
}
7+
"credentialDocumentation": [
8+
{
9+
"url": "https://docs.apify.com/platform/integrations/n8n"
10+
}
11+
],
12+
"primaryDocumentation": [
13+
{
14+
"url": "https://docs.apify.com/"
15+
}
16+
],
17+
"generic": [
18+
{
19+
"label": "Website Content Crawler — Actor Store page",
20+
"icon": "🕷️",
21+
"url": "https://apify.com/apify/website-content-crawler"
22+
},
23+
{
24+
"label": "What is the Apify platform?",
25+
"icon": "ℹ️",
26+
"url": "https://docs.apify.com/platform"
27+
},
28+
{
29+
"label": "Actors - serverless cloud programs",
30+
"icon": "⚙️",
31+
"url": "https://docs.apify.com/platform/actors"
32+
},
33+
{
34+
"label": "Apify API v2 - REST reference",
35+
"icon": "🔌",
36+
"url": "https://docs.apify.com/api/v2"
37+
},
38+
{
39+
"label": "SDKs for JavaScript and Python",
40+
"icon": "🧰",
41+
"url": "https://docs.apify.com/sdk"
42+
}
43+
]
44+
},
45+
"alias": [
46+
"apify",
47+
"wcc",
48+
"website content crawler",
49+
"site crawler",
50+
"scraping",
51+
"text extraction",
52+
"markdown",
53+
"sitemap",
54+
"rag",
55+
"ai agent",
56+
"seo",
57+
"content",
58+
"scraper"
59+
]
1060
}

nodes/ApifyContentCrawler/ApifyContentCrawler.node.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ export const ACTOR_ID = 'aYG0l9s7dbB7j3gbS';
1616

1717
export class ApifyContentCrawler implements INodeType {
1818
description: INodeTypeDescription = {
19-
displayName: 'Apify Scraper for AI Crawling',
19+
displayName: 'Website Content Crawler by Apify',
2020
name: 'apifyContentCrawler',
2121
icon: 'file:apify.svg',
2222
group: ['transform'],
2323
// Mismatched version and defaultVersion as a minor hack to hide "Custom API Call" resource
2424
version: [1],
2525
defaultVersion: 1,
26-
subtitle: 'Run Scraper Module',
26+
subtitle: 'Run Crawler',
2727
description:
28-
'Crawl any website and extract text content to feed AI Workflows or LLM applications.',
28+
'Crawl websites and extract text content to feed AI agents, LLM applications, vector databases, or RAG pipelines.',
2929
defaults: {
30-
name: 'Apify Scraper for AI Crawling',
30+
name: 'Website Content Crawler by Apify',
3131
},
3232
inputs: [NodeConnectionType.Main],
3333
outputs: [NodeConnectionType.Main],

0 commit comments

Comments
 (0)