@youdotcom-oss/n8n-nodes-youdotcom 0.0.1 → 0.2.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/README.md +22 -9
- package/dist/credentials/YouDotComApi.credentials.js +42 -0
- package/dist/credentials/youdotcom.svg +9 -0
- package/dist/nodes/YouDotCom/YouDotCom.node.js +14149 -0
- package/dist/nodes/YouDotCom/YouDotCom.node.json +45 -0
- package/dist/nodes/YouDotCom/youdotcom.svg +9 -0
- package/package.json +7 -24
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-youdotcom.youDotCom",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["AI", "Utility", "Data & Storage"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"credentialDocumentation": [
|
|
8
|
+
{
|
|
9
|
+
"url": "https://docs.you.com/get-started/quickstart"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"primaryDocumentation": [
|
|
13
|
+
{
|
|
14
|
+
"url": "https://docs.you.com/api-reference/search"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"url": "https://docs.you.com/api-reference/search/contents"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"url": "https://docs.you.com/agents/overview#express-agent"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
"alias": [
|
|
25
|
+
"search",
|
|
26
|
+
"web search",
|
|
27
|
+
"you",
|
|
28
|
+
"youdotcom",
|
|
29
|
+
"news",
|
|
30
|
+
"ai search",
|
|
31
|
+
"contents",
|
|
32
|
+
"extract",
|
|
33
|
+
"scrape",
|
|
34
|
+
"crawl",
|
|
35
|
+
"express",
|
|
36
|
+
"ai agent",
|
|
37
|
+
"ai answer",
|
|
38
|
+
"rag",
|
|
39
|
+
"grounding"
|
|
40
|
+
],
|
|
41
|
+
"subcategories": {
|
|
42
|
+
"AI": ["Agents", "Root Nodes"],
|
|
43
|
+
"Utility": ["Data Transformation"]
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="65" height="65" viewBox="0 0 65 65" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M27.4941 1.22885C30.6309 -0.409588 34.3672 -0.409644 37.5039 1.22885L59.1709 12.5521C62.7539 14.4242 65 18.1405 65 22.1937V30.6312H50.0488C41.4318 30.6311 34.4492 23.629 34.4492 14.9886V7.81869H30.5488V14.9886C30.5488 23.6289 23.5662 30.631 14.9492 30.6312H7.79785V34.5413H14.9492C23.5662 34.5415 30.5488 41.5479 30.5488 50.1839V65.0003C29.4968 64.8058 28.4686 64.4554 27.4941 63.9496L5.8291 52.6204C2.24614 50.7505 3.91808e-05 47.032 0 42.9788V22.1956C8.82192e-05 18.1426 2.2462 14.4263 5.8291 12.5521L27.4941 1.22885ZM64.9971 34.5413V42.9788C64.9971 47.0321 62.751 50.7506 59.168 52.6204L37.5029 63.9496C36.5285 64.4532 35.5002 64.8058 34.4482 65.0003V50.1839H34.4463C34.4463 41.5479 41.429 34.5415 50.0459 34.5413H64.9971Z" fill="url(#paint0_linear_9856_18465)"/>
|
|
3
|
+
<defs>
|
|
4
|
+
<linearGradient id="paint0_linear_9856_18465" x1="65" y1="0" x2="-0.000328063" y2="65" gradientUnits="userSpaceOnUse">
|
|
5
|
+
<stop offset="0.15" stop-color="#A0A4EE"/>
|
|
6
|
+
<stop offset="0.8" stop-color="#596CED"/>
|
|
7
|
+
</linearGradient>
|
|
8
|
+
</defs>
|
|
9
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@youdotcom-oss/n8n-nodes-youdotcom",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "n8n community node for You.com APIs - Search, Contents extraction, and Express AI agent",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -36,13 +36,6 @@
|
|
|
36
36
|
"grounding"
|
|
37
37
|
],
|
|
38
38
|
"type": "module",
|
|
39
|
-
"main": "./dist/main.js",
|
|
40
|
-
"exports": {
|
|
41
|
-
".": {
|
|
42
|
-
"types": "./dist/main.d.ts",
|
|
43
|
-
"default": "./dist/main.js"
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
39
|
"files": [
|
|
47
40
|
"dist/**"
|
|
48
41
|
],
|
|
@@ -50,21 +43,15 @@
|
|
|
50
43
|
"access": "public"
|
|
51
44
|
},
|
|
52
45
|
"scripts": {
|
|
53
|
-
"build": "bun run build:js && bun run build:
|
|
46
|
+
"build": "bun run build:js && bun run build:assets",
|
|
54
47
|
"build:assets": "cp nodes/YouDotCom/youdotcom.svg dist/nodes/YouDotCom/ && cp nodes/YouDotCom/YouDotCom.node.json dist/nodes/YouDotCom/ && cp nodes/YouDotCom/youdotcom.svg dist/credentials/",
|
|
55
|
-
"build:js": "bun build ./
|
|
56
|
-
"build:types": "tsc --project tsconfig.build.json",
|
|
48
|
+
"build:js": "bun build ./nodes/YouDotCom/YouDotCom.node.ts --outfile ./dist/nodes/YouDotCom/YouDotCom.node.js --target=node --external n8n-workflow && bun build ./credentials/YouDotComApi.credentials.ts --outfile ./dist/credentials/YouDotComApi.credentials.js --target=node --external n8n-workflow",
|
|
57
49
|
"check": "bun run check:biome && bun run check:types && bun run check:package",
|
|
58
50
|
"check:biome": "biome check",
|
|
59
51
|
"check:package": "format-package --check",
|
|
60
52
|
"check:types": "tsc --noEmit",
|
|
61
|
-
"check:write": "
|
|
62
|
-
"format": "biome format --write",
|
|
63
|
-
"format:check": "biome format",
|
|
53
|
+
"check:write": "biome check --write && bun run format:package",
|
|
64
54
|
"format:package": "format-package --write",
|
|
65
|
-
"lint": "biome lint",
|
|
66
|
-
"lint:fix": "biome lint --write",
|
|
67
|
-
"lint:n8n": "n8n-node lint",
|
|
68
55
|
"test": "bun test"
|
|
69
56
|
},
|
|
70
57
|
"n8n": {
|
|
@@ -76,16 +63,12 @@
|
|
|
76
63
|
"dist/nodes/YouDotCom/YouDotCom.node.js"
|
|
77
64
|
]
|
|
78
65
|
},
|
|
79
|
-
"types": "./dist/main.d.ts",
|
|
80
|
-
"dependencies": {
|
|
81
|
-
"@n8n/node-cli": "^0.18.0",
|
|
82
|
-
"zod": "^4.3.6"
|
|
83
|
-
},
|
|
84
66
|
"peerDependencies": {
|
|
85
67
|
"n8n-workflow": "^2.6.0"
|
|
86
68
|
},
|
|
87
69
|
"devDependencies": {
|
|
88
|
-
"
|
|
89
|
-
"n8n-workflow": "^2.6.0"
|
|
70
|
+
"@n8n/node-cli": "^0.19.0",
|
|
71
|
+
"n8n-workflow": "^2.6.0",
|
|
72
|
+
"zod": "^4.3.6"
|
|
90
73
|
}
|
|
91
74
|
}
|