@seranking/n8n-nodes-seranking 2.0.1 → 2.0.3
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# n8n-nodes-seranking
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
n8n community node for [SE Ranking](https://seranking.com/)'s unified API — 190 operations across 21 resources: AI Search, Backlinks, Domain Analysis, Keyword Research, SERP Classic, Website Audits, Project Management, Competitors, Backlink Checker, Sub-Accounts, and more.
|
|
4
4
|
|
|
5
5
|
SE Ranking is a comprehensive SEO platform providing keyword research, competitor analysis, website audits, backlink monitoring, and AI search visibility tracking.
|
|
6
6
|
|
|
@@ -1168,6 +1168,7 @@ n8n-nodes-seranking/
|
|
|
1168
1168
|
│ │ │ ├── ProjectManagementOperations.ts # Project Management operations
|
|
1169
1169
|
│ │ │ ├── ProjectGroupsOperations.ts # Project Groups operations
|
|
1170
1170
|
│ │ │ ├── AiResultTrackerOperations.ts # AI Result Tracker operations
|
|
1171
|
+
│ │ │ ├── AirtGroupsOperations.ts # AIRT Groups (prompt groups) operations
|
|
1171
1172
|
│ │ │ ├── KeywordGroupsOperations.ts # Keyword Groups operations
|
|
1172
1173
|
│ │ │ ├── CompetitorsOperations.ts # Competitors operations
|
|
1173
1174
|
│ │ │ ├── UrlTagsOperations.ts # URL Tags operations
|
|
@@ -1183,6 +1184,7 @@ n8n-nodes-seranking/
|
|
|
1183
1184
|
│ │ ├── ProjectManagementDescription.ts # Project Management UI definitions
|
|
1184
1185
|
│ │ ├── ProjectGroupsDescription.ts # Project Groups UI definitions
|
|
1185
1186
|
│ │ ├── AiResultTrackerDescription.ts # AI Result Tracker UI definitions
|
|
1187
|
+
│ │ ├── AirtGroupsDescription.ts # AIRT Groups UI definitions
|
|
1186
1188
|
│ │ ├── KeywordGroupsDescription.ts # Keyword Groups UI definitions
|
|
1187
1189
|
│ │ ├── CompetitorsDescription.ts # Competitors UI definitions
|
|
1188
1190
|
│ │ ├── UrlTagsDescription.ts # URL Tags UI definitions
|
|
@@ -128,7 +128,7 @@ async function AiResultTrackerOperations(index) {
|
|
|
128
128
|
const llmId = this.getNodeParameter('llmId', index);
|
|
129
129
|
const k2siteLlmId = this.getNodeParameter('k2siteLlmId', index);
|
|
130
130
|
const additionalFields = this.getNodeParameter('additionalFields', index, {});
|
|
131
|
-
const query = { site_id: siteId, llm_id: llmId,
|
|
131
|
+
const query = { site_id: siteId, llm_id: llmId, prompt_llm_id: k2siteLlmId };
|
|
132
132
|
if (additionalFields.date)
|
|
133
133
|
query.date = additionalFields.date;
|
|
134
134
|
return await apiRequest_1.apiRequest.call(this, 'GET', '/project-management/airt/prompts/answer', {}, query, index);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seranking/n8n-nodes-seranking",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "n8n
|
|
3
|
+
"version": "2.0.3",
|
|
4
|
+
"description": "n8n community node for SE Ranking's unified API — 190 operations across 21 resources: AI Search, Backlinks, Domain Analysis, Keyword Research, SERP Classic, Website Audits, Project Management, Competitors, Backlink Checker, Sub-Accounts, and more",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/seranking/n8n-nodes-seranking",
|
|
7
7
|
"author": {
|