From 54962f9db52c4a4f4679e02039314caae02d43a3 Mon Sep 17 00:00:00 2001 From: "sati.ac" Date: Tue, 1 Aug 2023 07:42:26 +0300 Subject: [PATCH] feat: add geetest support --- package.json | 2 +- src/types.ts | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6980b38..60fb64f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sati", - "version": "0.2.4", + "version": "0.3.0", "description": "next generation anti-captcha", "license": "MIT", "repository": { diff --git a/src/types.ts b/src/types.ts index 9e81bea..90678cf 100644 --- a/src/types.ts +++ b/src/types.ts @@ -32,6 +32,20 @@ export type tasks = { result: { token: string } + }, + GeeTest3: { + params: { + siteKey: string, + pageUrl: string, + challenge: string, + apiServer?: string, + proxy?: string + }, + result: { + challenge: string, + validate: string, + seccode: string + } } }