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/session.d.ts | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 g4f/Provider/npm/node_modules/funcaptcha/lib/session.d.ts (limited to 'g4f/Provider/npm/node_modules/funcaptcha/lib/session.d.ts') diff --git a/g4f/Provider/npm/node_modules/funcaptcha/lib/session.d.ts b/g4f/Provider/npm/node_modules/funcaptcha/lib/session.d.ts new file mode 100644 index 00000000..d40a10c9 --- /dev/null +++ b/g4f/Provider/npm/node_modules/funcaptcha/lib/session.d.ts @@ -0,0 +1,36 @@ +import { GetTokenResult } from "./api"; +import { Challenge } from "./challenge"; +export interface TokenInfo { + token: string; + r: string; + metabgclr: string; + mainbgclr: string; + guitextcolor: string; + metaiconclr: string; + meta_height: string; + meta_width: string; + meta: string; + pk: string; + dc: string; + at: string; + cdn_url: string; + lurl: string; + surl: string; + smurl: string; + kbio: boolean; + mbio: boolean; + tbio: boolean; +} +export interface SessionOptions { + userAgent?: string; + proxy?: string; +} +export declare class Session { + token: string; + tokenInfo: TokenInfo; + private userAgent; + private proxy; + constructor(token: string | GetTokenResult, sessionOptions?: SessionOptions); + getChallenge(): Promise; + getEmbedUrl(): string; +} -- cgit v1.2.3