frontend support browser header (#2761)

This commit is contained in:
Shuchang Zheng
2025-06-21 08:50:19 +08:00
committed by GitHub
parent 592ed941ce
commit 1bf270df55
20 changed files with 495 additions and 0 deletions

View File

@@ -135,6 +135,7 @@ export type CreateTaskRequest = {
data_extraction_goal?: string | null;
navigation_payload?: Record<string, unknown> | string | null;
extracted_information_schema?: Record<string, unknown> | string | null;
extra_http_headers?: Record<string, string> | null;
error_code_mapping?: Record<string, string> | null;
proxy_location?: ProxyLocation | null;
totp_verification_url?: string | null;
@@ -282,6 +283,7 @@ export type WorkflowRunStatusApiResponse = {
status: Status;
proxy_location: ProxyLocation | null;
webhook_callback_url: string | null;
extra_http_headers: Record<string, string> | null;
created_at: string;
modified_at: string;
parameters: Record<string, unknown>;
@@ -338,6 +340,7 @@ export type TaskV2 = {
totp_verification_url: string | null;
totp_identifier: string | null;
proxy_location: ProxyLocation | null;
extra_http_headers: Record<string, string> | null;
};
export type Createv2TaskRequest = {