From dc04ca93060443a3ce6263a476f4dafc66afc6b3 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Sat, 28 Oct 2023 07:21:00 +0200 Subject: Add arkose_token to OpenaiChat --- .../npm/node_modules/funcaptcha/lib/api.d.ts | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 g4f/Provider/npm/node_modules/funcaptcha/lib/api.d.ts (limited to 'g4f/Provider/npm/node_modules/funcaptcha/lib/api.d.ts') diff --git a/g4f/Provider/npm/node_modules/funcaptcha/lib/api.d.ts b/g4f/Provider/npm/node_modules/funcaptcha/lib/api.d.ts new file mode 100644 index 00000000..94e7b22e --- /dev/null +++ b/g4f/Provider/npm/node_modules/funcaptcha/lib/api.d.ts @@ -0,0 +1,28 @@ +export interface GetTokenOptions { + pkey: string; + surl?: string; + data?: { + [key: string]: string; + }; + headers?: { + [key: string]: string; + }; + site?: string; + location?: string; + proxy?: string; + language?: string; +} +export interface GetTokenResult { + challenge_url: string; + challenge_url_cdn: string; + challenge_url_cdn_sri: string; + disable_default_styling: boolean | null; + iframe_height: number | null; + iframe_width: number | null; + kbio: boolean; + mbio: boolean; + noscript: string; + tbio: boolean; + token: string; +} +export declare function getToken(options: GetTokenOptions): Promise; -- cgit v1.2.3