@ceki/n8n-nodes-ceki 0.1.5 → 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/dist/credentials/CekiApi.credentials.js +47 -26
- package/dist/credentials/CekiApi.credentials.js.map +7 -1
- package/dist/nodes/BrowserCeki/BrowserCeki.node.js +15700 -372
- package/dist/nodes/BrowserCeki/BrowserCeki.node.js.map +7 -1
- package/dist/nodes/CekiContract/CekiContract.node.js +13882 -241
- package/dist/nodes/CekiContract/CekiContract.node.js.map +7 -1
- package/dist/nodes/recipes/CekiCaptchaScrape/CekiCaptchaScrape.node.js +15538 -223
- package/dist/nodes/recipes/CekiCaptchaScrape/CekiCaptchaScrape.node.js.map +7 -1
- package/dist/nodes/recipes/CekiScreenshotGeo/CekiScreenshotGeo.node.js +15402 -70
- package/dist/nodes/recipes/CekiScreenshotGeo/CekiScreenshotGeo.node.js.map +7 -1
- package/package.json +9 -9
- package/dist/credentials/CekiApi.credentials.d.ts +0 -11
- package/dist/nodes/BrowserCeki/BrowserCeki.node.d.ts +0 -9
- package/dist/nodes/CekiContract/CekiContract.node.d.ts +0 -5
- package/dist/nodes/recipes/CekiCaptchaScrape/CekiCaptchaScrape.node.d.ts +0 -13
- package/dist/nodes/recipes/CekiScreenshotGeo/CekiScreenshotGeo.node.d.ts +0 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceki/n8n-nodes-ceki",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Rent real human browsers in n8n — anti-bot scraping, human-solved captchas, geo-targeting, and contract-based hiring of agents and humans. Powered by Ceki.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -22,17 +22,18 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"author": "Ceki (https://ceki.me)",
|
|
24
24
|
"homepage": "https://browser.ceki.me",
|
|
25
|
-
"repository":
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/Ceki-me/n8n-nodes-ceki.git"
|
|
28
|
+
},
|
|
26
29
|
"bugs": {
|
|
27
30
|
"url": "https://github.com/Ceki-me/n8n-nodes-ceki/issues"
|
|
28
31
|
},
|
|
29
32
|
"main": "dist/index.js",
|
|
30
33
|
"scripts": {
|
|
31
|
-
"build": "
|
|
34
|
+
"build": "node scripts/build-with-esbuild.js",
|
|
32
35
|
"typecheck": "tsc --noEmit",
|
|
33
|
-
"dev": "tsc --watch"
|
|
34
|
-
"lint": "echo 'No linter configured - add eslint if needed'",
|
|
35
|
-
"release": "npm run build && npm version --git-tag-version true"
|
|
36
|
+
"dev": "tsc --watch"
|
|
36
37
|
},
|
|
37
38
|
"files": [
|
|
38
39
|
"dist"
|
|
@@ -46,11 +47,10 @@
|
|
|
46
47
|
"dist/nodes/**/*.node.js"
|
|
47
48
|
]
|
|
48
49
|
},
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"@ceki/sdk": "^1.0.0"
|
|
51
|
-
},
|
|
52
50
|
"devDependencies": {
|
|
51
|
+
"@ceki/sdk": "^1.0.0",
|
|
53
52
|
"@types/node": "^26.1.0",
|
|
53
|
+
"esbuild": "^0.28.1",
|
|
54
54
|
"n8n-workflow": "*",
|
|
55
55
|
"typescript": "^5.4.0"
|
|
56
56
|
},
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
|
-
/**
|
|
3
|
-
* Ceki agent token (ag_...). Authorizes every Ceki node.
|
|
4
|
-
* Get it from the Ceki panel → agent profile → API key.
|
|
5
|
-
*/
|
|
6
|
-
export declare class CekiApi implements ICredentialType {
|
|
7
|
-
name: string;
|
|
8
|
-
displayName: string;
|
|
9
|
-
documentationUrl: string;
|
|
10
|
-
properties: INodeProperties[];
|
|
11
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
2
|
-
/**
|
|
3
|
-
* Browser Ceki — one node, many operations.
|
|
4
|
-
* connect/rent/resume/close happen internally. session_id flows between calls of the node.
|
|
5
|
-
*/
|
|
6
|
-
export declare class BrowserCeki implements INodeType {
|
|
7
|
-
description: INodeTypeDescription;
|
|
8
|
-
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
9
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
2
|
-
export declare class CekiContract implements INodeType {
|
|
3
|
-
description: INodeTypeDescription;
|
|
4
|
-
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
5
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { IExecuteFunctions, INodeType, INodeTypeDescription, INodeExecutionData } from 'n8n-workflow';
|
|
2
|
-
/**
|
|
3
|
-
* Recipe: Captcha-protected Scrape.
|
|
4
|
-
* Rent a human browser → open a URL → (optional) wait for a selector →
|
|
5
|
-
* request a human to solve the captcha (requestCaptcha) → snapshot/HTML → release.
|
|
6
|
-
*
|
|
7
|
-
* This is Ceki's signature use case: anti-bot sites load thanks to the real fingerprint,
|
|
8
|
-
* and the captcha is solved by a real person (provider/solver).
|
|
9
|
-
*/
|
|
10
|
-
export declare class CekiCaptchaScrape implements INodeType {
|
|
11
|
-
description: INodeTypeDescription;
|
|
12
|
-
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
13
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { IExecuteFunctions, INodeType, INodeTypeDescription, INodeExecutionData } from 'n8n-workflow';
|
|
2
|
-
/**
|
|
3
|
-
* Recipe: Screenshot in Geo.
|
|
4
|
-
* One call — rent a browser in the requested geo, open a URL, take a screenshot, release.
|
|
5
|
-
*/
|
|
6
|
-
export declare class CekiScreenshotGeo implements INodeType {
|
|
7
|
-
description: INodeTypeDescription;
|
|
8
|
-
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
9
|
-
}
|