@seranking/n8n-nodes-seranking 1.3.5 → 1.3.6
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.
|
@@ -10,7 +10,7 @@ async function apiRequest(method, endpoint, body = {}, query = {}, itemIndex = 0
|
|
|
10
10
|
const timeSinceLastRequest = now - lastRequestTime;
|
|
11
11
|
if (timeSinceLastRequest < MIN_REQUEST_INTERVAL) {
|
|
12
12
|
const waitTime = MIN_REQUEST_INTERVAL - timeSinceLastRequest;
|
|
13
|
-
await
|
|
13
|
+
await (0, n8n_workflow_1.sleep)(waitTime);
|
|
14
14
|
}
|
|
15
15
|
lastRequestTime = Date.now();
|
|
16
16
|
const credentials = await this.getCredentials('seRankingApi');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seranking/n8n-nodes-seranking",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "n8n connector for SE Ranking API - AI Search, Backlinks, Domain Analysis, Keyword Research, and Website Audit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/seranking/n8n-nodes-seranking",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/node": "^18.16.0",
|
|
53
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
54
|
-
"@typescript-eslint/parser": "^5.
|
|
55
|
-
"eslint": "^8.
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
54
|
+
"@typescript-eslint/parser": "^5.62.0",
|
|
55
|
+
"eslint": "^8.57.1",
|
|
56
56
|
"eslint-plugin-n8n-nodes-base": "^1.16.4",
|
|
57
57
|
"n8n-workflow": "^1.120.3",
|
|
58
58
|
"prettier": "^2.8.8",
|