n8n-nodes-scavio 0.3.0 → 0.3.2
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
|
@@ -41,3 +41,15 @@ The credential test calls `GET /api/v1/usage` (free) so you get instant feedback
|
|
|
41
41
|
- [Scavio docs](https://scavio.dev/docs/introduction)
|
|
42
42
|
- [Scavio dashboard](https://dashboard.scavio.dev)
|
|
43
43
|
- [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## About Scavio
|
|
47
|
+
|
|
48
|
+
[Scavio](https://scavio.dev) is a unified [search API](https://scavio.dev/docs/search-api) built for AI agents — one API key, structured JSON, no scraping or proxies. A real-time [Tavily alternative](https://scavio.dev) and [SerpAPI alternative](https://scavio.dev) with data from:
|
|
49
|
+
|
|
50
|
+
- [Google Search API](https://scavio.dev/docs/search-api) — SERP results, news, images, maps, and knowledge graph
|
|
51
|
+
- [Amazon Product API](https://scavio.dev/docs/amazon-api) and [Walmart API](https://scavio.dev/docs/walmart-api) — product search and details
|
|
52
|
+
- [YouTube API](https://scavio.dev/docs/youtube-api), [TikTok API](https://scavio.dev/docs/tiktok-api), and [Instagram API](https://scavio.dev/docs/instagram-api) — video and social media data
|
|
53
|
+
- [Reddit API](https://scavio.dev/docs/reddit-api) — posts and threaded comments
|
|
54
|
+
|
|
55
|
+
Get a free [API key](https://dashboard.scavio.dev) and explore the [documentation](https://scavio.dev/docs/introduction).
|
|
@@ -15,7 +15,7 @@ exports.googleOperations = [
|
|
|
15
15
|
action: 'Search google',
|
|
16
16
|
description: 'Search Google and return organic results, knowledge graph, news, and more',
|
|
17
17
|
routing: {
|
|
18
|
-
request: { method: 'POST', url: '/api/
|
|
18
|
+
request: { method: 'POST', url: '/api/v2/google' },
|
|
19
19
|
},
|
|
20
20
|
},
|
|
21
21
|
],
|
|
@@ -34,22 +34,6 @@ exports.googleFields = [
|
|
|
34
34
|
routing: { request: { body: { query: '={{ $value }}' } } },
|
|
35
35
|
description: 'The search query',
|
|
36
36
|
},
|
|
37
|
-
{
|
|
38
|
-
displayName: 'Search Type',
|
|
39
|
-
name: 'search_type',
|
|
40
|
-
type: 'options',
|
|
41
|
-
default: 'classic',
|
|
42
|
-
options: [
|
|
43
|
-
{ name: 'Classic', value: 'classic' },
|
|
44
|
-
{ name: 'Images', value: 'images' },
|
|
45
|
-
{ name: 'Lens', value: 'lens' },
|
|
46
|
-
{ name: 'Maps', value: 'maps' },
|
|
47
|
-
{ name: 'News', value: 'news' },
|
|
48
|
-
],
|
|
49
|
-
displayOptions: { show: { resource: ['google'], operation: ['search'] } },
|
|
50
|
-
routing: { request: { body: { search_type: '={{ $value }}' } } },
|
|
51
|
-
description: 'Type of search results to return',
|
|
52
|
-
},
|
|
53
37
|
{
|
|
54
38
|
displayName: 'Additional Options',
|
|
55
39
|
name: 'additionalOptions',
|
|
@@ -60,11 +44,11 @@ exports.googleFields = [
|
|
|
60
44
|
options: [
|
|
61
45
|
{
|
|
62
46
|
displayName: 'Country Code',
|
|
63
|
-
name: '
|
|
47
|
+
name: 'gl',
|
|
64
48
|
type: 'string',
|
|
65
49
|
default: 'us',
|
|
66
50
|
description: 'ISO 3166-1 alpha-2 country code (e.g. us, gb, fr)',
|
|
67
|
-
routing: { request: { body: {
|
|
51
|
+
routing: { request: { body: { gl: '={{ $value }}' } } },
|
|
68
52
|
},
|
|
69
53
|
{
|
|
70
54
|
displayName: 'Device',
|
|
@@ -77,21 +61,30 @@ exports.googleFields = [
|
|
|
77
61
|
],
|
|
78
62
|
routing: { request: { body: { device: '={{ $value }}' } } },
|
|
79
63
|
},
|
|
64
|
+
{
|
|
65
|
+
displayName: 'Google Domain',
|
|
66
|
+
name: 'google_domain',
|
|
67
|
+
type: 'string',
|
|
68
|
+
default: 'google.com',
|
|
69
|
+
description: 'Regional Google domain (e.g. google.com, google.de)',
|
|
70
|
+
routing: { request: { body: { google_domain: '={{ $value }}' } } },
|
|
71
|
+
},
|
|
80
72
|
{
|
|
81
73
|
displayName: 'Language',
|
|
82
|
-
name: '
|
|
74
|
+
name: 'hl',
|
|
83
75
|
type: 'string',
|
|
84
76
|
default: 'en',
|
|
85
|
-
description: '
|
|
86
|
-
routing: { request: { body: {
|
|
77
|
+
description: 'UI language code (e.g. en, fr, de)',
|
|
78
|
+
routing: { request: { body: { hl: '={{ $value }}' } } },
|
|
87
79
|
},
|
|
88
80
|
{
|
|
89
|
-
displayName: '
|
|
90
|
-
name: '
|
|
91
|
-
type: '
|
|
92
|
-
default:
|
|
93
|
-
|
|
94
|
-
|
|
81
|
+
displayName: 'Location',
|
|
82
|
+
name: 'location',
|
|
83
|
+
type: 'string',
|
|
84
|
+
default: '',
|
|
85
|
+
placeholder: 'New York,New York,United States',
|
|
86
|
+
description: 'Canonical location name the search originates from',
|
|
87
|
+
routing: { request: { body: { location: '={{ $value }}' } } },
|
|
95
88
|
},
|
|
96
89
|
{
|
|
97
90
|
displayName: 'Page',
|
|
@@ -100,7 +93,7 @@ exports.googleFields = [
|
|
|
100
93
|
default: 1,
|
|
101
94
|
typeOptions: { minValue: 1, maxValue: 100 },
|
|
102
95
|
description: 'Page number, 1-indexed',
|
|
103
|
-
routing: { request: { body: {
|
|
96
|
+
routing: { request: { body: { start: '={{ ($value - 1) * 10 }}' } } },
|
|
104
97
|
},
|
|
105
98
|
],
|
|
106
99
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GoogleDescription.js","sourceRoot":"","sources":["../../../../nodes/Scavio/descriptions/GoogleDescription.ts"],"names":[],"mappings":";;;AAEa,QAAA,gBAAgB,GAAsB;IAClD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,QAAQ,CAAC,EAAE,EAAE;QAClD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,MAAM,EAAE,eAAe;gBACvB,WAAW,EAAE,2EAA2E;gBACxF,OAAO,EAAE;oBACR,OAAO,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,gBAAgB,EAAE;iBAClD;aACD;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;CACD,CAAC;AAEW,QAAA,YAAY,GAAsB;IAC9C;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,yBAAyB;QACtC,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,QAAQ,CAAC,EAAE,SAAS,EAAE,CAAC,QAAQ,CAAC,EAAE,EAAE;QACzE,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,eAAe,EAAE,EAAE,EAAE;QAC1D,WAAW,EAAE,kBAAkB;KAC/B;IACD;QACC,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"GoogleDescription.js","sourceRoot":"","sources":["../../../../nodes/Scavio/descriptions/GoogleDescription.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-scavio",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "n8n community node for Scavio — real-time search across Google, Amazon, Walmart, YouTube, Reddit, TikTok, and Instagram returning structured JSON.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|