valyu-js 2.5.9 → 2.6.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/index.d.mts CHANGED
@@ -26,6 +26,7 @@ interface SearchOptions {
26
26
  relevanceThreshold?: number;
27
27
  includedSources?: string[];
28
28
  excludeSources?: string[];
29
+ sourceBiases?: Record<string, number>;
29
30
  category?: string;
30
31
  startDate?: string;
31
32
  endDate?: string;
@@ -253,6 +254,7 @@ interface DeepResearchSearchConfig {
253
254
  searchType?: "all" | "web" | "proprietary";
254
255
  includedSources?: string[];
255
256
  excludedSources?: string[];
257
+ sourceBiases?: Record<string, number>;
256
258
  startDate?: string;
257
259
  endDate?: string;
258
260
  category?: string;
@@ -265,6 +267,8 @@ interface DeepResearchCreateOptions {
265
267
  model?: DeepResearchMode;
266
268
  outputFormats?: DeepResearchOutputFormat[];
267
269
  strategy?: string;
270
+ researchStrategy?: string;
271
+ reportFormat?: string;
268
272
  search?: DeepResearchSearchConfig;
269
273
  urls?: string[];
270
274
  files?: FileAttachment[];
@@ -471,6 +475,8 @@ interface BatchTaskInput {
471
475
  query?: string;
472
476
  input?: string;
473
477
  strategy?: string;
478
+ researchStrategy?: string;
479
+ reportFormat?: string;
474
480
  urls?: string[];
475
481
  metadata?: Record<string, string | number | boolean>;
476
482
  }
package/dist/index.d.ts CHANGED
@@ -26,6 +26,7 @@ interface SearchOptions {
26
26
  relevanceThreshold?: number;
27
27
  includedSources?: string[];
28
28
  excludeSources?: string[];
29
+ sourceBiases?: Record<string, number>;
29
30
  category?: string;
30
31
  startDate?: string;
31
32
  endDate?: string;
@@ -253,6 +254,7 @@ interface DeepResearchSearchConfig {
253
254
  searchType?: "all" | "web" | "proprietary";
254
255
  includedSources?: string[];
255
256
  excludedSources?: string[];
257
+ sourceBiases?: Record<string, number>;
256
258
  startDate?: string;
257
259
  endDate?: string;
258
260
  category?: string;
@@ -265,6 +267,8 @@ interface DeepResearchCreateOptions {
265
267
  model?: DeepResearchMode;
266
268
  outputFormats?: DeepResearchOutputFormat[];
267
269
  strategy?: string;
270
+ researchStrategy?: string;
271
+ reportFormat?: string;
268
272
  search?: DeepResearchSearchConfig;
269
273
  urls?: string[];
270
274
  files?: FileAttachment[];
@@ -471,6 +475,8 @@ interface BatchTaskInput {
471
475
  query?: string;
472
476
  input?: string;
473
477
  strategy?: string;
478
+ researchStrategy?: string;
479
+ reportFormat?: string;
474
480
  urls?: string[];
475
481
  metadata?: Record<string, string | number | boolean>;
476
482
  }
package/dist/index.js CHANGED
@@ -338,6 +338,9 @@ var Valyu = class {
338
338
  if (options.excludeSources !== void 0) {
339
339
  payload.exclude_sources = options.excludeSources;
340
340
  }
341
+ if (options.sourceBiases !== void 0) {
342
+ payload.source_biases = options.sourceBiases;
343
+ }
341
344
  if (options.category !== void 0) {
342
345
  payload.category = options.category;
343
346
  }
@@ -630,6 +633,10 @@ var Valyu = class {
630
633
  code_execution: options.codeExecution !== false
631
634
  };
632
635
  if (options.strategy) payload.strategy = options.strategy;
636
+ if (options.researchStrategy)
637
+ payload.research_strategy = options.researchStrategy;
638
+ if (options.reportFormat)
639
+ payload.report_format = options.reportFormat;
633
640
  if (options.search) {
634
641
  payload.search = {};
635
642
  if (options.search.searchType) {
@@ -641,6 +648,9 @@ var Valyu = class {
641
648
  if (options.search.excludedSources) {
642
649
  payload.search.excluded_sources = options.search.excludedSources;
643
650
  }
651
+ if (options.search.sourceBiases) {
652
+ payload.search.source_biases = options.search.sourceBiases;
653
+ }
644
654
  if (options.search.startDate) {
645
655
  payload.search.start_date = options.search.startDate;
646
656
  }
@@ -937,6 +947,9 @@ var Valyu = class {
937
947
  if (options.search.excludedSources) {
938
948
  payload.search.excluded_sources = options.search.excludedSources;
939
949
  }
950
+ if (options.search.sourceBiases) {
951
+ payload.search.source_biases = options.search.sourceBiases;
952
+ }
940
953
  if (options.search.startDate) {
941
954
  payload.search.start_date = options.search.startDate;
942
955
  }
@@ -1024,6 +1037,10 @@ var Valyu = class {
1024
1037
  }
1025
1038
  if (task.id) taskPayload.id = task.id;
1026
1039
  if (task.strategy) taskPayload.strategy = task.strategy;
1040
+ if (task.researchStrategy)
1041
+ taskPayload.research_strategy = task.researchStrategy;
1042
+ if (task.reportFormat)
1043
+ taskPayload.report_format = task.reportFormat;
1027
1044
  if (task.urls) taskPayload.urls = task.urls;
1028
1045
  if (task.metadata) taskPayload.metadata = task.metadata;
1029
1046
  return taskPayload;
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { createHmac, timingSafeEqual } from \"crypto\";\nimport axios from \"axios\";\nimport {\n SearchResponse,\n SearchType,\n SearchOptions,\n ContentsOptions,\n ContentsResponse,\n ContentsAsyncJobResponse,\n ContentsJobResponse,\n ContentsJobWaitOptions,\n AnswerOptions,\n AnswerResponse,\n AnswerSuccessResponse,\n AnswerStreamChunk,\n SearchResult,\n DeepResearchCreateOptions,\n DeepResearchCreateResponse,\n DeepResearchStatusResponse,\n DeepResearchListResponse,\n DeepResearchUpdateResponse,\n DeepResearchCancelResponse,\n DeepResearchDeleteResponse,\n DeepResearchTogglePublicResponse,\n DeepResearchGetAssetsOptions,\n DeepResearchGetAssetsResponse,\n WaitOptions,\n StreamCallback,\n ListOptions,\n CreateBatchOptions,\n CreateBatchResponse,\n BatchStatusResponse,\n AddBatchTasksOptions,\n AddBatchTasksResponse,\n ListBatchTasksOptions,\n ListBatchTasksResponse,\n CancelBatchResponse,\n ListBatchesOptions,\n ListBatchesResponse,\n BatchWaitOptions,\n DeepResearchBatch,\n DatasourcesListOptions,\n DatasourcesListResponse,\n DatasourcesCategoriesResponse,\n} from \"./types\";\n\n/** Normalize API job response (snake_case) to SDK format (camelCase). Omits poll_url. */\nfunction normalizeContentsJobResponse(api: Record<string, any>): ContentsJobResponse {\n return {\n success: api.success ?? true,\n jobId: api.job_id ?? api.jobId,\n status: api.status ?? \"pending\",\n urlsTotal: api.urls_total ?? api.urlsTotal ?? 0,\n urlsProcessed: api.urls_processed ?? api.urlsProcessed ?? 0,\n urlsFailed: api.urls_failed ?? api.urlsFailed ?? 0,\n createdAt: api.created_at ?? api.createdAt ?? 0,\n updatedAt: api.updated_at ?? api.updatedAt ?? 0,\n currentBatch: api.current_batch ?? api.currentBatch,\n totalBatches: api.total_batches ?? api.totalBatches,\n results: api.results,\n actualCostDollars: api.actual_cost_dollars ?? api.actualCostDollars,\n error: api.error,\n webhookSecret: api.webhook_secret ?? api.webhookSecret,\n };\n}\n\n/** Normalize API async job creation response (202) to SDK format. */\nfunction normalizeContentsAsyncJobResponse(\n api: Record<string, any>\n): ContentsAsyncJobResponse {\n return {\n success: api.success ?? true,\n jobId: api.job_id ?? api.jobId,\n status: \"pending\",\n urlsTotal: api.urls_total ?? api.urlsTotal ?? 0,\n webhookSecret: api.webhook_secret ?? api.webhookSecret,\n txId: api.tx_id ?? api.txId ?? \"\",\n };\n}\n\n/**\n * Verify webhook signature for Contents API async completion notifications.\n * Use the raw request body (not parsed JSON) as payload.\n * @param payload - Raw request body string\n * @param signature - X-Webhook-Signature header value\n * @param timestamp - X-Webhook-Timestamp header value\n * @param secret - webhookSecret from job creation\n */\nexport function verifyContentsWebhookSignature(\n payload: string,\n signature: string,\n timestamp: string,\n secret: string\n): boolean {\n const expected = createHmac(\"sha256\", secret)\n .update(`${timestamp}.${payload}`)\n .digest(\"hex\");\n const expectedSignature = `sha256=${expected}`;\n if (signature.length !== expectedSignature.length) return false;\n return timingSafeEqual(\n Buffer.from(signature, \"utf8\"),\n Buffer.from(expectedSignature, \"utf8\")\n );\n}\n\n// Valyu API client\nexport class Valyu {\n private baseUrl: string;\n private headers: Record<string, string>;\n\n // DeepResearch namespace\n public deepresearch: {\n create: (\n options: DeepResearchCreateOptions\n ) => Promise<DeepResearchCreateResponse>;\n status: (taskId: string) => Promise<DeepResearchStatusResponse>;\n wait: (\n taskId: string,\n options?: WaitOptions\n ) => Promise<DeepResearchStatusResponse>;\n stream: (taskId: string, callback: StreamCallback) => Promise<void>;\n list: (options: ListOptions) => Promise<DeepResearchListResponse>;\n update: (\n taskId: string,\n instruction: string\n ) => Promise<DeepResearchUpdateResponse>;\n cancel: (taskId: string) => Promise<DeepResearchCancelResponse>;\n delete: (taskId: string) => Promise<DeepResearchDeleteResponse>;\n togglePublic: (\n taskId: string,\n isPublic: boolean\n ) => Promise<DeepResearchTogglePublicResponse>;\n getAssets: (\n taskId: string,\n assetId: string,\n options?: DeepResearchGetAssetsOptions\n ) => Promise<DeepResearchGetAssetsResponse>;\n };\n\n // Batch API namespace\n public batch: {\n create: (options?: CreateBatchOptions) => Promise<CreateBatchResponse>;\n status: (batchId: string) => Promise<BatchStatusResponse>;\n addTasks: (\n batchId: string,\n options: AddBatchTasksOptions\n ) => Promise<AddBatchTasksResponse>;\n listTasks: (\n batchId: string,\n options?: ListBatchTasksOptions\n ) => Promise<ListBatchTasksResponse>;\n cancel: (batchId: string) => Promise<CancelBatchResponse>;\n list: (options?: ListBatchesOptions) => Promise<ListBatchesResponse>;\n waitForCompletion: (\n batchId: string,\n options?: BatchWaitOptions\n ) => Promise<DeepResearchBatch>;\n };\n\n // Datasources API namespace\n public datasources: {\n list: (options?: DatasourcesListOptions) => Promise<DatasourcesListResponse>;\n categories: () => Promise<DatasourcesCategoriesResponse>;\n };\n\n constructor(apiKey?: string, baseUrl: string = \"https://api.valyu.ai/v1\") {\n if (!apiKey) {\n apiKey = process.env.VALYU_API_KEY;\n if (!apiKey) {\n throw new Error(\"VALYU_API_KEY is not set\");\n }\n }\n this.baseUrl = baseUrl;\n this.headers = {\n \"Content-Type\": \"application/json\",\n \"x-api-key\": apiKey,\n };\n\n // Initialize DeepResearch namespace\n this.deepresearch = {\n create: this._deepresearchCreate.bind(this),\n status: this._deepresearchStatus.bind(this),\n wait: this._deepresearchWait.bind(this),\n stream: this._deepresearchStream.bind(this),\n list: this._deepresearchList.bind(this),\n update: this._deepresearchUpdate.bind(this),\n cancel: this._deepresearchCancel.bind(this),\n delete: this._deepresearchDelete.bind(this),\n togglePublic: this._deepresearchTogglePublic.bind(this),\n getAssets: this._deepresearchGetAssets.bind(this),\n };\n\n // Initialize Batch namespace\n this.batch = {\n create: this._batchCreate.bind(this),\n status: this._batchStatus.bind(this),\n addTasks: this._batchAddTasks.bind(this),\n listTasks: this._batchListTasks.bind(this),\n cancel: this._batchCancel.bind(this),\n list: this._batchList.bind(this),\n waitForCompletion: this._batchWaitForCompletion.bind(this),\n };\n\n // Initialize Datasources namespace\n this.datasources = {\n list: this._datasourcesList.bind(this),\n categories: this._datasourcesCategories.bind(this),\n };\n }\n\n /**\n * Validates date format (YYYY-MM-DD)\n */\n private validateDateFormat(date: string): boolean {\n const dateRegex = /^\\d{4}-\\d{2}-\\d{2}$/;\n if (!dateRegex.test(date)) {\n return false;\n }\n const parsedDate = new Date(date);\n return parsedDate instanceof Date && !isNaN(parsedDate.getTime());\n }\n\n /**\n * Validates if a string is a valid URL\n */\n private validateUrl(url: string): boolean {\n try {\n new URL(url);\n return true;\n } catch {\n return false;\n }\n }\n\n /**\n * Validates if a string is a valid domain (with optional path)\n */\n private validateDomain(domain: string): boolean {\n // Domain must have at least one dot and valid structure\n // Supports: example.com, example.com/path, subdomain.example.com/path/to/resource\n const domainRegex =\n /^[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(\\/.+)?$/;\n return domainRegex.test(domain);\n }\n\n /**\n * Validates if a string is a valid dataset identifier (provider/datasetname)\n */\n private validateDatasetId(datasetId: string): boolean {\n // Dataset format: provider/datasetname (exactly one slash)\n // Provider and dataset name can contain alphanumeric, hyphens, underscores\n const parts = datasetId.split(\"/\");\n if (parts.length !== 2) return false;\n\n const providerRegex = /^[a-zA-Z0-9_-]+$/;\n const datasetRegex = /^[a-zA-Z0-9_-]+$/;\n\n return (\n providerRegex.test(parts[0]) &&\n datasetRegex.test(parts[1]) &&\n parts[0].length > 0 &&\n parts[1].length > 0\n );\n }\n\n /**\n * Validates source strings (domains, URLs, or dataset IDs)\n */\n private validateSource(source: string): boolean {\n // Check if it's a valid URL\n if (this.validateUrl(source)) {\n return true;\n }\n\n // Check if it's a valid domain (with optional path)\n if (this.validateDomain(source)) {\n return true;\n }\n\n // Check if it's a valid dataset identifier\n if (this.validateDatasetId(source)) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Validates an array of source strings\n */\n private validateSources(sources: string[]): {\n valid: boolean;\n invalidSources: string[];\n } {\n const invalidSources: string[] = [];\n\n for (const source of sources) {\n if (!this.validateSource(source)) {\n invalidSources.push(source);\n }\n }\n\n return {\n valid: invalidSources.length === 0,\n invalidSources,\n };\n }\n\n /**\n * Search for information using the Valyu DeepSearch API\n * @param query - The search query string\n * @param options - Search configuration options\n * @param options.searchType - Type of search: \"web\", \"proprietary\", \"all\", or \"news\"\n * @param options.maxNumResults - Maximum number of results (1-100)\n * @param options.maxPrice - Maximum price per thousand characters (CPM)\n * @param options.isToolCall - Whether this is a tool call\n * @param options.relevanceThreshold - Minimum relevance score (0-1)\n * @param options.includedSources - List of specific sources to include\n * @param options.excludeSources - List of URLs/domains to exclude from search results\n * @param options.category - Category filter for search results\n * @param options.startDate - Start date filter (YYYY-MM-DD format)\n * @param options.endDate - End date filter (YYYY-MM-DD format)\n * @param options.countryCode - Country code filter for search results\n * @param options.responseLength - Response content length: \"short\"/\"medium\"/\"large\"/\"max\" or integer character count\n * @param options.fastMode - Fast mode for quicker but shorter results (default: false)\n * @param options.urlOnly - Returns shortened snippets (default: false)\n * @returns Promise resolving to search results\n */\n async search(\n query: string,\n options: SearchOptions = {}\n ): Promise<SearchResponse> {\n try {\n // Default values\n const defaultSearchType: SearchType = \"all\";\n const defaultMaxNumResults = 10;\n const defaultIsToolCall = true;\n const defaultRelevanceThreshold = 0.5;\n\n // Validate searchType\n let finalSearchType: SearchType = defaultSearchType;\n const providedSearchTypeString = options.searchType?.toLowerCase();\n\n if (\n providedSearchTypeString === \"web\" ||\n providedSearchTypeString === \"proprietary\" ||\n providedSearchTypeString === \"all\" ||\n providedSearchTypeString === \"news\"\n ) {\n finalSearchType = providedSearchTypeString as SearchType;\n } else if (options.searchType !== undefined) {\n return {\n success: false,\n error:\n \"Invalid searchType provided. Must be one of: all, web, proprietary, news\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate date formats\n if (options.startDate && !this.validateDateFormat(options.startDate)) {\n return {\n success: false,\n error: \"Invalid startDate format. Must be YYYY-MM-DD\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n if (options.endDate && !this.validateDateFormat(options.endDate)) {\n return {\n success: false,\n error: \"Invalid endDate format. Must be YYYY-MM-DD\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate maxNumResults range\n const maxNumResults = options.maxNumResults ?? defaultMaxNumResults;\n if (maxNumResults < 1 || maxNumResults > 100) {\n return {\n success: false,\n error: \"maxNumResults must be between 1 and 100\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate includedSources format\n if (options.includedSources !== undefined) {\n if (!Array.isArray(options.includedSources)) {\n return {\n success: false,\n error: \"includedSources must be an array\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n const includedSourcesValidation = this.validateSources(\n options.includedSources\n );\n if (!includedSourcesValidation.valid) {\n return {\n success: false,\n error: `Invalid includedSources format. Invalid sources: ${includedSourcesValidation.invalidSources.join(\n \", \"\n )}. Sources must be valid URLs, domains (with optional paths), or dataset identifiers in 'provider/dataset' format.`,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n // Validate excludeSources format\n if (options.excludeSources !== undefined) {\n if (!Array.isArray(options.excludeSources)) {\n return {\n success: false,\n error: \"excludeSources must be an array\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n const excludeSourcesValidation = this.validateSources(\n options.excludeSources\n );\n if (!excludeSourcesValidation.valid) {\n return {\n success: false,\n error: `Invalid excludeSources format. Invalid sources: ${excludeSourcesValidation.invalidSources.join(\n \", \"\n )}. Sources must be valid URLs, domains (with optional paths), or dataset identifiers in 'provider/dataset' format.`,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n // Build payload with snake_case for API\n const payload: Record<string, any> = {\n query,\n search_type: finalSearchType,\n max_num_results: maxNumResults,\n is_tool_call: options.isToolCall ?? defaultIsToolCall,\n relevance_threshold:\n options.relevanceThreshold ?? defaultRelevanceThreshold,\n };\n\n // Add maxPrice only if explicitly provided\n if (options.maxPrice !== undefined) {\n payload.max_price = options.maxPrice;\n }\n\n // Add optional parameters only if provided\n if (options.includedSources !== undefined) {\n payload.included_sources = options.includedSources;\n }\n\n if (options.excludeSources !== undefined) {\n payload.exclude_sources = options.excludeSources;\n }\n\n if (options.category !== undefined) {\n payload.category = options.category;\n }\n\n if (options.startDate !== undefined) {\n payload.start_date = options.startDate;\n }\n\n if (options.endDate !== undefined) {\n payload.end_date = options.endDate;\n }\n\n if (options.countryCode !== undefined) {\n payload.country_code = options.countryCode;\n }\n\n if (options.responseLength !== undefined) {\n payload.response_length = options.responseLength;\n }\n\n if (options.fastMode !== undefined) {\n payload.fast_mode = options.fastMode;\n }\n\n if (options.urlOnly !== undefined) {\n payload.url_only = options.urlOnly;\n }\n\n const response = await axios.post(`${this.baseUrl}/deepsearch`, payload, {\n headers: this.headers,\n });\n\n if (!response.status || response.status < 200 || response.status >= 300) {\n return {\n success: false,\n error: response.data?.error,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n return response.data;\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n /**\n * Extract content from URLs with optional AI processing\n * @param urls - Array of URLs to process (max 10 sync, max 50 with async: true)\n * @param options - Content extraction configuration options\n * @param options.summary - AI summary configuration: false (raw), true (auto), string (custom), or JSON schema\n * @param options.extractEffort - Extraction thoroughness: \"normal\", \"high\", or \"auto\"\n * @param options.responseLength - Content length per URL\n * @param options.maxPriceDollars - Maximum cost limit in USD\n * @param options.screenshot - Request page screenshots (default: false)\n * @param options.async - Force async processing (required for >10 URLs)\n * @param options.webhookUrl - HTTPS URL for completion notification (async only)\n * @returns Promise resolving to sync results or async job (when async: true or >10 URLs)\n */\n async contents(\n urls: string[],\n options: ContentsOptions = {}\n ): Promise<ContentsResponse | ContentsAsyncJobResponse> {\n try {\n // Validate URLs array\n if (!urls || !Array.isArray(urls)) {\n return {\n success: false,\n error: \"urls must be an array\",\n urls_requested: 0,\n urls_processed: 0,\n urls_failed: 0,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n if (urls.length === 0) {\n return {\n success: false,\n error: \"urls array cannot be empty\",\n urls_requested: 0,\n urls_processed: 0,\n urls_failed: 0,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n const isAsync = options.async === true || urls.length > 10;\n\n if (urls.length > 10 && !options.async) {\n return {\n success: false,\n error:\n \"Requests with more than 10 URLs require async processing. Add async: true to the request.\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n if (urls.length > 50) {\n return {\n success: false,\n error: \"Maximum 50 URLs allowed per request\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // Validate extractEffort if provided\n if (\n options.extractEffort &&\n ![\"normal\", \"high\", \"auto\"].includes(options.extractEffort)\n ) {\n return {\n success: false,\n error: \"extractEffort must be 'normal', 'high', or 'auto'\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // Validate responseLength if provided\n if (options.responseLength !== undefined) {\n const validLengths = [\"short\", \"medium\", \"large\", \"max\"];\n if (\n typeof options.responseLength === \"string\" &&\n !validLengths.includes(options.responseLength)\n ) {\n return {\n success: false,\n error:\n \"responseLength must be 'short', 'medium', 'large', 'max', or a number\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n if (\n typeof options.responseLength === \"number\" &&\n options.responseLength <= 0\n ) {\n return {\n success: false,\n error: \"responseLength number must be positive\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n }\n\n // Build payload with snake_case for API\n const payload: Record<string, any> = {\n urls,\n };\n\n // Add optional parameters only if provided\n if (options.summary !== undefined) {\n payload.summary = options.summary;\n }\n\n if (options.extractEffort !== undefined) {\n payload.extract_effort = options.extractEffort;\n }\n\n if (options.responseLength !== undefined) {\n payload.response_length = options.responseLength;\n }\n\n if (options.maxPriceDollars !== undefined) {\n payload.max_price_dollars = options.maxPriceDollars;\n }\n\n if (options.screenshot !== undefined) {\n payload.screenshot = options.screenshot;\n }\n\n if (isAsync) {\n payload.async = true;\n }\n if (options.webhookUrl !== undefined) {\n payload.webhook_url = options.webhookUrl;\n }\n\n const response = await axios.post(`${this.baseUrl}/contents`, payload, {\n headers: this.headers,\n });\n\n if (!response.status || response.status < 200 || response.status >= 300) {\n return {\n success: false,\n error: response.data?.error || \"Request failed\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // 202 Accepted - async job created\n if (response.status === 202) {\n return normalizeContentsAsyncJobResponse(response.data);\n }\n\n return response.data as ContentsResponse;\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n }\n\n /**\n * Get async Contents job status and results\n * @param jobId - Job ID from contents() async response\n * @returns Promise resolving to job status\n */\n async getContentsJob(jobId: string): Promise<ContentsJobResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/contents/jobs/${jobId}`,\n { headers: this.headers }\n );\n return normalizeContentsJobResponse(response.data);\n } catch (e: any) {\n const errData = e.response?.data;\n const status = e.response?.status;\n return {\n success: false,\n jobId,\n status: \"failed\",\n urlsTotal: 0,\n urlsProcessed: 0,\n urlsFailed: 0,\n createdAt: 0,\n updatedAt: 0,\n error:\n errData?.error ||\n (status === 403\n ? \"Forbidden - you do not have access to this job\"\n : status === 404\n ? `Job ${jobId} not found`\n : e.message),\n };\n }\n }\n\n /**\n * Wait for async Contents job completion (polls until terminal state)\n * @param jobId - Job ID from contents() async response\n * @param options - Wait configuration (pollInterval, maxWaitTime, onProgress)\n * @returns Promise resolving to final job status with results\n */\n async waitForJob(\n jobId: string,\n options: ContentsJobWaitOptions = {}\n ): Promise<ContentsJobResponse> {\n const pollInterval = options.pollInterval ?? 5000;\n const maxWaitTime = options.maxWaitTime ?? 7200000;\n const startTime = Date.now();\n\n while (true) {\n const status = await this.getContentsJob(jobId);\n\n if (!status.success && status.error) {\n throw new Error(status.error);\n }\n\n if (options.onProgress) {\n options.onProgress(status);\n }\n\n if (\n status.status === \"completed\" ||\n status.status === \"partial\" ||\n status.status === \"failed\"\n ) {\n return status;\n }\n\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * DeepResearch: Create a new research task\n * @param options.search - Search configuration options\n * @param options.search.searchType - Type of search: \"all\", \"web\", or \"proprietary\" (default: \"all\")\n * @param options.search.includedSources - Array of source types to include (e.g., [\"academic\", \"finance\", \"web\"])\n * @param options.search.excludedSources - Array of source types to exclude (e.g., [\"web\", \"patent\"])\n * @param options.search.startDate - Start date filter in ISO format (YYYY-MM-DD)\n * @param options.search.endDate - End date filter in ISO format (YYYY-MM-DD)\n * @param options.search.category - Category filter for search results\n */\n private async _deepresearchCreate(\n options: DeepResearchCreateOptions\n ): Promise<DeepResearchCreateResponse> {\n try {\n // Use query field (input is supported for backward compatibility)\n const queryValue = options.query ?? options.input;\n\n // Validation\n if (!queryValue?.trim()) {\n return {\n success: false,\n error: \"query is required and cannot be empty\",\n };\n }\n\n // Build payload with snake_case\n // Prefer mode over model (backward compatible)\n const mode = options.mode ?? options.model;\n const payload: Record<string, any> = {\n query: queryValue,\n mode: mode || \"fast\", // API defaults to \"standard\", but we keep \"fast\" for backward compatibility\n output_formats: options.outputFormats || [\"markdown\"],\n code_execution: options.codeExecution !== false,\n };\n\n // Add optional fields\n if (options.strategy) payload.strategy = options.strategy;\n if (options.search) {\n payload.search = {};\n if (options.search.searchType) {\n payload.search.search_type = options.search.searchType;\n }\n if (options.search.includedSources) {\n payload.search.included_sources = options.search.includedSources;\n }\n if (options.search.excludedSources) {\n payload.search.excluded_sources = options.search.excludedSources;\n }\n if (options.search.startDate) {\n payload.search.start_date = options.search.startDate;\n }\n if (options.search.endDate) {\n payload.search.end_date = options.search.endDate;\n }\n if (options.search.category) {\n payload.search.category = options.search.category;\n }\n }\n if (options.urls) payload.urls = options.urls;\n if (options.files) payload.files = options.files;\n if (options.deliverables) payload.deliverables = options.deliverables;\n if (options.mcpServers) payload.mcp_servers = options.mcpServers;\n if (options.previousReports) {\n payload.previous_reports = options.previousReports;\n }\n if (options.webhookUrl) payload.webhook_url = options.webhookUrl;\n if (options.brandCollectionId)\n payload.brand_collection_id = options.brandCollectionId;\n if (options.alertEmail) {\n if (typeof options.alertEmail === \"string\") {\n payload.alert_email = options.alertEmail;\n } else {\n payload.alert_email = {\n email: options.alertEmail.email,\n custom_url: options.alertEmail.custom_url,\n };\n }\n }\n if (options.metadata) payload.metadata = options.metadata;\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks`,\n payload,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Get task status\n */\n private async _deepresearchStatus(\n taskId: string\n ): Promise<DeepResearchStatusResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/status`,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Wait for task completion with polling\n */\n private async _deepresearchWait(\n taskId: string,\n options: WaitOptions = {}\n ): Promise<DeepResearchStatusResponse> {\n const pollInterval = options.pollInterval || 5000;\n const maxWaitTime = options.maxWaitTime || 7200000;\n const startTime = Date.now();\n\n while (true) {\n const status = await this._deepresearchStatus(taskId);\n\n if (!status.success) {\n throw new Error(status.error);\n }\n\n // Notify progress callback\n if (options.onProgress) {\n options.onProgress(status);\n }\n\n // Terminal states\n if (\n status.status === \"completed\" ||\n status.status === \"failed\" ||\n status.status === \"cancelled\"\n ) {\n return status;\n }\n\n // Check timeout\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n // Wait before next poll\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * DeepResearch: Stream real-time updates\n */\n private async _deepresearchStream(\n taskId: string,\n callback: StreamCallback\n ): Promise<void> {\n let isComplete = false;\n let lastMessageCount = 0;\n\n while (!isComplete) {\n try {\n const status = await this._deepresearchStatus(taskId);\n\n if (!status.success) {\n if (callback.onError) {\n callback.onError(new Error(status.error));\n }\n return;\n }\n\n // Progress updates\n if (status.progress && callback.onProgress) {\n callback.onProgress(\n status.progress.current_step,\n status.progress.total_steps\n );\n }\n\n // New messages\n if (status.messages && callback.onMessage) {\n const newMessages = status.messages.slice(lastMessageCount);\n newMessages.forEach((msg) => callback.onMessage!(msg));\n lastMessageCount = status.messages.length;\n }\n\n // Terminal states\n if (status.status === \"completed\") {\n if (callback.onComplete) {\n callback.onComplete(status);\n }\n isComplete = true;\n } else if (\n status.status === \"failed\" ||\n status.status === \"cancelled\"\n ) {\n if (callback.onError) {\n callback.onError(\n new Error(status.error || `Task ${status.status}`)\n );\n }\n isComplete = true;\n }\n\n if (!isComplete) {\n await new Promise((resolve) => setTimeout(resolve, 5000));\n }\n } catch (error: any) {\n if (callback.onError) {\n callback.onError(error);\n }\n throw error;\n }\n }\n }\n\n /**\n * DeepResearch: List all tasks\n */\n private async _deepresearchList(\n options?: ListOptions\n ): Promise<DeepResearchListResponse> {\n try {\n const limit = options?.limit || 10;\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/list?limit=${limit}`,\n { headers: this.headers }\n );\n\n return { success: true, data: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Add follow-up instruction\n */\n private async _deepresearchUpdate(\n taskId: string,\n instruction: string\n ): Promise<DeepResearchUpdateResponse> {\n try {\n if (!instruction?.trim()) {\n return {\n success: false,\n error: \"instruction is required and cannot be empty\",\n };\n }\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/update`,\n { instruction },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Cancel task\n */\n private async _deepresearchCancel(\n taskId: string\n ): Promise<DeepResearchCancelResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/cancel`,\n {},\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Delete task\n */\n private async _deepresearchDelete(\n taskId: string\n ): Promise<DeepResearchDeleteResponse> {\n try {\n const response = await axios.delete(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/delete`,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Toggle public flag\n */\n private async _deepresearchTogglePublic(\n taskId: string,\n isPublic: boolean\n ): Promise<DeepResearchTogglePublicResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/public`,\n { public: isPublic },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Get task assets (images, deliverables, PDFs)\n */\n private async _deepresearchGetAssets(\n taskId: string,\n assetId: string,\n options: DeepResearchGetAssetsOptions = {}\n ): Promise<DeepResearchGetAssetsResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.token) {\n params.append(\"token\", options.token);\n }\n\n // Build headers - use API key if no token provided\n const headers: Record<string, string> = {};\n if (!options.token) {\n headers[\"x-api-key\"] = this.headers[\"x-api-key\"];\n }\n\n const url = `${\n this.baseUrl\n }/deepresearch/tasks/${taskId}/assets/${assetId}${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n\n const response = await axios.get(url, {\n headers,\n responseType: \"arraybuffer\", // For binary data\n });\n\n return {\n success: true,\n data: Buffer.from(response.data),\n contentType:\n response.headers[\"content-type\"] || \"application/octet-stream\",\n };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Create a new batch\n * @param options - Batch configuration options\n * @param options.name - Optional name for the batch\n * @param options.model - DeepResearch mode: \"fast\", \"standard\", or \"heavy\" (default: \"standard\")\n * @param options.outputFormats - Output formats for tasks (default: [\"markdown\"])\n * @param options.search - Search configuration for all tasks in batch\n * @param options.search.searchType - Type of search: \"all\", \"web\", or \"proprietary\" (default: \"all\")\n * @param options.search.includedSources - Array of source types to include (e.g., [\"academic\", \"finance\", \"web\"])\n * @param options.search.excludedSources - Array of source types to exclude (e.g., [\"web\", \"patent\"])\n * @param options.search.startDate - Start date filter in ISO format (YYYY-MM-DD)\n * @param options.search.endDate - End date filter in ISO format (YYYY-MM-DD)\n * @param options.search.category - Category filter for search results\n * @param options.webhookUrl - Optional HTTPS URL for completion notification\n * @param options.metadata - Optional metadata key-value pairs\n * @returns Promise resolving to batch creation response with batch_id and webhook_secret\n */\n private async _batchCreate(\n options: CreateBatchOptions = {}\n ): Promise<CreateBatchResponse> {\n try {\n const payload: Record<string, any> = {};\n\n if (options.name) payload.name = options.name;\n // Accept both mode (preferred) and model (backward compatible)\n const mode = options.mode ?? options.model;\n if (mode) payload.mode = mode;\n if (options.outputFormats) payload.output_formats = options.outputFormats;\n if (options.search) {\n payload.search = {};\n if (options.search.searchType) {\n payload.search.search_type = options.search.searchType;\n }\n if (options.search.includedSources) {\n payload.search.included_sources = options.search.includedSources;\n }\n if (options.search.excludedSources) {\n payload.search.excluded_sources = options.search.excludedSources;\n }\n if (options.search.startDate) {\n payload.search.start_date = options.search.startDate;\n }\n if (options.search.endDate) {\n payload.search.end_date = options.search.endDate;\n }\n if (options.search.category) {\n payload.search.category = options.search.category;\n }\n }\n if (options.webhookUrl) payload.webhook_url = options.webhookUrl;\n if (options.metadata) payload.metadata = options.metadata;\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches`,\n payload,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Get batch status\n * @param batchId - The batch ID to query\n * @returns Promise resolving to batch status with counts and usage\n */\n private async _batchStatus(batchId: string): Promise<BatchStatusResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/batches/${batchId}`,\n { headers: this.headers }\n );\n\n return { success: true, batch: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Add tasks to a batch\n * @param batchId - The batch ID to add tasks to\n * @param options - Task configuration options\n * @param options.tasks - Array of task inputs (use 'query' field for each task)\n * @returns Promise resolving to response with added, tasks array, counts, and batch_id\n */\n private async _batchAddTasks(\n batchId: string,\n options: AddBatchTasksOptions\n ): Promise<AddBatchTasksResponse> {\n try {\n if (!options.tasks || !Array.isArray(options.tasks)) {\n return {\n success: false,\n error: \"tasks must be an array\",\n };\n }\n\n if (options.tasks.length === 0) {\n return {\n success: false,\n error: \"tasks array cannot be empty\",\n };\n }\n\n if (options.tasks.length > 100) {\n return {\n success: false,\n error: \"Maximum 100 tasks allowed per request\",\n };\n }\n\n // Validate that each task has a query\n for (const task of options.tasks) {\n if (!task.query && !task.input) {\n return {\n success: false,\n error: \"Each task must have a 'query' field\",\n };\n }\n }\n\n // Convert tasks to snake_case format for API\n // Note: Tasks can only include: id, query, strategy, urls, metadata\n // Tasks inherit model, output_formats, and search_params from batch\n const tasksPayload = options.tasks.map((task) => {\n const taskPayload: Record<string, any> = {};\n\n // Use query field (input is supported for backward compatibility)\n const queryValue = task.query ?? task.input;\n if (queryValue) {\n taskPayload.query = queryValue;\n }\n\n if (task.id) taskPayload.id = task.id;\n if (task.strategy) taskPayload.strategy = task.strategy;\n if (task.urls) taskPayload.urls = task.urls;\n if (task.metadata) taskPayload.metadata = task.metadata;\n\n return taskPayload;\n });\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches/${batchId}/tasks`,\n { tasks: tasksPayload },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: List all tasks in a batch\n * @param batchId - The batch ID to query\n * @param options - Optional pagination and filtering options\n * @param options.status - Filter by status: \"queued\", \"running\", \"completed\", \"failed\", or \"cancelled\"\n * @param options.limit - Maximum number of tasks to return\n * @param options.lastKey - Pagination token from previous response\n * @returns Promise resolving to list of tasks with their status and pagination info\n */\n private async _batchListTasks(\n batchId: string,\n options: ListBatchTasksOptions = {}\n ): Promise<ListBatchTasksResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.status) {\n params.append(\"status\", options.status);\n }\n if (options.limit !== undefined) {\n params.append(\"limit\", options.limit.toString());\n }\n if (options.lastKey) {\n params.append(\"last_key\", options.lastKey);\n }\n if (options.includeOutput !== undefined) {\n params.append(\"include_output\", options.includeOutput.toString());\n }\n\n const url = `${this.baseUrl}/deepresearch/batches/${batchId}/tasks${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, { headers: this.headers });\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Cancel a batch and all its pending tasks\n * @param batchId - The batch ID to cancel\n * @returns Promise resolving to cancellation confirmation\n */\n private async _batchCancel(batchId: string): Promise<CancelBatchResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches/${batchId}/cancel`,\n {},\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: List all batches\n * @param options - Optional options\n * @param options.limit - Maximum number of batches to return\n * @returns Promise resolving to list of all batches\n */\n private async _batchList(\n options: ListBatchesOptions = {}\n ): Promise<ListBatchesResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.limit !== undefined) {\n params.append(\"limit\", options.limit.toString());\n }\n\n const url = `${this.baseUrl}/deepresearch/batches${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, {\n headers: this.headers,\n });\n\n return { success: true, batches: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Wait for batch completion with polling\n * @param batchId - The batch ID to wait for\n * @param options - Wait configuration options\n * @param options.pollInterval - Polling interval in milliseconds (default: 10000)\n * @param options.maxWaitTime - Maximum wait time in milliseconds (default: 7200000)\n * @param options.onProgress - Callback for progress updates\n * @returns Promise resolving to final batch status\n */\n private async _batchWaitForCompletion(\n batchId: string,\n options: BatchWaitOptions = {}\n ): Promise<DeepResearchBatch> {\n const pollInterval = options.pollInterval || 10000; // 10 seconds default\n const maxWaitTime = options.maxWaitTime || 7200000; // 2 hours default\n const startTime = Date.now();\n\n while (true) {\n const statusResponse = await this._batchStatus(batchId);\n\n if (!statusResponse.success || !statusResponse.batch) {\n throw new Error(statusResponse.error || \"Failed to get batch status\");\n }\n\n const batch = statusResponse.batch;\n\n // Notify progress callback\n if (options.onProgress) {\n options.onProgress(batch);\n }\n\n // Terminal states\n if (\n batch.status === \"completed\" ||\n batch.status === \"completed_with_errors\" ||\n batch.status === \"cancelled\"\n ) {\n return batch;\n }\n\n // Check timeout\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n // Wait before next poll\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * Get AI-powered answers using the Valyu Answer API\n * @param query - The question or query string\n * @param options - Answer configuration options\n * @param options.structuredOutput - JSON Schema object for structured responses\n * @param options.systemInstructions - Custom system-level instructions (max 2000 chars)\n * @param options.searchType - Type of search: \"web\", \"proprietary\", \"all\", or \"news\"\n * @param options.dataMaxPrice - Maximum spend (USD) for data retrieval\n * @param options.countryCode - Country code filter for search results\n * @param options.includedSources - List of specific sources to include\n * @param options.excludedSources - List of URLs/domains to exclude from search results\n * @param options.startDate - Start date filter (YYYY-MM-DD format)\n * @param options.endDate - End date filter (YYYY-MM-DD format)\n * @param options.fastMode - Fast mode for quicker but shorter results (default: false)\n * @param options.streaming - Enable streaming mode (default: false)\n * @returns Promise resolving to answer response, or AsyncGenerator for streaming\n */\n async answer(\n query: string,\n options: AnswerOptions = {}\n ): Promise<\n AnswerResponse | AsyncGenerator<AnswerStreamChunk, void, unknown>\n > {\n // Validate inputs first\n const validationError = this.validateAnswerParams(query, options);\n if (validationError) {\n if (options.streaming) {\n return this.createErrorGenerator(validationError);\n }\n return { success: false, error: validationError };\n }\n\n const payload = this.buildAnswerPayload(query, options);\n\n if (options.streaming) {\n return this.streamAnswer(payload);\n } else {\n return this.fetchAnswer(payload);\n }\n }\n\n /**\n * Validate answer parameters\n */\n private validateAnswerParams(\n query: string,\n options: AnswerOptions\n ): string | null {\n // Validate query\n if (!query || typeof query !== \"string\" || query.trim().length === 0) {\n return \"Query is required and must be a non-empty string\";\n }\n\n // Validate searchType\n const providedSearchTypeString = options.searchType?.toLowerCase();\n if (\n providedSearchTypeString !== undefined &&\n providedSearchTypeString !== \"web\" &&\n providedSearchTypeString !== \"proprietary\" &&\n providedSearchTypeString !== \"all\" &&\n providedSearchTypeString !== \"news\"\n ) {\n return \"Invalid searchType provided. Must be one of: all, web, proprietary, news\";\n }\n\n // Validate systemInstructions\n if (options.systemInstructions !== undefined) {\n if (typeof options.systemInstructions !== \"string\") {\n return \"systemInstructions must be a string\";\n }\n const trimmed = options.systemInstructions.trim();\n if (trimmed.length === 0) {\n return \"systemInstructions cannot be empty when provided\";\n }\n if (trimmed.length > 2000) {\n return \"systemInstructions must be 2000 characters or less\";\n }\n }\n\n // Validate dataMaxPrice\n if (options.dataMaxPrice !== undefined) {\n if (\n typeof options.dataMaxPrice !== \"number\" ||\n options.dataMaxPrice <= 0\n ) {\n return \"dataMaxPrice must be a positive number\";\n }\n }\n\n // Validate date formats\n if (options.startDate && !this.validateDateFormat(options.startDate)) {\n return \"Invalid startDate format. Must be YYYY-MM-DD\";\n }\n if (options.endDate && !this.validateDateFormat(options.endDate)) {\n return \"Invalid endDate format. Must be YYYY-MM-DD\";\n }\n if (options.startDate && options.endDate) {\n const startDate = new Date(options.startDate);\n const endDate = new Date(options.endDate);\n if (startDate > endDate) {\n return \"startDate must be before endDate\";\n }\n }\n\n // Validate sources\n if (options.includedSources !== undefined) {\n if (!Array.isArray(options.includedSources)) {\n return \"includedSources must be an array\";\n }\n const validation = this.validateSources(options.includedSources);\n if (!validation.valid) {\n return `Invalid includedSources format. Invalid sources: ${validation.invalidSources.join(\n \", \"\n )}.`;\n }\n }\n if (options.excludedSources !== undefined) {\n if (!Array.isArray(options.excludedSources)) {\n return \"excludedSources must be an array\";\n }\n const validation = this.validateSources(options.excludedSources);\n if (!validation.valid) {\n return `Invalid excludedSources format. Invalid sources: ${validation.invalidSources.join(\n \", \"\n )}.`;\n }\n }\n\n return null;\n }\n\n /**\n * Build payload for answer API\n */\n private buildAnswerPayload(\n query: string,\n options: AnswerOptions\n ): Record<string, any> {\n const defaultSearchType: SearchType = \"all\";\n const providedSearchTypeString = options.searchType?.toLowerCase();\n let finalSearchType: SearchType = defaultSearchType;\n\n if (\n providedSearchTypeString === \"web\" ||\n providedSearchTypeString === \"proprietary\" ||\n providedSearchTypeString === \"all\" ||\n providedSearchTypeString === \"news\"\n ) {\n finalSearchType = providedSearchTypeString as SearchType;\n }\n\n const payload: Record<string, any> = {\n query: query.trim(),\n search_type: finalSearchType,\n };\n\n if (options.dataMaxPrice !== undefined)\n payload.data_max_price = options.dataMaxPrice;\n if (options.structuredOutput !== undefined)\n payload.structured_output = options.structuredOutput;\n if (options.systemInstructions !== undefined)\n payload.system_instructions = options.systemInstructions.trim();\n if (options.countryCode !== undefined)\n payload.country_code = options.countryCode;\n if (options.includedSources !== undefined)\n payload.included_sources = options.includedSources;\n if (options.excludedSources !== undefined)\n payload.excluded_sources = options.excludedSources;\n if (options.startDate !== undefined) payload.start_date = options.startDate;\n if (options.endDate !== undefined) payload.end_date = options.endDate;\n if (options.fastMode !== undefined) payload.fast_mode = options.fastMode;\n\n return payload;\n }\n\n /**\n * Fetch answer (non-streaming mode)\n */\n private async fetchAnswer(\n payload: Record<string, any>\n ): Promise<AnswerResponse> {\n try {\n const response = await fetch(`${this.baseUrl}/answer`, {\n method: \"POST\",\n headers: {\n ...this.headers,\n Accept: \"text/event-stream\",\n },\n body: JSON.stringify(payload),\n });\n\n if (!response.ok) {\n const errorData = await response.json().catch(() => ({}));\n return {\n success: false,\n error: errorData.error || `HTTP Error: ${response.status}`,\n };\n }\n\n // Collect streamed data into final response\n let fullContent = \"\";\n let searchResults: SearchResult[] = [];\n let finalMetadata: any = {};\n\n const reader = response.body?.getReader();\n const decoder = new TextDecoder();\n let buffer = \"\";\n\n if (reader) {\n while (true) {\n const { done, value } = await reader.read();\n if (done) break;\n\n buffer += decoder.decode(value, { stream: true });\n const lines = buffer.split(\"\\n\");\n buffer = lines.pop() || \"\";\n\n for (const line of lines) {\n if (!line.startsWith(\"data: \")) continue;\n const dataStr = line.slice(6);\n\n if (dataStr === \"[DONE]\") continue;\n\n try {\n const parsed = JSON.parse(dataStr);\n\n // Handle search results\n if (parsed.search_results && !parsed.success) {\n searchResults = [...searchResults, ...parsed.search_results];\n }\n // Handle content chunks\n else if (parsed.choices) {\n const content = parsed.choices[0]?.delta?.content || \"\";\n if (content) fullContent += content;\n }\n // Handle final metadata\n else if (parsed.success !== undefined) {\n finalMetadata = parsed;\n }\n } catch {\n continue;\n }\n }\n }\n }\n\n // Build final response\n if (finalMetadata.success) {\n const finalSearchResults =\n finalMetadata.search_results || searchResults;\n const response: AnswerSuccessResponse = {\n success: true,\n tx_id: finalMetadata.tx_id || \"\",\n original_query: finalMetadata.original_query || payload.query,\n contents: finalMetadata.contents || fullContent || \"\",\n search_results: finalSearchResults,\n search_metadata: finalMetadata.search_metadata || {\n tx_ids: [],\n number_of_results: 0,\n total_characters: 0,\n },\n ai_usage: finalMetadata.ai_usage || {\n input_tokens: 0,\n output_tokens: 0,\n },\n cost: finalMetadata.cost || {\n total_deduction_dollars: 0,\n search_deduction_dollars: 0,\n ai_deduction_dollars: 0,\n },\n };\n if (finalMetadata.extraction_metadata) {\n response.extraction_metadata = finalMetadata.extraction_metadata;\n }\n return response;\n }\n\n return {\n success: false,\n error: finalMetadata.error || \"Unknown error occurred\",\n };\n } catch (e: any) {\n return {\n success: false,\n error: e.message || \"Request failed\",\n };\n }\n }\n\n /**\n * Stream answer using SSE\n */\n private async *streamAnswer(\n payload: Record<string, any>\n ): AsyncGenerator<AnswerStreamChunk, void, unknown> {\n try {\n const response = await fetch(`${this.baseUrl}/answer`, {\n method: \"POST\",\n headers: {\n ...this.headers,\n Accept: \"text/event-stream\",\n },\n body: JSON.stringify(payload),\n });\n\n if (!response.ok) {\n const errorData = await response.json().catch(() => ({}));\n yield {\n type: \"error\",\n error: errorData.error || `HTTP Error: ${response.status}`,\n };\n return;\n }\n\n const reader = response.body?.getReader();\n const decoder = new TextDecoder();\n let buffer = \"\";\n\n if (!reader) {\n yield { type: \"error\", error: \"No response body\" };\n return;\n }\n\n while (true) {\n const { done, value } = await reader.read();\n if (done) break;\n\n buffer += decoder.decode(value, { stream: true });\n const lines = buffer.split(\"\\n\");\n buffer = lines.pop() || \"\";\n\n for (const line of lines) {\n if (!line.startsWith(\"data: \")) continue;\n const dataStr = line.slice(6);\n\n if (dataStr === \"[DONE]\") {\n yield { type: \"done\" };\n continue;\n }\n\n try {\n const parsed = JSON.parse(dataStr);\n\n // Handle search results\n if (parsed.search_results && parsed.success === undefined) {\n yield {\n type: \"search_results\",\n search_results: parsed.search_results,\n };\n }\n // Handle content chunks\n else if (parsed.choices) {\n const delta = parsed.choices[0]?.delta || {};\n const content = delta.content || \"\";\n const finishReason = parsed.choices[0]?.finish_reason;\n\n if (content || finishReason) {\n yield { type: \"content\", content, finish_reason: finishReason };\n }\n }\n // Handle final metadata\n else if (parsed.success !== undefined) {\n yield {\n type: \"metadata\",\n tx_id: parsed.tx_id,\n original_query: parsed.original_query,\n contents: parsed.contents,\n search_results: parsed.search_results,\n search_metadata: parsed.search_metadata,\n ai_usage: parsed.ai_usage,\n cost: parsed.cost,\n extraction_metadata: parsed.extraction_metadata,\n };\n }\n } catch {\n continue;\n }\n }\n }\n } catch (e: any) {\n yield { type: \"error\", error: e.message || \"Stream failed\" };\n }\n }\n\n /**\n * Create an error generator for streaming errors\n */\n private async *createErrorGenerator(\n error: string\n ): AsyncGenerator<AnswerStreamChunk, void, unknown> {\n yield { type: \"error\", error };\n }\n\n /**\n * Datasources: List all available datasources\n * @param options - Optional filter options\n * @param options.category - Filter by category (e.g., \"research\", \"markets\", \"healthcare\")\n * @returns Promise resolving to list of datasources with their metadata\n */\n private async _datasourcesList(\n options: DatasourcesListOptions = {}\n ): Promise<DatasourcesListResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.category) {\n params.append(\"category\", options.category);\n }\n\n const url = `${this.baseUrl}/datasources${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, { headers: this.headers });\n\n return { success: true, datasources: response.data.datasources };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Datasources: Get all available categories\n * @returns Promise resolving to list of categories with their metadata\n */\n private async _datasourcesCategories(): Promise<DatasourcesCategoriesResponse> {\n try {\n const response = await axios.get(`${this.baseUrl}/datasources/categories`, {\n headers: this.headers,\n });\n\n return { success: true, categories: response.data.categories };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n}\n\nexport type {\n SearchResponse,\n SearchType,\n SearchResult,\n FeedbackSentiment,\n FeedbackResponse,\n SearchOptions,\n CountryCode,\n ResponseLength,\n ContentsOptions,\n ContentsResponse,\n ContentsAsyncJobResponse,\n ContentsJobResponse,\n ContentsJobStatus,\n ContentsJobWaitOptions,\n ContentResult,\n ContentResultSuccess,\n ContentResultFailed,\n ExtractEffort,\n ContentResponseLength,\n AnswerOptions,\n AnswerResponse,\n AnswerSuccessResponse,\n AnswerErrorResponse,\n AnswerStreamChunk,\n AnswerStreamChunkType,\n SearchMetadata,\n AIUsage,\n Cost,\n ExtractionMetadata,\n AlertEmailConfig,\n DeepResearchMode,\n DeepResearchStatus,\n DeepResearchOutputFormat,\n ImageType,\n ChartType,\n FileAttachment,\n MCPServerConfig,\n DeepResearchSearchConfig,\n DeepResearchCreateOptions,\n Progress,\n ChartDataPoint,\n ChartDataSeries,\n ImageMetadata,\n DeepResearchSource,\n DeepResearchUsage,\n DeepResearchCreateResponse,\n DeepResearchStatusResponse,\n DeepResearchTaskListItem,\n DeepResearchListResponse,\n DeepResearchUpdateResponse,\n DeepResearchCancelResponse,\n DeepResearchDeleteResponse,\n DeepResearchTogglePublicResponse,\n DeepResearchGetAssetsOptions,\n DeepResearchGetAssetsResponse,\n WaitOptions,\n StreamCallback,\n ListOptions,\n BatchStatus,\n BatchCounts,\n DeepResearchBatch,\n CreateBatchOptions,\n BatchTaskInput,\n AddBatchTasksOptions,\n CreateBatchResponse,\n BatchStatusResponse,\n AddBatchTasksResponse,\n BatchTaskCreated,\n BatchTaskListItem,\n BatchPagination,\n ListBatchTasksOptions,\n ListBatchTasksResponse,\n CancelBatchResponse,\n ListBatchesOptions,\n ListBatchesResponse,\n BatchWaitOptions,\n DatasourceCategoryId,\n DatasourceModality,\n DatasourcePricing,\n DatasourceCoverage,\n Datasource,\n DatasourceCategory,\n DatasourcesListOptions,\n DatasourcesListResponse,\n DatasourcesCategoriesResponse,\n} from \"./types\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA4C;AAC5C,mBAAkB;AA8ClB,SAAS,6BAA6B,KAA+C;AACnF,SAAO;AAAA,IACL,SAAS,IAAI,WAAW;AAAA,IACxB,OAAO,IAAI,UAAU,IAAI;AAAA,IACzB,QAAQ,IAAI,UAAU;AAAA,IACtB,WAAW,IAAI,cAAc,IAAI,aAAa;AAAA,IAC9C,eAAe,IAAI,kBAAkB,IAAI,iBAAiB;AAAA,IAC1D,YAAY,IAAI,eAAe,IAAI,cAAc;AAAA,IACjD,WAAW,IAAI,cAAc,IAAI,aAAa;AAAA,IAC9C,WAAW,IAAI,cAAc,IAAI,aAAa;AAAA,IAC9C,cAAc,IAAI,iBAAiB,IAAI;AAAA,IACvC,cAAc,IAAI,iBAAiB,IAAI;AAAA,IACvC,SAAS,IAAI;AAAA,IACb,mBAAmB,IAAI,uBAAuB,IAAI;AAAA,IAClD,OAAO,IAAI;AAAA,IACX,eAAe,IAAI,kBAAkB,IAAI;AAAA,EAC3C;AACF;AAGA,SAAS,kCACP,KAC0B;AAC1B,SAAO;AAAA,IACL,SAAS,IAAI,WAAW;AAAA,IACxB,OAAO,IAAI,UAAU,IAAI;AAAA,IACzB,QAAQ;AAAA,IACR,WAAW,IAAI,cAAc,IAAI,aAAa;AAAA,IAC9C,eAAe,IAAI,kBAAkB,IAAI;AAAA,IACzC,MAAM,IAAI,SAAS,IAAI,QAAQ;AAAA,EACjC;AACF;AAUO,SAAS,+BACd,SACA,WACA,WACA,QACS;AACT,QAAM,eAAW,0BAAW,UAAU,MAAM,EACzC,OAAO,GAAG,SAAS,IAAI,OAAO,EAAE,EAChC,OAAO,KAAK;AACf,QAAM,oBAAoB,UAAU,QAAQ;AAC5C,MAAI,UAAU,WAAW,kBAAkB,OAAQ,QAAO;AAC1D,aAAO;AAAA,IACL,OAAO,KAAK,WAAW,MAAM;AAAA,IAC7B,OAAO,KAAK,mBAAmB,MAAM;AAAA,EACvC;AACF;AAGO,IAAM,QAAN,MAAY;AAAA,EA2DjB,YAAY,QAAiB,UAAkB,2BAA2B;AACxE,QAAI,CAAC,QAAQ;AACX,eAAS,QAAQ,IAAI;AACrB,UAAI,CAAC,QAAQ;AACX,cAAM,IAAI,MAAM,0BAA0B;AAAA,MAC5C;AAAA,IACF;AACA,SAAK,UAAU;AACf,SAAK,UAAU;AAAA,MACb,gBAAgB;AAAA,MAChB,aAAa;AAAA,IACf;AAGA,SAAK,eAAe;AAAA,MAClB,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,MAAM,KAAK,kBAAkB,KAAK,IAAI;AAAA,MACtC,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,MAAM,KAAK,kBAAkB,KAAK,IAAI;AAAA,MACtC,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,cAAc,KAAK,0BAA0B,KAAK,IAAI;AAAA,MACtD,WAAW,KAAK,uBAAuB,KAAK,IAAI;AAAA,IAClD;AAGA,SAAK,QAAQ;AAAA,MACX,QAAQ,KAAK,aAAa,KAAK,IAAI;AAAA,MACnC,QAAQ,KAAK,aAAa,KAAK,IAAI;AAAA,MACnC,UAAU,KAAK,eAAe,KAAK,IAAI;AAAA,MACvC,WAAW,KAAK,gBAAgB,KAAK,IAAI;AAAA,MACzC,QAAQ,KAAK,aAAa,KAAK,IAAI;AAAA,MACnC,MAAM,KAAK,WAAW,KAAK,IAAI;AAAA,MAC/B,mBAAmB,KAAK,wBAAwB,KAAK,IAAI;AAAA,IAC3D;AAGA,SAAK,cAAc;AAAA,MACjB,MAAM,KAAK,iBAAiB,KAAK,IAAI;AAAA,MACrC,YAAY,KAAK,uBAAuB,KAAK,IAAI;AAAA,IACnD;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKQ,mBAAmB,MAAuB;AAChD,UAAM,YAAY;AAClB,QAAI,CAAC,UAAU,KAAK,IAAI,GAAG;AACzB,aAAO;AAAA,IACT;AACA,UAAM,aAAa,IAAI,KAAK,IAAI;AAChC,WAAO,sBAAsB,QAAQ,CAAC,MAAM,WAAW,QAAQ,CAAC;AAAA,EAClE;AAAA;AAAA;AAAA;AAAA,EAKQ,YAAY,KAAsB;AACxC,QAAI;AACF,UAAI,IAAI,GAAG;AACX,aAAO;AAAA,IACT,QAAQ;AACN,aAAO;AAAA,IACT;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKQ,eAAe,QAAyB;AAG9C,UAAM,cACJ;AACF,WAAO,YAAY,KAAK,MAAM;AAAA,EAChC;AAAA;AAAA;AAAA;AAAA,EAKQ,kBAAkB,WAA4B;AAGpD,UAAM,QAAQ,UAAU,MAAM,GAAG;AACjC,QAAI,MAAM,WAAW,EAAG,QAAO;AAE/B,UAAM,gBAAgB;AACtB,UAAM,eAAe;AAErB,WACE,cAAc,KAAK,MAAM,CAAC,CAAC,KAC3B,aAAa,KAAK,MAAM,CAAC,CAAC,KAC1B,MAAM,CAAC,EAAE,SAAS,KAClB,MAAM,CAAC,EAAE,SAAS;AAAA,EAEtB;AAAA;AAAA;AAAA;AAAA,EAKQ,eAAe,QAAyB;AAE9C,QAAI,KAAK,YAAY,MAAM,GAAG;AAC5B,aAAO;AAAA,IACT;AAGA,QAAI,KAAK,eAAe,MAAM,GAAG;AAC/B,aAAO;AAAA,IACT;AAGA,QAAI,KAAK,kBAAkB,MAAM,GAAG;AAClC,aAAO;AAAA,IACT;AAEA,WAAO;AAAA,EACT;AAAA;AAAA;AAAA;AAAA,EAKQ,gBAAgB,SAGtB;AACA,UAAM,iBAA2B,CAAC;AAElC,eAAW,UAAU,SAAS;AAC5B,UAAI,CAAC,KAAK,eAAe,MAAM,GAAG;AAChC,uBAAe,KAAK,MAAM;AAAA,MAC5B;AAAA,IACF;AAEA,WAAO;AAAA,MACL,OAAO,eAAe,WAAW;AAAA,MACjC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAsBA,MAAM,OACJ,OACA,UAAyB,CAAC,GACD;AACzB,QAAI;AAEF,YAAM,oBAAgC;AACtC,YAAM,uBAAuB;AAC7B,YAAM,oBAAoB;AAC1B,YAAM,4BAA4B;AAGlC,UAAI,kBAA8B;AAClC,YAAM,2BAA2B,QAAQ,YAAY,YAAY;AAEjE,UACE,6BAA6B,SAC7B,6BAA6B,iBAC7B,6BAA6B,SAC7B,6BAA6B,QAC7B;AACA,0BAAkB;AAAA,MACpB,WAAW,QAAQ,eAAe,QAAW;AAC3C,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OACE;AAAA,UACF,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UAAI,QAAQ,aAAa,CAAC,KAAK,mBAAmB,QAAQ,SAAS,GAAG;AACpE,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,UAAI,QAAQ,WAAW,CAAC,KAAK,mBAAmB,QAAQ,OAAO,GAAG;AAChE,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,YAAM,gBAAgB,QAAQ,iBAAiB;AAC/C,UAAI,gBAAgB,KAAK,gBAAgB,KAAK;AAC5C,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UAAI,QAAQ,oBAAoB,QAAW;AACzC,YAAI,CAAC,MAAM,QAAQ,QAAQ,eAAe,GAAG;AAC3C,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO;AAAA,YACP,OAAO;AAAA,YACP;AAAA,YACA,SAAS,CAAC;AAAA,YACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,YAC1C,yBAAyB;AAAA,YAC3B,kBAAkB;AAAA,UACpB;AAAA,QACF;AAEA,cAAM,4BAA4B,KAAK;AAAA,UACrC,QAAQ;AAAA,QACV;AACA,YAAI,CAAC,0BAA0B,OAAO;AACpC,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO,oDAAoD,0BAA0B,eAAe;AAAA,cAClG;AAAA,YACF,CAAC;AAAA,YACD,OAAO;AAAA,YACP;AAAA,YACA,SAAS,CAAC;AAAA,YACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,YAC1C,yBAAyB;AAAA,YAC3B,kBAAkB;AAAA,UACpB;AAAA,QACF;AAAA,MACF;AAGA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,YAAI,CAAC,MAAM,QAAQ,QAAQ,cAAc,GAAG;AAC1C,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO;AAAA,YACP,OAAO;AAAA,YACP;AAAA,YACA,SAAS,CAAC;AAAA,YACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,YAC1C,yBAAyB;AAAA,YAC3B,kBAAkB;AAAA,UACpB;AAAA,QACF;AAEA,cAAM,2BAA2B,KAAK;AAAA,UACpC,QAAQ;AAAA,QACV;AACA,YAAI,CAAC,yBAAyB,OAAO;AACnC,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO,mDAAmD,yBAAyB,eAAe;AAAA,cAChG;AAAA,YACF,CAAC;AAAA,YACD,OAAO;AAAA,YACP;AAAA,YACA,SAAS,CAAC;AAAA,YACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,YAC1C,yBAAyB;AAAA,YAC3B,kBAAkB;AAAA,UACpB;AAAA,QACF;AAAA,MACF;AAGA,YAAM,UAA+B;AAAA,QACnC;AAAA,QACA,aAAa;AAAA,QACb,iBAAiB;AAAA,QACjB,cAAc,QAAQ,cAAc;AAAA,QACpC,qBACE,QAAQ,sBAAsB;AAAA,MAClC;AAGA,UAAI,QAAQ,aAAa,QAAW;AAClC,gBAAQ,YAAY,QAAQ;AAAA,MAC9B;AAGA,UAAI,QAAQ,oBAAoB,QAAW;AACzC,gBAAQ,mBAAmB,QAAQ;AAAA,MACrC;AAEA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,gBAAQ,kBAAkB,QAAQ;AAAA,MACpC;AAEA,UAAI,QAAQ,aAAa,QAAW;AAClC,gBAAQ,WAAW,QAAQ;AAAA,MAC7B;AAEA,UAAI,QAAQ,cAAc,QAAW;AACnC,gBAAQ,aAAa,QAAQ;AAAA,MAC/B;AAEA,UAAI,QAAQ,YAAY,QAAW;AACjC,gBAAQ,WAAW,QAAQ;AAAA,MAC7B;AAEA,UAAI,QAAQ,gBAAgB,QAAW;AACrC,gBAAQ,eAAe,QAAQ;AAAA,MACjC;AAEA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,gBAAQ,kBAAkB,QAAQ;AAAA,MACpC;AAEA,UAAI,QAAQ,aAAa,QAAW;AAClC,gBAAQ,YAAY,QAAQ;AAAA,MAC9B;AAEA,UAAI,QAAQ,YAAY,QAAW;AACjC,gBAAQ,WAAW,QAAQ;AAAA,MAC7B;AAEA,YAAM,WAAW,MAAM,aAAAA,QAAM,KAAK,GAAG,KAAK,OAAO,eAAe,SAAS;AAAA,QACvE,SAAS,KAAK;AAAA,MAChB,CAAC;AAED,UAAI,CAAC,SAAS,UAAU,SAAS,SAAS,OAAO,SAAS,UAAU,KAAK;AACvE,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO,SAAS,MAAM;AAAA,UACtB,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,aAAO,SAAS;AAAA,IAClB,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,QACpC,OAAO;AAAA,QACP;AAAA,QACA,SAAS,CAAC;AAAA,QACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,QAC5C,yBAAyB;AAAA,QACzB,kBAAkB;AAAA,MACpB;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAeA,MAAM,SACJ,MACA,UAA2B,CAAC,GAC0B;AACtD,QAAI;AAEF,UAAI,CAAC,QAAQ,CAAC,MAAM,QAAQ,IAAI,GAAG;AACjC,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,gBAAgB;AAAA,UAChB,gBAAgB;AAAA,UAChB,aAAa;AAAA,UACb,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,UAAI,KAAK,WAAW,GAAG;AACrB,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,gBAAgB;AAAA,UAChB,gBAAgB;AAAA,UAChB,aAAa;AAAA,UACb,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,YAAM,UAAU,QAAQ,UAAU,QAAQ,KAAK,SAAS;AAExD,UAAI,KAAK,SAAS,MAAM,CAAC,QAAQ,OAAO;AACtC,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OACE;AAAA,UACF,gBAAgB,KAAK;AAAA,UACrB,gBAAgB;AAAA,UAChB,aAAa,KAAK;AAAA,UAClB,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,UAAI,KAAK,SAAS,IAAI;AACpB,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,gBAAgB,KAAK;AAAA,UACrB,gBAAgB;AAAA,UAChB,aAAa,KAAK;AAAA,UAClB,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UACE,QAAQ,iBACR,CAAC,CAAC,UAAU,QAAQ,MAAM,EAAE,SAAS,QAAQ,aAAa,GAC1D;AACA,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,gBAAgB,KAAK;AAAA,UACrB,gBAAgB;AAAA,UAChB,aAAa,KAAK;AAAA,UAClB,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,cAAM,eAAe,CAAC,SAAS,UAAU,SAAS,KAAK;AACvD,YACE,OAAO,QAAQ,mBAAmB,YAClC,CAAC,aAAa,SAAS,QAAQ,cAAc,GAC7C;AACA,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OACE;AAAA,YACF,gBAAgB,KAAK;AAAA,YACrB,gBAAgB;AAAA,YAChB,aAAa,KAAK;AAAA,YAClB,SAAS,CAAC;AAAA,YACV,oBAAoB;AAAA,YACpB,kBAAkB;AAAA,UACpB;AAAA,QACF;AACA,YACE,OAAO,QAAQ,mBAAmB,YAClC,QAAQ,kBAAkB,GAC1B;AACA,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO;AAAA,YACP,gBAAgB,KAAK;AAAA,YACrB,gBAAgB;AAAA,YAChB,aAAa,KAAK;AAAA,YAClB,SAAS,CAAC;AAAA,YACV,oBAAoB;AAAA,YACpB,kBAAkB;AAAA,UACpB;AAAA,QACF;AAAA,MACF;AAGA,YAAM,UAA+B;AAAA,QACnC;AAAA,MACF;AAGA,UAAI,QAAQ,YAAY,QAAW;AACjC,gBAAQ,UAAU,QAAQ;AAAA,MAC5B;AAEA,UAAI,QAAQ,kBAAkB,QAAW;AACvC,gBAAQ,iBAAiB,QAAQ;AAAA,MACnC;AAEA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,gBAAQ,kBAAkB,QAAQ;AAAA,MACpC;AAEA,UAAI,QAAQ,oBAAoB,QAAW;AACzC,gBAAQ,oBAAoB,QAAQ;AAAA,MACtC;AAEA,UAAI,QAAQ,eAAe,QAAW;AACpC,gBAAQ,aAAa,QAAQ;AAAA,MAC/B;AAEA,UAAI,SAAS;AACX,gBAAQ,QAAQ;AAAA,MAClB;AACA,UAAI,QAAQ,eAAe,QAAW;AACpC,gBAAQ,cAAc,QAAQ;AAAA,MAChC;AAEA,YAAM,WAAW,MAAM,aAAAA,QAAM,KAAK,GAAG,KAAK,OAAO,aAAa,SAAS;AAAA,QACrE,SAAS,KAAK;AAAA,MAChB,CAAC;AAED,UAAI,CAAC,SAAS,UAAU,SAAS,SAAS,OAAO,SAAS,UAAU,KAAK;AACvE,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO,SAAS,MAAM,SAAS;AAAA,UAC/B,gBAAgB,KAAK;AAAA,UACrB,gBAAgB;AAAA,UAChB,aAAa,KAAK;AAAA,UAClB,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UAAI,SAAS,WAAW,KAAK;AAC3B,eAAO,kCAAkC,SAAS,IAAI;AAAA,MACxD;AAEA,aAAO,SAAS;AAAA,IAClB,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,QACpC,gBAAgB,KAAK;AAAA,QACrB,gBAAgB;AAAA,QAChB,aAAa,KAAK;AAAA,QAClB,SAAS,CAAC;AAAA,QACV,oBAAoB;AAAA,QACpB,kBAAkB;AAAA,MACpB;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOA,MAAM,eAAe,OAA6C;AAChE,QAAI;AACF,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,kBAAkB,KAAK;AAAA,QACtC,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AACA,aAAO,6BAA6B,SAAS,IAAI;AAAA,IACnD,SAAS,GAAQ;AACf,YAAM,UAAU,EAAE,UAAU;AAC5B,YAAM,SAAS,EAAE,UAAU;AAC3B,aAAO;AAAA,QACL,SAAS;AAAA,QACT;AAAA,QACA,QAAQ;AAAA,QACR,WAAW;AAAA,QACX,eAAe;AAAA,QACf,YAAY;AAAA,QACZ,WAAW;AAAA,QACX,WAAW;AAAA,QACX,OACE,SAAS,UACR,WAAW,MACR,mDACA,WAAW,MACT,OAAO,KAAK,eACZ,EAAE;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,MAAM,WACJ,OACA,UAAkC,CAAC,GACL;AAC9B,UAAM,eAAe,QAAQ,gBAAgB;AAC7C,UAAM,cAAc,QAAQ,eAAe;AAC3C,UAAM,YAAY,KAAK,IAAI;AAE3B,WAAO,MAAM;AACX,YAAM,SAAS,MAAM,KAAK,eAAe,KAAK;AAE9C,UAAI,CAAC,OAAO,WAAW,OAAO,OAAO;AACnC,cAAM,IAAI,MAAM,OAAO,KAAK;AAAA,MAC9B;AAEA,UAAI,QAAQ,YAAY;AACtB,gBAAQ,WAAW,MAAM;AAAA,MAC3B;AAEA,UACE,OAAO,WAAW,eAClB,OAAO,WAAW,aAClB,OAAO,WAAW,UAClB;AACA,eAAO;AAAA,MACT;AAEA,UAAI,KAAK,IAAI,IAAI,YAAY,aAAa;AACxC,cAAM,IAAI,MAAM,4BAA4B;AAAA,MAC9C;AAEA,YAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,YAAY,CAAC;AAAA,IAClE;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYA,MAAc,oBACZ,SACqC;AACrC,QAAI;AAEF,YAAM,aAAa,QAAQ,SAAS,QAAQ;AAG5C,UAAI,CAAC,YAAY,KAAK,GAAG;AACvB,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAIA,YAAM,OAAO,QAAQ,QAAQ,QAAQ;AACrC,YAAM,UAA+B;AAAA,QACnC,OAAO;AAAA,QACP,MAAM,QAAQ;AAAA;AAAA,QACd,gBAAgB,QAAQ,iBAAiB,CAAC,UAAU;AAAA,QACpD,gBAAgB,QAAQ,kBAAkB;AAAA,MAC5C;AAGA,UAAI,QAAQ,SAAU,SAAQ,WAAW,QAAQ;AACjD,UAAI,QAAQ,QAAQ;AAClB,gBAAQ,SAAS,CAAC;AAClB,YAAI,QAAQ,OAAO,YAAY;AAC7B,kBAAQ,OAAO,cAAc,QAAQ,OAAO;AAAA,QAC9C;AACA,YAAI,QAAQ,OAAO,iBAAiB;AAClC,kBAAQ,OAAO,mBAAmB,QAAQ,OAAO;AAAA,QACnD;AACA,YAAI,QAAQ,OAAO,iBAAiB;AAClC,kBAAQ,OAAO,mBAAmB,QAAQ,OAAO;AAAA,QACnD;AACA,YAAI,QAAQ,OAAO,WAAW;AAC5B,kBAAQ,OAAO,aAAa,QAAQ,OAAO;AAAA,QAC7C;AACA,YAAI,QAAQ,OAAO,SAAS;AAC1B,kBAAQ,OAAO,WAAW,QAAQ,OAAO;AAAA,QAC3C;AACA,YAAI,QAAQ,OAAO,UAAU;AAC3B,kBAAQ,OAAO,WAAW,QAAQ,OAAO;AAAA,QAC3C;AAAA,MACF;AACA,UAAI,QAAQ,KAAM,SAAQ,OAAO,QAAQ;AACzC,UAAI,QAAQ,MAAO,SAAQ,QAAQ,QAAQ;AAC3C,UAAI,QAAQ,aAAc,SAAQ,eAAe,QAAQ;AACzD,UAAI,QAAQ,WAAY,SAAQ,cAAc,QAAQ;AACtD,UAAI,QAAQ,iBAAiB;AAC3B,gBAAQ,mBAAmB,QAAQ;AAAA,MACrC;AACA,UAAI,QAAQ,WAAY,SAAQ,cAAc,QAAQ;AACtD,UAAI,QAAQ;AACV,gBAAQ,sBAAsB,QAAQ;AACxC,UAAI,QAAQ,YAAY;AACtB,YAAI,OAAO,QAAQ,eAAe,UAAU;AAC1C,kBAAQ,cAAc,QAAQ;AAAA,QAChC,OAAO;AACL,kBAAQ,cAAc;AAAA,YACpB,OAAO,QAAQ,WAAW;AAAA,YAC1B,YAAY,QAAQ,WAAW;AAAA,UACjC;AAAA,QACF;AAAA,MACF;AACA,UAAI,QAAQ,SAAU,SAAQ,WAAW,QAAQ;AAEjD,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO;AAAA,QACf;AAAA,QACA,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACqC;AACrC,QAAI;AACF,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,kBACZ,QACA,UAAuB,CAAC,GACa;AACrC,UAAM,eAAe,QAAQ,gBAAgB;AAC7C,UAAM,cAAc,QAAQ,eAAe;AAC3C,UAAM,YAAY,KAAK,IAAI;AAE3B,WAAO,MAAM;AACX,YAAM,SAAS,MAAM,KAAK,oBAAoB,MAAM;AAEpD,UAAI,CAAC,OAAO,SAAS;AACnB,cAAM,IAAI,MAAM,OAAO,KAAK;AAAA,MAC9B;AAGA,UAAI,QAAQ,YAAY;AACtB,gBAAQ,WAAW,MAAM;AAAA,MAC3B;AAGA,UACE,OAAO,WAAW,eAClB,OAAO,WAAW,YAClB,OAAO,WAAW,aAClB;AACA,eAAO;AAAA,MACT;AAGA,UAAI,KAAK,IAAI,IAAI,YAAY,aAAa;AACxC,cAAM,IAAI,MAAM,4BAA4B;AAAA,MAC9C;AAGA,YAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,YAAY,CAAC;AAAA,IAClE;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACA,UACe;AACf,QAAI,aAAa;AACjB,QAAI,mBAAmB;AAEvB,WAAO,CAAC,YAAY;AAClB,UAAI;AACF,cAAM,SAAS,MAAM,KAAK,oBAAoB,MAAM;AAEpD,YAAI,CAAC,OAAO,SAAS;AACnB,cAAI,SAAS,SAAS;AACpB,qBAAS,QAAQ,IAAI,MAAM,OAAO,KAAK,CAAC;AAAA,UAC1C;AACA;AAAA,QACF;AAGA,YAAI,OAAO,YAAY,SAAS,YAAY;AAC1C,mBAAS;AAAA,YACP,OAAO,SAAS;AAAA,YAChB,OAAO,SAAS;AAAA,UAClB;AAAA,QACF;AAGA,YAAI,OAAO,YAAY,SAAS,WAAW;AACzC,gBAAM,cAAc,OAAO,SAAS,MAAM,gBAAgB;AAC1D,sBAAY,QAAQ,CAAC,QAAQ,SAAS,UAAW,GAAG,CAAC;AACrD,6BAAmB,OAAO,SAAS;AAAA,QACrC;AAGA,YAAI,OAAO,WAAW,aAAa;AACjC,cAAI,SAAS,YAAY;AACvB,qBAAS,WAAW,MAAM;AAAA,UAC5B;AACA,uBAAa;AAAA,QACf,WACE,OAAO,WAAW,YAClB,OAAO,WAAW,aAClB;AACA,cAAI,SAAS,SAAS;AACpB,qBAAS;AAAA,cACP,IAAI,MAAM,OAAO,SAAS,QAAQ,OAAO,MAAM,EAAE;AAAA,YACnD;AAAA,UACF;AACA,uBAAa;AAAA,QACf;AAEA,YAAI,CAAC,YAAY;AACf,gBAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,GAAI,CAAC;AAAA,QAC1D;AAAA,MACF,SAAS,OAAY;AACnB,YAAI,SAAS,SAAS;AACpB,mBAAS,QAAQ,KAAK;AAAA,QACxB;AACA,cAAM;AAAA,MACR;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,kBACZ,SACmC;AACnC,QAAI;AACF,YAAM,QAAQ,SAAS,SAAS;AAChC,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,4BAA4B,KAAK;AAAA,QAChD,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,MAAM,SAAS,KAAK;AAAA,IAC9C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACA,aACqC;AACrC,QAAI;AACF,UAAI,CAAC,aAAa,KAAK,GAAG;AACxB,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAEA,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,EAAE,YAAY;AAAA,QACd,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACqC;AACrC,QAAI;AACF,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,CAAC;AAAA,QACD,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACqC;AACrC,QAAI;AACF,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,0BACZ,QACA,UAC2C;AAC3C,QAAI;AACF,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,EAAE,QAAQ,SAAS;AAAA,QACnB,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,uBACZ,QACA,SACA,UAAwC,CAAC,GACD;AACxC,QAAI;AAEF,YAAM,SAAS,IAAI,gBAAgB;AACnC,UAAI,QAAQ,OAAO;AACjB,eAAO,OAAO,SAAS,QAAQ,KAAK;AAAA,MACtC;AAGA,YAAM,UAAkC,CAAC;AACzC,UAAI,CAAC,QAAQ,OAAO;AAClB,gBAAQ,WAAW,IAAI,KAAK,QAAQ,WAAW;AAAA,MACjD;AAEA,YAAM,MAAM,GACV,KAAK,OACP,uBAAuB,MAAM,WAAW,OAAO,GAC7C,OAAO,SAAS,IAAI,IAAI,OAAO,SAAS,CAAC,KAAK,EAChD;AAEA,YAAM,WAAW,MAAM,aAAAA,QAAM,IAAI,KAAK;AAAA,QACpC;AAAA,QACA,cAAc;AAAA;AAAA,MAChB,CAAC;AAED,aAAO;AAAA,QACL,SAAS;AAAA,QACT,MAAM,OAAO,KAAK,SAAS,IAAI;AAAA,QAC/B,aACE,SAAS,QAAQ,cAAc,KAAK;AAAA,MACxC;AAAA,IACF,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmBA,MAAc,aACZ,UAA8B,CAAC,GACD;AAC9B,QAAI;AACF,YAAM,UAA+B,CAAC;AAEtC,UAAI,QAAQ,KAAM,SAAQ,OAAO,QAAQ;AAEzC,YAAM,OAAO,QAAQ,QAAQ,QAAQ;AACrC,UAAI,KAAM,SAAQ,OAAO;AACzB,UAAI,QAAQ,cAAe,SAAQ,iBAAiB,QAAQ;AAC5D,UAAI,QAAQ,QAAQ;AAClB,gBAAQ,SAAS,CAAC;AAClB,YAAI,QAAQ,OAAO,YAAY;AAC7B,kBAAQ,OAAO,cAAc,QAAQ,OAAO;AAAA,QAC9C;AACA,YAAI,QAAQ,OAAO,iBAAiB;AAClC,kBAAQ,OAAO,mBAAmB,QAAQ,OAAO;AAAA,QACnD;AACA,YAAI,QAAQ,OAAO,iBAAiB;AAClC,kBAAQ,OAAO,mBAAmB,QAAQ,OAAO;AAAA,QACnD;AACA,YAAI,QAAQ,OAAO,WAAW;AAC5B,kBAAQ,OAAO,aAAa,QAAQ,OAAO;AAAA,QAC7C;AACA,YAAI,QAAQ,OAAO,SAAS;AAC1B,kBAAQ,OAAO,WAAW,QAAQ,OAAO;AAAA,QAC3C;AACA,YAAI,QAAQ,OAAO,UAAU;AAC3B,kBAAQ,OAAO,WAAW,QAAQ,OAAO;AAAA,QAC3C;AAAA,MACF;AACA,UAAI,QAAQ,WAAY,SAAQ,cAAc,QAAQ;AACtD,UAAI,QAAQ,SAAU,SAAQ,WAAW,QAAQ;AAEjD,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO;AAAA,QACf;AAAA,QACA,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOA,MAAc,aAAa,SAA+C;AACxE,QAAI;AACF,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,yBAAyB,OAAO;AAAA,QAC/C,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,OAAO,SAAS,KAAK;AAAA,IAC/C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EASA,MAAc,eACZ,SACA,SACgC;AAChC,QAAI;AACF,UAAI,CAAC,QAAQ,SAAS,CAAC,MAAM,QAAQ,QAAQ,KAAK,GAAG;AACnD,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAEA,UAAI,QAAQ,MAAM,WAAW,GAAG;AAC9B,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAEA,UAAI,QAAQ,MAAM,SAAS,KAAK;AAC9B,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAGA,iBAAW,QAAQ,QAAQ,OAAO;AAChC,YAAI,CAAC,KAAK,SAAS,CAAC,KAAK,OAAO;AAC9B,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO;AAAA,UACT;AAAA,QACF;AAAA,MACF;AAKA,YAAM,eAAe,QAAQ,MAAM,IAAI,CAAC,SAAS;AAC/C,cAAM,cAAmC,CAAC;AAG1C,cAAM,aAAa,KAAK,SAAS,KAAK;AACtC,YAAI,YAAY;AACd,sBAAY,QAAQ;AAAA,QACtB;AAEA,YAAI,KAAK,GAAI,aAAY,KAAK,KAAK;AACnC,YAAI,KAAK,SAAU,aAAY,WAAW,KAAK;AAC/C,YAAI,KAAK,KAAM,aAAY,OAAO,KAAK;AACvC,YAAI,KAAK,SAAU,aAAY,WAAW,KAAK;AAE/C,eAAO;AAAA,MACT,CAAC;AAED,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,yBAAyB,OAAO;AAAA,QAC/C,EAAE,OAAO,aAAa;AAAA,QACtB,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAWA,MAAc,gBACZ,SACA,UAAiC,CAAC,GACD;AACjC,QAAI;AAEF,YAAM,SAAS,IAAI,gBAAgB;AACnC,UAAI,QAAQ,QAAQ;AAClB,eAAO,OAAO,UAAU,QAAQ,MAAM;AAAA,MACxC;AACA,UAAI,QAAQ,UAAU,QAAW;AAC/B,eAAO,OAAO,SAAS,QAAQ,MAAM,SAAS,CAAC;AAAA,MACjD;AACA,UAAI,QAAQ,SAAS;AACnB,eAAO,OAAO,YAAY,QAAQ,OAAO;AAAA,MAC3C;AACA,UAAI,QAAQ,kBAAkB,QAAW;AACvC,eAAO,OAAO,kBAAkB,QAAQ,cAAc,SAAS,CAAC;AAAA,MAClE;AAEA,YAAM,MAAM,GAAG,KAAK,OAAO,yBAAyB,OAAO,SACzD,OAAO,SAAS,IAAI,IAAI,OAAO,SAAS,CAAC,KAAK,EAChD;AACA,YAAM,WAAW,MAAM,aAAAA,QAAM,IAAI,KAAK,EAAE,SAAS,KAAK,QAAQ,CAAC;AAE/D,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOA,MAAc,aAAa,SAA+C;AACxE,QAAI;AACF,YAAM,WAAW,MAAM,aAAAA,QAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,yBAAyB,OAAO;AAAA,QAC/C,CAAC;AAAA,QACD,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,MAAc,WACZ,UAA8B,CAAC,GACD;AAC9B,QAAI;AAEF,YAAM,SAAS,IAAI,gBAAgB;AACnC,UAAI,QAAQ,UAAU,QAAW;AAC/B,eAAO,OAAO,SAAS,QAAQ,MAAM,SAAS,CAAC;AAAA,MACjD;AAEA,YAAM,MAAM,GAAG,KAAK,OAAO,wBACzB,OAAO,SAAS,IAAI,IAAI,OAAO,SAAS,CAAC,KAAK,EAChD;AACA,YAAM,WAAW,MAAM,aAAAA,QAAM,IAAI,KAAK;AAAA,QACpC,SAAS,KAAK;AAAA,MAChB,CAAC;AAED,aAAO,EAAE,SAAS,MAAM,SAAS,SAAS,KAAK;AAAA,IACjD,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAWA,MAAc,wBACZ,SACA,UAA4B,CAAC,GACD;AAC5B,UAAM,eAAe,QAAQ,gBAAgB;AAC7C,UAAM,cAAc,QAAQ,eAAe;AAC3C,UAAM,YAAY,KAAK,IAAI;AAE3B,WAAO,MAAM;AACX,YAAM,iBAAiB,MAAM,KAAK,aAAa,OAAO;AAEtD,UAAI,CAAC,eAAe,WAAW,CAAC,eAAe,OAAO;AACpD,cAAM,IAAI,MAAM,eAAe,SAAS,4BAA4B;AAAA,MACtE;AAEA,YAAM,QAAQ,eAAe;AAG7B,UAAI,QAAQ,YAAY;AACtB,gBAAQ,WAAW,KAAK;AAAA,MAC1B;AAGA,UACE,MAAM,WAAW,eACjB,MAAM,WAAW,2BACjB,MAAM,WAAW,aACjB;AACA,eAAO;AAAA,MACT;AAGA,UAAI,KAAK,IAAI,IAAI,YAAY,aAAa;AACxC,cAAM,IAAI,MAAM,4BAA4B;AAAA,MAC9C;AAGA,YAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,YAAY,CAAC;AAAA,IAClE;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmBA,MAAM,OACJ,OACA,UAAyB,CAAC,GAG1B;AAEA,UAAM,kBAAkB,KAAK,qBAAqB,OAAO,OAAO;AAChE,QAAI,iBAAiB;AACnB,UAAI,QAAQ,WAAW;AACrB,eAAO,KAAK,qBAAqB,eAAe;AAAA,MAClD;AACA,aAAO,EAAE,SAAS,OAAO,OAAO,gBAAgB;AAAA,IAClD;AAEA,UAAM,UAAU,KAAK,mBAAmB,OAAO,OAAO;AAEtD,QAAI,QAAQ,WAAW;AACrB,aAAO,KAAK,aAAa,OAAO;AAAA,IAClC,OAAO;AACL,aAAO,KAAK,YAAY,OAAO;AAAA,IACjC;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKQ,qBACN,OACA,SACe;AAEf,QAAI,CAAC,SAAS,OAAO,UAAU,YAAY,MAAM,KAAK,EAAE,WAAW,GAAG;AACpE,aAAO;AAAA,IACT;AAGA,UAAM,2BAA2B,QAAQ,YAAY,YAAY;AACjE,QACE,6BAA6B,UAC7B,6BAA6B,SAC7B,6BAA6B,iBAC7B,6BAA6B,SAC7B,6BAA6B,QAC7B;AACA,aAAO;AAAA,IACT;AAGA,QAAI,QAAQ,uBAAuB,QAAW;AAC5C,UAAI,OAAO,QAAQ,uBAAuB,UAAU;AAClD,eAAO;AAAA,MACT;AACA,YAAM,UAAU,QAAQ,mBAAmB,KAAK;AAChD,UAAI,QAAQ,WAAW,GAAG;AACxB,eAAO;AAAA,MACT;AACA,UAAI,QAAQ,SAAS,KAAM;AACzB,eAAO;AAAA,MACT;AAAA,IACF;AAGA,QAAI,QAAQ,iBAAiB,QAAW;AACtC,UACE,OAAO,QAAQ,iBAAiB,YAChC,QAAQ,gBAAgB,GACxB;AACA,eAAO;AAAA,MACT;AAAA,IACF;AAGA,QAAI,QAAQ,aAAa,CAAC,KAAK,mBAAmB,QAAQ,SAAS,GAAG;AACpE,aAAO;AAAA,IACT;AACA,QAAI,QAAQ,WAAW,CAAC,KAAK,mBAAmB,QAAQ,OAAO,GAAG;AAChE,aAAO;AAAA,IACT;AACA,QAAI,QAAQ,aAAa,QAAQ,SAAS;AACxC,YAAM,YAAY,IAAI,KAAK,QAAQ,SAAS;AAC5C,YAAM,UAAU,IAAI,KAAK,QAAQ,OAAO;AACxC,UAAI,YAAY,SAAS;AACvB,eAAO;AAAA,MACT;AAAA,IACF;AAGA,QAAI,QAAQ,oBAAoB,QAAW;AACzC,UAAI,CAAC,MAAM,QAAQ,QAAQ,eAAe,GAAG;AAC3C,eAAO;AAAA,MACT;AACA,YAAM,aAAa,KAAK,gBAAgB,QAAQ,eAAe;AAC/D,UAAI,CAAC,WAAW,OAAO;AACrB,eAAO,oDAAoD,WAAW,eAAe;AAAA,UACnF;AAAA,QACF,CAAC;AAAA,MACH;AAAA,IACF;AACA,QAAI,QAAQ,oBAAoB,QAAW;AACzC,UAAI,CAAC,MAAM,QAAQ,QAAQ,eAAe,GAAG;AAC3C,eAAO;AAAA,MACT;AACA,YAAM,aAAa,KAAK,gBAAgB,QAAQ,eAAe;AAC/D,UAAI,CAAC,WAAW,OAAO;AACrB,eAAO,oDAAoD,WAAW,eAAe;AAAA,UACnF;AAAA,QACF,CAAC;AAAA,MACH;AAAA,IACF;AAEA,WAAO;AAAA,EACT;AAAA;AAAA;AAAA;AAAA,EAKQ,mBACN,OACA,SACqB;AACrB,UAAM,oBAAgC;AACtC,UAAM,2BAA2B,QAAQ,YAAY,YAAY;AACjE,QAAI,kBAA8B;AAElC,QACE,6BAA6B,SAC7B,6BAA6B,iBAC7B,6BAA6B,SAC7B,6BAA6B,QAC7B;AACA,wBAAkB;AAAA,IACpB;AAEA,UAAM,UAA+B;AAAA,MACnC,OAAO,MAAM,KAAK;AAAA,MAClB,aAAa;AAAA,IACf;AAEA,QAAI,QAAQ,iBAAiB;AAC3B,cAAQ,iBAAiB,QAAQ;AACnC,QAAI,QAAQ,qBAAqB;AAC/B,cAAQ,oBAAoB,QAAQ;AACtC,QAAI,QAAQ,uBAAuB;AACjC,cAAQ,sBAAsB,QAAQ,mBAAmB,KAAK;AAChE,QAAI,QAAQ,gBAAgB;AAC1B,cAAQ,eAAe,QAAQ;AACjC,QAAI,QAAQ,oBAAoB;AAC9B,cAAQ,mBAAmB,QAAQ;AACrC,QAAI,QAAQ,oBAAoB;AAC9B,cAAQ,mBAAmB,QAAQ;AACrC,QAAI,QAAQ,cAAc,OAAW,SAAQ,aAAa,QAAQ;AAClE,QAAI,QAAQ,YAAY,OAAW,SAAQ,WAAW,QAAQ;AAC9D,QAAI,QAAQ,aAAa,OAAW,SAAQ,YAAY,QAAQ;AAEhE,WAAO;AAAA,EACT;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,YACZ,SACyB;AACzB,QAAI;AACF,YAAM,WAAW,MAAM,MAAM,GAAG,KAAK,OAAO,WAAW;AAAA,QACrD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,GAAG,KAAK;AAAA,UACR,QAAQ;AAAA,QACV;AAAA,QACA,MAAM,KAAK,UAAU,OAAO;AAAA,MAC9B,CAAC;AAED,UAAI,CAAC,SAAS,IAAI;AAChB,cAAM,YAAY,MAAM,SAAS,KAAK,EAAE,MAAM,OAAO,CAAC,EAAE;AACxD,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO,UAAU,SAAS,eAAe,SAAS,MAAM;AAAA,QAC1D;AAAA,MACF;AAGA,UAAI,cAAc;AAClB,UAAI,gBAAgC,CAAC;AACrC,UAAI,gBAAqB,CAAC;AAE1B,YAAM,SAAS,SAAS,MAAM,UAAU;AACxC,YAAM,UAAU,IAAI,YAAY;AAChC,UAAI,SAAS;AAEb,UAAI,QAAQ;AACV,eAAO,MAAM;AACX,gBAAM,EAAE,MAAM,MAAM,IAAI,MAAM,OAAO,KAAK;AAC1C,cAAI,KAAM;AAEV,oBAAU,QAAQ,OAAO,OAAO,EAAE,QAAQ,KAAK,CAAC;AAChD,gBAAM,QAAQ,OAAO,MAAM,IAAI;AAC/B,mBAAS,MAAM,IAAI,KAAK;AAExB,qBAAW,QAAQ,OAAO;AACxB,gBAAI,CAAC,KAAK,WAAW,QAAQ,EAAG;AAChC,kBAAM,UAAU,KAAK,MAAM,CAAC;AAE5B,gBAAI,YAAY,SAAU;AAE1B,gBAAI;AACF,oBAAM,SAAS,KAAK,MAAM,OAAO;AAGjC,kBAAI,OAAO,kBAAkB,CAAC,OAAO,SAAS;AAC5C,gCAAgB,CAAC,GAAG,eAAe,GAAG,OAAO,cAAc;AAAA,cAC7D,WAES,OAAO,SAAS;AACvB,sBAAM,UAAU,OAAO,QAAQ,CAAC,GAAG,OAAO,WAAW;AACrD,oBAAI,QAAS,gBAAe;AAAA,cAC9B,WAES,OAAO,YAAY,QAAW;AACrC,gCAAgB;AAAA,cAClB;AAAA,YACF,QAAQ;AACN;AAAA,YACF;AAAA,UACF;AAAA,QACF;AAAA,MACF;AAGA,UAAI,cAAc,SAAS;AACzB,cAAM,qBACJ,cAAc,kBAAkB;AAClC,cAAMC,YAAkC;AAAA,UACtC,SAAS;AAAA,UACT,OAAO,cAAc,SAAS;AAAA,UAC9B,gBAAgB,cAAc,kBAAkB,QAAQ;AAAA,UACxD,UAAU,cAAc,YAAY,eAAe;AAAA,UACnD,gBAAgB;AAAA,UAChB,iBAAiB,cAAc,mBAAmB;AAAA,YAChD,QAAQ,CAAC;AAAA,YACT,mBAAmB;AAAA,YACnB,kBAAkB;AAAA,UACpB;AAAA,UACA,UAAU,cAAc,YAAY;AAAA,YAClC,cAAc;AAAA,YACd,eAAe;AAAA,UACjB;AAAA,UACA,MAAM,cAAc,QAAQ;AAAA,YAC1B,yBAAyB;AAAA,YACzB,0BAA0B;AAAA,YAC1B,sBAAsB;AAAA,UACxB;AAAA,QACF;AACA,YAAI,cAAc,qBAAqB;AACrC,UAAAA,UAAS,sBAAsB,cAAc;AAAA,QAC/C;AACA,eAAOA;AAAA,MACT;AAEA,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,cAAc,SAAS;AAAA,MAChC;AAAA,IACF,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,WAAW;AAAA,MACtB;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,OAAe,aACb,SACkD;AAClD,QAAI;AACF,YAAM,WAAW,MAAM,MAAM,GAAG,KAAK,OAAO,WAAW;AAAA,QACrD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,GAAG,KAAK;AAAA,UACR,QAAQ;AAAA,QACV;AAAA,QACA,MAAM,KAAK,UAAU,OAAO;AAAA,MAC9B,CAAC;AAED,UAAI,CAAC,SAAS,IAAI;AAChB,cAAM,YAAY,MAAM,SAAS,KAAK,EAAE,MAAM,OAAO,CAAC,EAAE;AACxD,cAAM;AAAA,UACJ,MAAM;AAAA,UACN,OAAO,UAAU,SAAS,eAAe,SAAS,MAAM;AAAA,QAC1D;AACA;AAAA,MACF;AAEA,YAAM,SAAS,SAAS,MAAM,UAAU;AACxC,YAAM,UAAU,IAAI,YAAY;AAChC,UAAI,SAAS;AAEb,UAAI,CAAC,QAAQ;AACX,cAAM,EAAE,MAAM,SAAS,OAAO,mBAAmB;AACjD;AAAA,MACF;AAEA,aAAO,MAAM;AACX,cAAM,EAAE,MAAM,MAAM,IAAI,MAAM,OAAO,KAAK;AAC1C,YAAI,KAAM;AAEV,kBAAU,QAAQ,OAAO,OAAO,EAAE,QAAQ,KAAK,CAAC;AAChD,cAAM,QAAQ,OAAO,MAAM,IAAI;AAC/B,iBAAS,MAAM,IAAI,KAAK;AAExB,mBAAW,QAAQ,OAAO;AACxB,cAAI,CAAC,KAAK,WAAW,QAAQ,EAAG;AAChC,gBAAM,UAAU,KAAK,MAAM,CAAC;AAE5B,cAAI,YAAY,UAAU;AACxB,kBAAM,EAAE,MAAM,OAAO;AACrB;AAAA,UACF;AAEA,cAAI;AACF,kBAAM,SAAS,KAAK,MAAM,OAAO;AAGjC,gBAAI,OAAO,kBAAkB,OAAO,YAAY,QAAW;AACzD,oBAAM;AAAA,gBACJ,MAAM;AAAA,gBACN,gBAAgB,OAAO;AAAA,cACzB;AAAA,YACF,WAES,OAAO,SAAS;AACvB,oBAAM,QAAQ,OAAO,QAAQ,CAAC,GAAG,SAAS,CAAC;AAC3C,oBAAM,UAAU,MAAM,WAAW;AACjC,oBAAM,eAAe,OAAO,QAAQ,CAAC,GAAG;AAExC,kBAAI,WAAW,cAAc;AAC3B,sBAAM,EAAE,MAAM,WAAW,SAAS,eAAe,aAAa;AAAA,cAChE;AAAA,YACF,WAES,OAAO,YAAY,QAAW;AACrC,oBAAM;AAAA,gBACJ,MAAM;AAAA,gBACN,OAAO,OAAO;AAAA,gBACd,gBAAgB,OAAO;AAAA,gBACvB,UAAU,OAAO;AAAA,gBACjB,gBAAgB,OAAO;AAAA,gBACvB,iBAAiB,OAAO;AAAA,gBACxB,UAAU,OAAO;AAAA,gBACjB,MAAM,OAAO;AAAA,gBACb,qBAAqB,OAAO;AAAA,cAC9B;AAAA,YACF;AAAA,UACF,QAAQ;AACN;AAAA,UACF;AAAA,QACF;AAAA,MACF;AAAA,IACF,SAAS,GAAQ;AACf,YAAM,EAAE,MAAM,SAAS,OAAO,EAAE,WAAW,gBAAgB;AAAA,IAC7D;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,OAAe,qBACb,OACkD;AAClD,UAAM,EAAE,MAAM,SAAS,MAAM;AAAA,EAC/B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,MAAc,iBACZ,UAAkC,CAAC,GACD;AAClC,QAAI;AAEF,YAAM,SAAS,IAAI,gBAAgB;AACnC,UAAI,QAAQ,UAAU;AACpB,eAAO,OAAO,YAAY,QAAQ,QAAQ;AAAA,MAC5C;AAEA,YAAM,MAAM,GAAG,KAAK,OAAO,eACzB,OAAO,SAAS,IAAI,IAAI,OAAO,SAAS,CAAC,KAAK,EAChD;AACA,YAAM,WAAW,MAAM,aAAAD,QAAM,IAAI,KAAK,EAAE,SAAS,KAAK,QAAQ,CAAC;AAE/D,aAAO,EAAE,SAAS,MAAM,aAAa,SAAS,KAAK,YAAY;AAAA,IACjE,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,MAAc,yBAAiE;AAC7E,QAAI;AACF,YAAM,WAAW,MAAM,aAAAA,QAAM,IAAI,GAAG,KAAK,OAAO,2BAA2B;AAAA,QACzE,SAAS,KAAK;AAAA,MAChB,CAAC;AAED,aAAO,EAAE,SAAS,MAAM,YAAY,SAAS,KAAK,WAAW;AAAA,IAC/D,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AACF;","names":["axios","response"]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { createHmac, timingSafeEqual } from \"crypto\";\nimport axios from \"axios\";\nimport {\n SearchResponse,\n SearchType,\n SearchOptions,\n ContentsOptions,\n ContentsResponse,\n ContentsAsyncJobResponse,\n ContentsJobResponse,\n ContentsJobWaitOptions,\n AnswerOptions,\n AnswerResponse,\n AnswerSuccessResponse,\n AnswerStreamChunk,\n SearchResult,\n DeepResearchCreateOptions,\n DeepResearchCreateResponse,\n DeepResearchStatusResponse,\n DeepResearchListResponse,\n DeepResearchUpdateResponse,\n DeepResearchCancelResponse,\n DeepResearchDeleteResponse,\n DeepResearchTogglePublicResponse,\n DeepResearchGetAssetsOptions,\n DeepResearchGetAssetsResponse,\n WaitOptions,\n StreamCallback,\n ListOptions,\n CreateBatchOptions,\n CreateBatchResponse,\n BatchStatusResponse,\n AddBatchTasksOptions,\n AddBatchTasksResponse,\n ListBatchTasksOptions,\n ListBatchTasksResponse,\n CancelBatchResponse,\n ListBatchesOptions,\n ListBatchesResponse,\n BatchWaitOptions,\n DeepResearchBatch,\n DatasourcesListOptions,\n DatasourcesListResponse,\n DatasourcesCategoriesResponse,\n} from \"./types\";\n\n/** Normalize API job response (snake_case) to SDK format (camelCase). Omits poll_url. */\nfunction normalizeContentsJobResponse(api: Record<string, any>): ContentsJobResponse {\n return {\n success: api.success ?? true,\n jobId: api.job_id ?? api.jobId,\n status: api.status ?? \"pending\",\n urlsTotal: api.urls_total ?? api.urlsTotal ?? 0,\n urlsProcessed: api.urls_processed ?? api.urlsProcessed ?? 0,\n urlsFailed: api.urls_failed ?? api.urlsFailed ?? 0,\n createdAt: api.created_at ?? api.createdAt ?? 0,\n updatedAt: api.updated_at ?? api.updatedAt ?? 0,\n currentBatch: api.current_batch ?? api.currentBatch,\n totalBatches: api.total_batches ?? api.totalBatches,\n results: api.results,\n actualCostDollars: api.actual_cost_dollars ?? api.actualCostDollars,\n error: api.error,\n webhookSecret: api.webhook_secret ?? api.webhookSecret,\n };\n}\n\n/** Normalize API async job creation response (202) to SDK format. */\nfunction normalizeContentsAsyncJobResponse(\n api: Record<string, any>\n): ContentsAsyncJobResponse {\n return {\n success: api.success ?? true,\n jobId: api.job_id ?? api.jobId,\n status: \"pending\",\n urlsTotal: api.urls_total ?? api.urlsTotal ?? 0,\n webhookSecret: api.webhook_secret ?? api.webhookSecret,\n txId: api.tx_id ?? api.txId ?? \"\",\n };\n}\n\n/**\n * Verify webhook signature for Contents API async completion notifications.\n * Use the raw request body (not parsed JSON) as payload.\n * @param payload - Raw request body string\n * @param signature - X-Webhook-Signature header value\n * @param timestamp - X-Webhook-Timestamp header value\n * @param secret - webhookSecret from job creation\n */\nexport function verifyContentsWebhookSignature(\n payload: string,\n signature: string,\n timestamp: string,\n secret: string\n): boolean {\n const expected = createHmac(\"sha256\", secret)\n .update(`${timestamp}.${payload}`)\n .digest(\"hex\");\n const expectedSignature = `sha256=${expected}`;\n if (signature.length !== expectedSignature.length) return false;\n return timingSafeEqual(\n Buffer.from(signature, \"utf8\"),\n Buffer.from(expectedSignature, \"utf8\")\n );\n}\n\n// Valyu API client\nexport class Valyu {\n private baseUrl: string;\n private headers: Record<string, string>;\n\n // DeepResearch namespace\n public deepresearch: {\n create: (\n options: DeepResearchCreateOptions\n ) => Promise<DeepResearchCreateResponse>;\n status: (taskId: string) => Promise<DeepResearchStatusResponse>;\n wait: (\n taskId: string,\n options?: WaitOptions\n ) => Promise<DeepResearchStatusResponse>;\n stream: (taskId: string, callback: StreamCallback) => Promise<void>;\n list: (options: ListOptions) => Promise<DeepResearchListResponse>;\n update: (\n taskId: string,\n instruction: string\n ) => Promise<DeepResearchUpdateResponse>;\n cancel: (taskId: string) => Promise<DeepResearchCancelResponse>;\n delete: (taskId: string) => Promise<DeepResearchDeleteResponse>;\n togglePublic: (\n taskId: string,\n isPublic: boolean\n ) => Promise<DeepResearchTogglePublicResponse>;\n getAssets: (\n taskId: string,\n assetId: string,\n options?: DeepResearchGetAssetsOptions\n ) => Promise<DeepResearchGetAssetsResponse>;\n };\n\n // Batch API namespace\n public batch: {\n create: (options?: CreateBatchOptions) => Promise<CreateBatchResponse>;\n status: (batchId: string) => Promise<BatchStatusResponse>;\n addTasks: (\n batchId: string,\n options: AddBatchTasksOptions\n ) => Promise<AddBatchTasksResponse>;\n listTasks: (\n batchId: string,\n options?: ListBatchTasksOptions\n ) => Promise<ListBatchTasksResponse>;\n cancel: (batchId: string) => Promise<CancelBatchResponse>;\n list: (options?: ListBatchesOptions) => Promise<ListBatchesResponse>;\n waitForCompletion: (\n batchId: string,\n options?: BatchWaitOptions\n ) => Promise<DeepResearchBatch>;\n };\n\n // Datasources API namespace\n public datasources: {\n list: (options?: DatasourcesListOptions) => Promise<DatasourcesListResponse>;\n categories: () => Promise<DatasourcesCategoriesResponse>;\n };\n\n constructor(apiKey?: string, baseUrl: string = \"https://api.valyu.ai/v1\") {\n if (!apiKey) {\n apiKey = process.env.VALYU_API_KEY;\n if (!apiKey) {\n throw new Error(\"VALYU_API_KEY is not set\");\n }\n }\n this.baseUrl = baseUrl;\n this.headers = {\n \"Content-Type\": \"application/json\",\n \"x-api-key\": apiKey,\n };\n\n // Initialize DeepResearch namespace\n this.deepresearch = {\n create: this._deepresearchCreate.bind(this),\n status: this._deepresearchStatus.bind(this),\n wait: this._deepresearchWait.bind(this),\n stream: this._deepresearchStream.bind(this),\n list: this._deepresearchList.bind(this),\n update: this._deepresearchUpdate.bind(this),\n cancel: this._deepresearchCancel.bind(this),\n delete: this._deepresearchDelete.bind(this),\n togglePublic: this._deepresearchTogglePublic.bind(this),\n getAssets: this._deepresearchGetAssets.bind(this),\n };\n\n // Initialize Batch namespace\n this.batch = {\n create: this._batchCreate.bind(this),\n status: this._batchStatus.bind(this),\n addTasks: this._batchAddTasks.bind(this),\n listTasks: this._batchListTasks.bind(this),\n cancel: this._batchCancel.bind(this),\n list: this._batchList.bind(this),\n waitForCompletion: this._batchWaitForCompletion.bind(this),\n };\n\n // Initialize Datasources namespace\n this.datasources = {\n list: this._datasourcesList.bind(this),\n categories: this._datasourcesCategories.bind(this),\n };\n }\n\n /**\n * Validates date format (YYYY-MM-DD)\n */\n private validateDateFormat(date: string): boolean {\n const dateRegex = /^\\d{4}-\\d{2}-\\d{2}$/;\n if (!dateRegex.test(date)) {\n return false;\n }\n const parsedDate = new Date(date);\n return parsedDate instanceof Date && !isNaN(parsedDate.getTime());\n }\n\n /**\n * Validates if a string is a valid URL\n */\n private validateUrl(url: string): boolean {\n try {\n new URL(url);\n return true;\n } catch {\n return false;\n }\n }\n\n /**\n * Validates if a string is a valid domain (with optional path)\n */\n private validateDomain(domain: string): boolean {\n // Domain must have at least one dot and valid structure\n // Supports: example.com, example.com/path, subdomain.example.com/path/to/resource\n const domainRegex =\n /^[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(\\/.+)?$/;\n return domainRegex.test(domain);\n }\n\n /**\n * Validates if a string is a valid dataset identifier (provider/datasetname)\n */\n private validateDatasetId(datasetId: string): boolean {\n // Dataset format: provider/datasetname (exactly one slash)\n // Provider and dataset name can contain alphanumeric, hyphens, underscores\n const parts = datasetId.split(\"/\");\n if (parts.length !== 2) return false;\n\n const providerRegex = /^[a-zA-Z0-9_-]+$/;\n const datasetRegex = /^[a-zA-Z0-9_-]+$/;\n\n return (\n providerRegex.test(parts[0]) &&\n datasetRegex.test(parts[1]) &&\n parts[0].length > 0 &&\n parts[1].length > 0\n );\n }\n\n /**\n * Validates source strings (domains, URLs, or dataset IDs)\n */\n private validateSource(source: string): boolean {\n // Check if it's a valid URL\n if (this.validateUrl(source)) {\n return true;\n }\n\n // Check if it's a valid domain (with optional path)\n if (this.validateDomain(source)) {\n return true;\n }\n\n // Check if it's a valid dataset identifier\n if (this.validateDatasetId(source)) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Validates an array of source strings\n */\n private validateSources(sources: string[]): {\n valid: boolean;\n invalidSources: string[];\n } {\n const invalidSources: string[] = [];\n\n for (const source of sources) {\n if (!this.validateSource(source)) {\n invalidSources.push(source);\n }\n }\n\n return {\n valid: invalidSources.length === 0,\n invalidSources,\n };\n }\n\n /**\n * Search for information using the Valyu DeepSearch API\n * @param query - The search query string\n * @param options - Search configuration options\n * @param options.searchType - Type of search: \"web\", \"proprietary\", \"all\", or \"news\"\n * @param options.maxNumResults - Maximum number of results (1-100)\n * @param options.maxPrice - Maximum price per thousand characters (CPM)\n * @param options.isToolCall - Whether this is a tool call\n * @param options.relevanceThreshold - Minimum relevance score (0-1)\n * @param options.includedSources - List of specific sources to include\n * @param options.excludeSources - List of URLs/domains to exclude from search results\n * @param options.category - Category filter for search results\n * @param options.startDate - Start date filter (YYYY-MM-DD format)\n * @param options.endDate - End date filter (YYYY-MM-DD format)\n * @param options.countryCode - Country code filter for search results\n * @param options.responseLength - Response content length: \"short\"/\"medium\"/\"large\"/\"max\" or integer character count\n * @param options.fastMode - Fast mode for quicker but shorter results (default: false)\n * @param options.urlOnly - Returns shortened snippets (default: false)\n * @returns Promise resolving to search results\n */\n async search(\n query: string,\n options: SearchOptions = {}\n ): Promise<SearchResponse> {\n try {\n // Default values\n const defaultSearchType: SearchType = \"all\";\n const defaultMaxNumResults = 10;\n const defaultIsToolCall = true;\n const defaultRelevanceThreshold = 0.5;\n\n // Validate searchType\n let finalSearchType: SearchType = defaultSearchType;\n const providedSearchTypeString = options.searchType?.toLowerCase();\n\n if (\n providedSearchTypeString === \"web\" ||\n providedSearchTypeString === \"proprietary\" ||\n providedSearchTypeString === \"all\" ||\n providedSearchTypeString === \"news\"\n ) {\n finalSearchType = providedSearchTypeString as SearchType;\n } else if (options.searchType !== undefined) {\n return {\n success: false,\n error:\n \"Invalid searchType provided. Must be one of: all, web, proprietary, news\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate date formats\n if (options.startDate && !this.validateDateFormat(options.startDate)) {\n return {\n success: false,\n error: \"Invalid startDate format. Must be YYYY-MM-DD\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n if (options.endDate && !this.validateDateFormat(options.endDate)) {\n return {\n success: false,\n error: \"Invalid endDate format. Must be YYYY-MM-DD\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate maxNumResults range\n const maxNumResults = options.maxNumResults ?? defaultMaxNumResults;\n if (maxNumResults < 1 || maxNumResults > 100) {\n return {\n success: false,\n error: \"maxNumResults must be between 1 and 100\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate includedSources format\n if (options.includedSources !== undefined) {\n if (!Array.isArray(options.includedSources)) {\n return {\n success: false,\n error: \"includedSources must be an array\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n const includedSourcesValidation = this.validateSources(\n options.includedSources\n );\n if (!includedSourcesValidation.valid) {\n return {\n success: false,\n error: `Invalid includedSources format. Invalid sources: ${includedSourcesValidation.invalidSources.join(\n \", \"\n )}. Sources must be valid URLs, domains (with optional paths), or dataset identifiers in 'provider/dataset' format.`,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n // Validate excludeSources format\n if (options.excludeSources !== undefined) {\n if (!Array.isArray(options.excludeSources)) {\n return {\n success: false,\n error: \"excludeSources must be an array\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n const excludeSourcesValidation = this.validateSources(\n options.excludeSources\n );\n if (!excludeSourcesValidation.valid) {\n return {\n success: false,\n error: `Invalid excludeSources format. Invalid sources: ${excludeSourcesValidation.invalidSources.join(\n \", \"\n )}. Sources must be valid URLs, domains (with optional paths), or dataset identifiers in 'provider/dataset' format.`,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n // Build payload with snake_case for API\n const payload: Record<string, any> = {\n query,\n search_type: finalSearchType,\n max_num_results: maxNumResults,\n is_tool_call: options.isToolCall ?? defaultIsToolCall,\n relevance_threshold:\n options.relevanceThreshold ?? defaultRelevanceThreshold,\n };\n\n // Add maxPrice only if explicitly provided\n if (options.maxPrice !== undefined) {\n payload.max_price = options.maxPrice;\n }\n\n // Add optional parameters only if provided\n if (options.includedSources !== undefined) {\n payload.included_sources = options.includedSources;\n }\n\n if (options.excludeSources !== undefined) {\n payload.exclude_sources = options.excludeSources;\n }\n\n if (options.sourceBiases !== undefined) {\n payload.source_biases = options.sourceBiases;\n }\n\n if (options.category !== undefined) {\n payload.category = options.category;\n }\n\n if (options.startDate !== undefined) {\n payload.start_date = options.startDate;\n }\n\n if (options.endDate !== undefined) {\n payload.end_date = options.endDate;\n }\n\n if (options.countryCode !== undefined) {\n payload.country_code = options.countryCode;\n }\n\n if (options.responseLength !== undefined) {\n payload.response_length = options.responseLength;\n }\n\n if (options.fastMode !== undefined) {\n payload.fast_mode = options.fastMode;\n }\n\n if (options.urlOnly !== undefined) {\n payload.url_only = options.urlOnly;\n }\n\n const response = await axios.post(`${this.baseUrl}/deepsearch`, payload, {\n headers: this.headers,\n });\n\n if (!response.status || response.status < 200 || response.status >= 300) {\n return {\n success: false,\n error: response.data?.error,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n return response.data;\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n /**\n * Extract content from URLs with optional AI processing\n * @param urls - Array of URLs to process (max 10 sync, max 50 with async: true)\n * @param options - Content extraction configuration options\n * @param options.summary - AI summary configuration: false (raw), true (auto), string (custom), or JSON schema\n * @param options.extractEffort - Extraction thoroughness: \"normal\", \"high\", or \"auto\"\n * @param options.responseLength - Content length per URL\n * @param options.maxPriceDollars - Maximum cost limit in USD\n * @param options.screenshot - Request page screenshots (default: false)\n * @param options.async - Force async processing (required for >10 URLs)\n * @param options.webhookUrl - HTTPS URL for completion notification (async only)\n * @returns Promise resolving to sync results or async job (when async: true or >10 URLs)\n */\n async contents(\n urls: string[],\n options: ContentsOptions = {}\n ): Promise<ContentsResponse | ContentsAsyncJobResponse> {\n try {\n // Validate URLs array\n if (!urls || !Array.isArray(urls)) {\n return {\n success: false,\n error: \"urls must be an array\",\n urls_requested: 0,\n urls_processed: 0,\n urls_failed: 0,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n if (urls.length === 0) {\n return {\n success: false,\n error: \"urls array cannot be empty\",\n urls_requested: 0,\n urls_processed: 0,\n urls_failed: 0,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n const isAsync = options.async === true || urls.length > 10;\n\n if (urls.length > 10 && !options.async) {\n return {\n success: false,\n error:\n \"Requests with more than 10 URLs require async processing. Add async: true to the request.\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n if (urls.length > 50) {\n return {\n success: false,\n error: \"Maximum 50 URLs allowed per request\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // Validate extractEffort if provided\n if (\n options.extractEffort &&\n ![\"normal\", \"high\", \"auto\"].includes(options.extractEffort)\n ) {\n return {\n success: false,\n error: \"extractEffort must be 'normal', 'high', or 'auto'\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // Validate responseLength if provided\n if (options.responseLength !== undefined) {\n const validLengths = [\"short\", \"medium\", \"large\", \"max\"];\n if (\n typeof options.responseLength === \"string\" &&\n !validLengths.includes(options.responseLength)\n ) {\n return {\n success: false,\n error:\n \"responseLength must be 'short', 'medium', 'large', 'max', or a number\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n if (\n typeof options.responseLength === \"number\" &&\n options.responseLength <= 0\n ) {\n return {\n success: false,\n error: \"responseLength number must be positive\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n }\n\n // Build payload with snake_case for API\n const payload: Record<string, any> = {\n urls,\n };\n\n // Add optional parameters only if provided\n if (options.summary !== undefined) {\n payload.summary = options.summary;\n }\n\n if (options.extractEffort !== undefined) {\n payload.extract_effort = options.extractEffort;\n }\n\n if (options.responseLength !== undefined) {\n payload.response_length = options.responseLength;\n }\n\n if (options.maxPriceDollars !== undefined) {\n payload.max_price_dollars = options.maxPriceDollars;\n }\n\n if (options.screenshot !== undefined) {\n payload.screenshot = options.screenshot;\n }\n\n if (isAsync) {\n payload.async = true;\n }\n if (options.webhookUrl !== undefined) {\n payload.webhook_url = options.webhookUrl;\n }\n\n const response = await axios.post(`${this.baseUrl}/contents`, payload, {\n headers: this.headers,\n });\n\n if (!response.status || response.status < 200 || response.status >= 300) {\n return {\n success: false,\n error: response.data?.error || \"Request failed\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // 202 Accepted - async job created\n if (response.status === 202) {\n return normalizeContentsAsyncJobResponse(response.data);\n }\n\n return response.data as ContentsResponse;\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n }\n\n /**\n * Get async Contents job status and results\n * @param jobId - Job ID from contents() async response\n * @returns Promise resolving to job status\n */\n async getContentsJob(jobId: string): Promise<ContentsJobResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/contents/jobs/${jobId}`,\n { headers: this.headers }\n );\n return normalizeContentsJobResponse(response.data);\n } catch (e: any) {\n const errData = e.response?.data;\n const status = e.response?.status;\n return {\n success: false,\n jobId,\n status: \"failed\",\n urlsTotal: 0,\n urlsProcessed: 0,\n urlsFailed: 0,\n createdAt: 0,\n updatedAt: 0,\n error:\n errData?.error ||\n (status === 403\n ? \"Forbidden - you do not have access to this job\"\n : status === 404\n ? `Job ${jobId} not found`\n : e.message),\n };\n }\n }\n\n /**\n * Wait for async Contents job completion (polls until terminal state)\n * @param jobId - Job ID from contents() async response\n * @param options - Wait configuration (pollInterval, maxWaitTime, onProgress)\n * @returns Promise resolving to final job status with results\n */\n async waitForJob(\n jobId: string,\n options: ContentsJobWaitOptions = {}\n ): Promise<ContentsJobResponse> {\n const pollInterval = options.pollInterval ?? 5000;\n const maxWaitTime = options.maxWaitTime ?? 7200000;\n const startTime = Date.now();\n\n while (true) {\n const status = await this.getContentsJob(jobId);\n\n if (!status.success && status.error) {\n throw new Error(status.error);\n }\n\n if (options.onProgress) {\n options.onProgress(status);\n }\n\n if (\n status.status === \"completed\" ||\n status.status === \"partial\" ||\n status.status === \"failed\"\n ) {\n return status;\n }\n\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * DeepResearch: Create a new research task\n * @param options.search - Search configuration options\n * @param options.search.searchType - Type of search: \"all\", \"web\", or \"proprietary\" (default: \"all\")\n * @param options.search.includedSources - Array of source types to include (e.g., [\"academic\", \"finance\", \"web\"])\n * @param options.search.excludedSources - Array of source types to exclude (e.g., [\"web\", \"patent\"])\n * @param options.search.startDate - Start date filter in ISO format (YYYY-MM-DD)\n * @param options.search.endDate - End date filter in ISO format (YYYY-MM-DD)\n * @param options.search.category - Category filter for search results\n */\n private async _deepresearchCreate(\n options: DeepResearchCreateOptions\n ): Promise<DeepResearchCreateResponse> {\n try {\n // Use query field (input is supported for backward compatibility)\n const queryValue = options.query ?? options.input;\n\n // Validation\n if (!queryValue?.trim()) {\n return {\n success: false,\n error: \"query is required and cannot be empty\",\n };\n }\n\n // Build payload with snake_case\n // Prefer mode over model (backward compatible)\n const mode = options.mode ?? options.model;\n const payload: Record<string, any> = {\n query: queryValue,\n mode: mode || \"fast\", // API defaults to \"standard\", but we keep \"fast\" for backward compatibility\n output_formats: options.outputFormats || [\"markdown\"],\n code_execution: options.codeExecution !== false,\n };\n\n // Add optional fields\n if (options.strategy) payload.strategy = options.strategy;\n if (options.researchStrategy)\n payload.research_strategy = options.researchStrategy;\n if (options.reportFormat)\n payload.report_format = options.reportFormat;\n if (options.search) {\n payload.search = {};\n if (options.search.searchType) {\n payload.search.search_type = options.search.searchType;\n }\n if (options.search.includedSources) {\n payload.search.included_sources = options.search.includedSources;\n }\n if (options.search.excludedSources) {\n payload.search.excluded_sources = options.search.excludedSources;\n }\n if (options.search.sourceBiases) {\n payload.search.source_biases = options.search.sourceBiases;\n }\n if (options.search.startDate) {\n payload.search.start_date = options.search.startDate;\n }\n if (options.search.endDate) {\n payload.search.end_date = options.search.endDate;\n }\n if (options.search.category) {\n payload.search.category = options.search.category;\n }\n }\n if (options.urls) payload.urls = options.urls;\n if (options.files) payload.files = options.files;\n if (options.deliverables) payload.deliverables = options.deliverables;\n if (options.mcpServers) payload.mcp_servers = options.mcpServers;\n if (options.previousReports) {\n payload.previous_reports = options.previousReports;\n }\n if (options.webhookUrl) payload.webhook_url = options.webhookUrl;\n if (options.brandCollectionId)\n payload.brand_collection_id = options.brandCollectionId;\n if (options.alertEmail) {\n if (typeof options.alertEmail === \"string\") {\n payload.alert_email = options.alertEmail;\n } else {\n payload.alert_email = {\n email: options.alertEmail.email,\n custom_url: options.alertEmail.custom_url,\n };\n }\n }\n if (options.metadata) payload.metadata = options.metadata;\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks`,\n payload,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Get task status\n */\n private async _deepresearchStatus(\n taskId: string\n ): Promise<DeepResearchStatusResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/status`,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Wait for task completion with polling\n */\n private async _deepresearchWait(\n taskId: string,\n options: WaitOptions = {}\n ): Promise<DeepResearchStatusResponse> {\n const pollInterval = options.pollInterval || 5000;\n const maxWaitTime = options.maxWaitTime || 7200000;\n const startTime = Date.now();\n\n while (true) {\n const status = await this._deepresearchStatus(taskId);\n\n if (!status.success) {\n throw new Error(status.error);\n }\n\n // Notify progress callback\n if (options.onProgress) {\n options.onProgress(status);\n }\n\n // Terminal states\n if (\n status.status === \"completed\" ||\n status.status === \"failed\" ||\n status.status === \"cancelled\"\n ) {\n return status;\n }\n\n // Check timeout\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n // Wait before next poll\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * DeepResearch: Stream real-time updates\n */\n private async _deepresearchStream(\n taskId: string,\n callback: StreamCallback\n ): Promise<void> {\n let isComplete = false;\n let lastMessageCount = 0;\n\n while (!isComplete) {\n try {\n const status = await this._deepresearchStatus(taskId);\n\n if (!status.success) {\n if (callback.onError) {\n callback.onError(new Error(status.error));\n }\n return;\n }\n\n // Progress updates\n if (status.progress && callback.onProgress) {\n callback.onProgress(\n status.progress.current_step,\n status.progress.total_steps\n );\n }\n\n // New messages\n if (status.messages && callback.onMessage) {\n const newMessages = status.messages.slice(lastMessageCount);\n newMessages.forEach((msg) => callback.onMessage!(msg));\n lastMessageCount = status.messages.length;\n }\n\n // Terminal states\n if (status.status === \"completed\") {\n if (callback.onComplete) {\n callback.onComplete(status);\n }\n isComplete = true;\n } else if (\n status.status === \"failed\" ||\n status.status === \"cancelled\"\n ) {\n if (callback.onError) {\n callback.onError(\n new Error(status.error || `Task ${status.status}`)\n );\n }\n isComplete = true;\n }\n\n if (!isComplete) {\n await new Promise((resolve) => setTimeout(resolve, 5000));\n }\n } catch (error: any) {\n if (callback.onError) {\n callback.onError(error);\n }\n throw error;\n }\n }\n }\n\n /**\n * DeepResearch: List all tasks\n */\n private async _deepresearchList(\n options?: ListOptions\n ): Promise<DeepResearchListResponse> {\n try {\n const limit = options?.limit || 10;\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/list?limit=${limit}`,\n { headers: this.headers }\n );\n\n return { success: true, data: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Add follow-up instruction\n */\n private async _deepresearchUpdate(\n taskId: string,\n instruction: string\n ): Promise<DeepResearchUpdateResponse> {\n try {\n if (!instruction?.trim()) {\n return {\n success: false,\n error: \"instruction is required and cannot be empty\",\n };\n }\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/update`,\n { instruction },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Cancel task\n */\n private async _deepresearchCancel(\n taskId: string\n ): Promise<DeepResearchCancelResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/cancel`,\n {},\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Delete task\n */\n private async _deepresearchDelete(\n taskId: string\n ): Promise<DeepResearchDeleteResponse> {\n try {\n const response = await axios.delete(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/delete`,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Toggle public flag\n */\n private async _deepresearchTogglePublic(\n taskId: string,\n isPublic: boolean\n ): Promise<DeepResearchTogglePublicResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/public`,\n { public: isPublic },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Get task assets (images, deliverables, PDFs)\n */\n private async _deepresearchGetAssets(\n taskId: string,\n assetId: string,\n options: DeepResearchGetAssetsOptions = {}\n ): Promise<DeepResearchGetAssetsResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.token) {\n params.append(\"token\", options.token);\n }\n\n // Build headers - use API key if no token provided\n const headers: Record<string, string> = {};\n if (!options.token) {\n headers[\"x-api-key\"] = this.headers[\"x-api-key\"];\n }\n\n const url = `${\n this.baseUrl\n }/deepresearch/tasks/${taskId}/assets/${assetId}${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n\n const response = await axios.get(url, {\n headers,\n responseType: \"arraybuffer\", // For binary data\n });\n\n return {\n success: true,\n data: Buffer.from(response.data),\n contentType:\n response.headers[\"content-type\"] || \"application/octet-stream\",\n };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Create a new batch\n * @param options - Batch configuration options\n * @param options.name - Optional name for the batch\n * @param options.model - DeepResearch mode: \"fast\", \"standard\", or \"heavy\" (default: \"standard\")\n * @param options.outputFormats - Output formats for tasks (default: [\"markdown\"])\n * @param options.search - Search configuration for all tasks in batch\n * @param options.search.searchType - Type of search: \"all\", \"web\", or \"proprietary\" (default: \"all\")\n * @param options.search.includedSources - Array of source types to include (e.g., [\"academic\", \"finance\", \"web\"])\n * @param options.search.excludedSources - Array of source types to exclude (e.g., [\"web\", \"patent\"])\n * @param options.search.startDate - Start date filter in ISO format (YYYY-MM-DD)\n * @param options.search.endDate - End date filter in ISO format (YYYY-MM-DD)\n * @param options.search.category - Category filter for search results\n * @param options.webhookUrl - Optional HTTPS URL for completion notification\n * @param options.metadata - Optional metadata key-value pairs\n * @returns Promise resolving to batch creation response with batch_id and webhook_secret\n */\n private async _batchCreate(\n options: CreateBatchOptions = {}\n ): Promise<CreateBatchResponse> {\n try {\n const payload: Record<string, any> = {};\n\n if (options.name) payload.name = options.name;\n // Accept both mode (preferred) and model (backward compatible)\n const mode = options.mode ?? options.model;\n if (mode) payload.mode = mode;\n if (options.outputFormats) payload.output_formats = options.outputFormats;\n if (options.search) {\n payload.search = {};\n if (options.search.searchType) {\n payload.search.search_type = options.search.searchType;\n }\n if (options.search.includedSources) {\n payload.search.included_sources = options.search.includedSources;\n }\n if (options.search.excludedSources) {\n payload.search.excluded_sources = options.search.excludedSources;\n }\n if (options.search.sourceBiases) {\n payload.search.source_biases = options.search.sourceBiases;\n }\n if (options.search.startDate) {\n payload.search.start_date = options.search.startDate;\n }\n if (options.search.endDate) {\n payload.search.end_date = options.search.endDate;\n }\n if (options.search.category) {\n payload.search.category = options.search.category;\n }\n }\n if (options.webhookUrl) payload.webhook_url = options.webhookUrl;\n if (options.metadata) payload.metadata = options.metadata;\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches`,\n payload,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Get batch status\n * @param batchId - The batch ID to query\n * @returns Promise resolving to batch status with counts and usage\n */\n private async _batchStatus(batchId: string): Promise<BatchStatusResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/batches/${batchId}`,\n { headers: this.headers }\n );\n\n return { success: true, batch: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Add tasks to a batch\n * @param batchId - The batch ID to add tasks to\n * @param options - Task configuration options\n * @param options.tasks - Array of task inputs (use 'query' field for each task)\n * @returns Promise resolving to response with added, tasks array, counts, and batch_id\n */\n private async _batchAddTasks(\n batchId: string,\n options: AddBatchTasksOptions\n ): Promise<AddBatchTasksResponse> {\n try {\n if (!options.tasks || !Array.isArray(options.tasks)) {\n return {\n success: false,\n error: \"tasks must be an array\",\n };\n }\n\n if (options.tasks.length === 0) {\n return {\n success: false,\n error: \"tasks array cannot be empty\",\n };\n }\n\n if (options.tasks.length > 100) {\n return {\n success: false,\n error: \"Maximum 100 tasks allowed per request\",\n };\n }\n\n // Validate that each task has a query\n for (const task of options.tasks) {\n if (!task.query && !task.input) {\n return {\n success: false,\n error: \"Each task must have a 'query' field\",\n };\n }\n }\n\n // Convert tasks to snake_case format for API\n // Note: Tasks can only include: id, query, strategy, urls, metadata\n // Tasks inherit model, output_formats, and search_params from batch\n const tasksPayload = options.tasks.map((task) => {\n const taskPayload: Record<string, any> = {};\n\n // Use query field (input is supported for backward compatibility)\n const queryValue = task.query ?? task.input;\n if (queryValue) {\n taskPayload.query = queryValue;\n }\n\n if (task.id) taskPayload.id = task.id;\n if (task.strategy) taskPayload.strategy = task.strategy;\n if (task.researchStrategy)\n taskPayload.research_strategy = task.researchStrategy;\n if (task.reportFormat)\n taskPayload.report_format = task.reportFormat;\n if (task.urls) taskPayload.urls = task.urls;\n if (task.metadata) taskPayload.metadata = task.metadata;\n\n return taskPayload;\n });\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches/${batchId}/tasks`,\n { tasks: tasksPayload },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: List all tasks in a batch\n * @param batchId - The batch ID to query\n * @param options - Optional pagination and filtering options\n * @param options.status - Filter by status: \"queued\", \"running\", \"completed\", \"failed\", or \"cancelled\"\n * @param options.limit - Maximum number of tasks to return\n * @param options.lastKey - Pagination token from previous response\n * @returns Promise resolving to list of tasks with their status and pagination info\n */\n private async _batchListTasks(\n batchId: string,\n options: ListBatchTasksOptions = {}\n ): Promise<ListBatchTasksResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.status) {\n params.append(\"status\", options.status);\n }\n if (options.limit !== undefined) {\n params.append(\"limit\", options.limit.toString());\n }\n if (options.lastKey) {\n params.append(\"last_key\", options.lastKey);\n }\n if (options.includeOutput !== undefined) {\n params.append(\"include_output\", options.includeOutput.toString());\n }\n\n const url = `${this.baseUrl}/deepresearch/batches/${batchId}/tasks${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, { headers: this.headers });\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Cancel a batch and all its pending tasks\n * @param batchId - The batch ID to cancel\n * @returns Promise resolving to cancellation confirmation\n */\n private async _batchCancel(batchId: string): Promise<CancelBatchResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches/${batchId}/cancel`,\n {},\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: List all batches\n * @param options - Optional options\n * @param options.limit - Maximum number of batches to return\n * @returns Promise resolving to list of all batches\n */\n private async _batchList(\n options: ListBatchesOptions = {}\n ): Promise<ListBatchesResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.limit !== undefined) {\n params.append(\"limit\", options.limit.toString());\n }\n\n const url = `${this.baseUrl}/deepresearch/batches${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, {\n headers: this.headers,\n });\n\n return { success: true, batches: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Wait for batch completion with polling\n * @param batchId - The batch ID to wait for\n * @param options - Wait configuration options\n * @param options.pollInterval - Polling interval in milliseconds (default: 10000)\n * @param options.maxWaitTime - Maximum wait time in milliseconds (default: 7200000)\n * @param options.onProgress - Callback for progress updates\n * @returns Promise resolving to final batch status\n */\n private async _batchWaitForCompletion(\n batchId: string,\n options: BatchWaitOptions = {}\n ): Promise<DeepResearchBatch> {\n const pollInterval = options.pollInterval || 10000; // 10 seconds default\n const maxWaitTime = options.maxWaitTime || 7200000; // 2 hours default\n const startTime = Date.now();\n\n while (true) {\n const statusResponse = await this._batchStatus(batchId);\n\n if (!statusResponse.success || !statusResponse.batch) {\n throw new Error(statusResponse.error || \"Failed to get batch status\");\n }\n\n const batch = statusResponse.batch;\n\n // Notify progress callback\n if (options.onProgress) {\n options.onProgress(batch);\n }\n\n // Terminal states\n if (\n batch.status === \"completed\" ||\n batch.status === \"completed_with_errors\" ||\n batch.status === \"cancelled\"\n ) {\n return batch;\n }\n\n // Check timeout\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n // Wait before next poll\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * Get AI-powered answers using the Valyu Answer API\n * @param query - The question or query string\n * @param options - Answer configuration options\n * @param options.structuredOutput - JSON Schema object for structured responses\n * @param options.systemInstructions - Custom system-level instructions (max 2000 chars)\n * @param options.searchType - Type of search: \"web\", \"proprietary\", \"all\", or \"news\"\n * @param options.dataMaxPrice - Maximum spend (USD) for data retrieval\n * @param options.countryCode - Country code filter for search results\n * @param options.includedSources - List of specific sources to include\n * @param options.excludedSources - List of URLs/domains to exclude from search results\n * @param options.startDate - Start date filter (YYYY-MM-DD format)\n * @param options.endDate - End date filter (YYYY-MM-DD format)\n * @param options.fastMode - Fast mode for quicker but shorter results (default: false)\n * @param options.streaming - Enable streaming mode (default: false)\n * @returns Promise resolving to answer response, or AsyncGenerator for streaming\n */\n async answer(\n query: string,\n options: AnswerOptions = {}\n ): Promise<\n AnswerResponse | AsyncGenerator<AnswerStreamChunk, void, unknown>\n > {\n // Validate inputs first\n const validationError = this.validateAnswerParams(query, options);\n if (validationError) {\n if (options.streaming) {\n return this.createErrorGenerator(validationError);\n }\n return { success: false, error: validationError };\n }\n\n const payload = this.buildAnswerPayload(query, options);\n\n if (options.streaming) {\n return this.streamAnswer(payload);\n } else {\n return this.fetchAnswer(payload);\n }\n }\n\n /**\n * Validate answer parameters\n */\n private validateAnswerParams(\n query: string,\n options: AnswerOptions\n ): string | null {\n // Validate query\n if (!query || typeof query !== \"string\" || query.trim().length === 0) {\n return \"Query is required and must be a non-empty string\";\n }\n\n // Validate searchType\n const providedSearchTypeString = options.searchType?.toLowerCase();\n if (\n providedSearchTypeString !== undefined &&\n providedSearchTypeString !== \"web\" &&\n providedSearchTypeString !== \"proprietary\" &&\n providedSearchTypeString !== \"all\" &&\n providedSearchTypeString !== \"news\"\n ) {\n return \"Invalid searchType provided. Must be one of: all, web, proprietary, news\";\n }\n\n // Validate systemInstructions\n if (options.systemInstructions !== undefined) {\n if (typeof options.systemInstructions !== \"string\") {\n return \"systemInstructions must be a string\";\n }\n const trimmed = options.systemInstructions.trim();\n if (trimmed.length === 0) {\n return \"systemInstructions cannot be empty when provided\";\n }\n if (trimmed.length > 2000) {\n return \"systemInstructions must be 2000 characters or less\";\n }\n }\n\n // Validate dataMaxPrice\n if (options.dataMaxPrice !== undefined) {\n if (\n typeof options.dataMaxPrice !== \"number\" ||\n options.dataMaxPrice <= 0\n ) {\n return \"dataMaxPrice must be a positive number\";\n }\n }\n\n // Validate date formats\n if (options.startDate && !this.validateDateFormat(options.startDate)) {\n return \"Invalid startDate format. Must be YYYY-MM-DD\";\n }\n if (options.endDate && !this.validateDateFormat(options.endDate)) {\n return \"Invalid endDate format. Must be YYYY-MM-DD\";\n }\n if (options.startDate && options.endDate) {\n const startDate = new Date(options.startDate);\n const endDate = new Date(options.endDate);\n if (startDate > endDate) {\n return \"startDate must be before endDate\";\n }\n }\n\n // Validate sources\n if (options.includedSources !== undefined) {\n if (!Array.isArray(options.includedSources)) {\n return \"includedSources must be an array\";\n }\n const validation = this.validateSources(options.includedSources);\n if (!validation.valid) {\n return `Invalid includedSources format. Invalid sources: ${validation.invalidSources.join(\n \", \"\n )}.`;\n }\n }\n if (options.excludedSources !== undefined) {\n if (!Array.isArray(options.excludedSources)) {\n return \"excludedSources must be an array\";\n }\n const validation = this.validateSources(options.excludedSources);\n if (!validation.valid) {\n return `Invalid excludedSources format. Invalid sources: ${validation.invalidSources.join(\n \", \"\n )}.`;\n }\n }\n\n return null;\n }\n\n /**\n * Build payload for answer API\n */\n private buildAnswerPayload(\n query: string,\n options: AnswerOptions\n ): Record<string, any> {\n const defaultSearchType: SearchType = \"all\";\n const providedSearchTypeString = options.searchType?.toLowerCase();\n let finalSearchType: SearchType = defaultSearchType;\n\n if (\n providedSearchTypeString === \"web\" ||\n providedSearchTypeString === \"proprietary\" ||\n providedSearchTypeString === \"all\" ||\n providedSearchTypeString === \"news\"\n ) {\n finalSearchType = providedSearchTypeString as SearchType;\n }\n\n const payload: Record<string, any> = {\n query: query.trim(),\n search_type: finalSearchType,\n };\n\n if (options.dataMaxPrice !== undefined)\n payload.data_max_price = options.dataMaxPrice;\n if (options.structuredOutput !== undefined)\n payload.structured_output = options.structuredOutput;\n if (options.systemInstructions !== undefined)\n payload.system_instructions = options.systemInstructions.trim();\n if (options.countryCode !== undefined)\n payload.country_code = options.countryCode;\n if (options.includedSources !== undefined)\n payload.included_sources = options.includedSources;\n if (options.excludedSources !== undefined)\n payload.excluded_sources = options.excludedSources;\n if (options.startDate !== undefined) payload.start_date = options.startDate;\n if (options.endDate !== undefined) payload.end_date = options.endDate;\n if (options.fastMode !== undefined) payload.fast_mode = options.fastMode;\n\n return payload;\n }\n\n /**\n * Fetch answer (non-streaming mode)\n */\n private async fetchAnswer(\n payload: Record<string, any>\n ): Promise<AnswerResponse> {\n try {\n const response = await fetch(`${this.baseUrl}/answer`, {\n method: \"POST\",\n headers: {\n ...this.headers,\n Accept: \"text/event-stream\",\n },\n body: JSON.stringify(payload),\n });\n\n if (!response.ok) {\n const errorData = await response.json().catch(() => ({}));\n return {\n success: false,\n error: errorData.error || `HTTP Error: ${response.status}`,\n };\n }\n\n // Collect streamed data into final response\n let fullContent = \"\";\n let searchResults: SearchResult[] = [];\n let finalMetadata: any = {};\n\n const reader = response.body?.getReader();\n const decoder = new TextDecoder();\n let buffer = \"\";\n\n if (reader) {\n while (true) {\n const { done, value } = await reader.read();\n if (done) break;\n\n buffer += decoder.decode(value, { stream: true });\n const lines = buffer.split(\"\\n\");\n buffer = lines.pop() || \"\";\n\n for (const line of lines) {\n if (!line.startsWith(\"data: \")) continue;\n const dataStr = line.slice(6);\n\n if (dataStr === \"[DONE]\") continue;\n\n try {\n const parsed = JSON.parse(dataStr);\n\n // Handle search results\n if (parsed.search_results && !parsed.success) {\n searchResults = [...searchResults, ...parsed.search_results];\n }\n // Handle content chunks\n else if (parsed.choices) {\n const content = parsed.choices[0]?.delta?.content || \"\";\n if (content) fullContent += content;\n }\n // Handle final metadata\n else if (parsed.success !== undefined) {\n finalMetadata = parsed;\n }\n } catch {\n continue;\n }\n }\n }\n }\n\n // Build final response\n if (finalMetadata.success) {\n const finalSearchResults =\n finalMetadata.search_results || searchResults;\n const response: AnswerSuccessResponse = {\n success: true,\n tx_id: finalMetadata.tx_id || \"\",\n original_query: finalMetadata.original_query || payload.query,\n contents: finalMetadata.contents || fullContent || \"\",\n search_results: finalSearchResults,\n search_metadata: finalMetadata.search_metadata || {\n tx_ids: [],\n number_of_results: 0,\n total_characters: 0,\n },\n ai_usage: finalMetadata.ai_usage || {\n input_tokens: 0,\n output_tokens: 0,\n },\n cost: finalMetadata.cost || {\n total_deduction_dollars: 0,\n search_deduction_dollars: 0,\n ai_deduction_dollars: 0,\n },\n };\n if (finalMetadata.extraction_metadata) {\n response.extraction_metadata = finalMetadata.extraction_metadata;\n }\n return response;\n }\n\n return {\n success: false,\n error: finalMetadata.error || \"Unknown error occurred\",\n };\n } catch (e: any) {\n return {\n success: false,\n error: e.message || \"Request failed\",\n };\n }\n }\n\n /**\n * Stream answer using SSE\n */\n private async *streamAnswer(\n payload: Record<string, any>\n ): AsyncGenerator<AnswerStreamChunk, void, unknown> {\n try {\n const response = await fetch(`${this.baseUrl}/answer`, {\n method: \"POST\",\n headers: {\n ...this.headers,\n Accept: \"text/event-stream\",\n },\n body: JSON.stringify(payload),\n });\n\n if (!response.ok) {\n const errorData = await response.json().catch(() => ({}));\n yield {\n type: \"error\",\n error: errorData.error || `HTTP Error: ${response.status}`,\n };\n return;\n }\n\n const reader = response.body?.getReader();\n const decoder = new TextDecoder();\n let buffer = \"\";\n\n if (!reader) {\n yield { type: \"error\", error: \"No response body\" };\n return;\n }\n\n while (true) {\n const { done, value } = await reader.read();\n if (done) break;\n\n buffer += decoder.decode(value, { stream: true });\n const lines = buffer.split(\"\\n\");\n buffer = lines.pop() || \"\";\n\n for (const line of lines) {\n if (!line.startsWith(\"data: \")) continue;\n const dataStr = line.slice(6);\n\n if (dataStr === \"[DONE]\") {\n yield { type: \"done\" };\n continue;\n }\n\n try {\n const parsed = JSON.parse(dataStr);\n\n // Handle search results\n if (parsed.search_results && parsed.success === undefined) {\n yield {\n type: \"search_results\",\n search_results: parsed.search_results,\n };\n }\n // Handle content chunks\n else if (parsed.choices) {\n const delta = parsed.choices[0]?.delta || {};\n const content = delta.content || \"\";\n const finishReason = parsed.choices[0]?.finish_reason;\n\n if (content || finishReason) {\n yield { type: \"content\", content, finish_reason: finishReason };\n }\n }\n // Handle final metadata\n else if (parsed.success !== undefined) {\n yield {\n type: \"metadata\",\n tx_id: parsed.tx_id,\n original_query: parsed.original_query,\n contents: parsed.contents,\n search_results: parsed.search_results,\n search_metadata: parsed.search_metadata,\n ai_usage: parsed.ai_usage,\n cost: parsed.cost,\n extraction_metadata: parsed.extraction_metadata,\n };\n }\n } catch {\n continue;\n }\n }\n }\n } catch (e: any) {\n yield { type: \"error\", error: e.message || \"Stream failed\" };\n }\n }\n\n /**\n * Create an error generator for streaming errors\n */\n private async *createErrorGenerator(\n error: string\n ): AsyncGenerator<AnswerStreamChunk, void, unknown> {\n yield { type: \"error\", error };\n }\n\n /**\n * Datasources: List all available datasources\n * @param options - Optional filter options\n * @param options.category - Filter by category (e.g., \"research\", \"markets\", \"healthcare\")\n * @returns Promise resolving to list of datasources with their metadata\n */\n private async _datasourcesList(\n options: DatasourcesListOptions = {}\n ): Promise<DatasourcesListResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.category) {\n params.append(\"category\", options.category);\n }\n\n const url = `${this.baseUrl}/datasources${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, { headers: this.headers });\n\n return { success: true, datasources: response.data.datasources };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Datasources: Get all available categories\n * @returns Promise resolving to list of categories with their metadata\n */\n private async _datasourcesCategories(): Promise<DatasourcesCategoriesResponse> {\n try {\n const response = await axios.get(`${this.baseUrl}/datasources/categories`, {\n headers: this.headers,\n });\n\n return { success: true, categories: response.data.categories };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n}\n\nexport type {\n SearchResponse,\n SearchType,\n SearchResult,\n FeedbackSentiment,\n FeedbackResponse,\n SearchOptions,\n CountryCode,\n ResponseLength,\n ContentsOptions,\n ContentsResponse,\n ContentsAsyncJobResponse,\n ContentsJobResponse,\n ContentsJobStatus,\n ContentsJobWaitOptions,\n ContentResult,\n ContentResultSuccess,\n ContentResultFailed,\n ExtractEffort,\n ContentResponseLength,\n AnswerOptions,\n AnswerResponse,\n AnswerSuccessResponse,\n AnswerErrorResponse,\n AnswerStreamChunk,\n AnswerStreamChunkType,\n SearchMetadata,\n AIUsage,\n Cost,\n ExtractionMetadata,\n AlertEmailConfig,\n DeepResearchMode,\n DeepResearchStatus,\n DeepResearchOutputFormat,\n ImageType,\n ChartType,\n FileAttachment,\n MCPServerConfig,\n DeepResearchSearchConfig,\n DeepResearchCreateOptions,\n Progress,\n ChartDataPoint,\n ChartDataSeries,\n ImageMetadata,\n DeepResearchSource,\n DeepResearchUsage,\n DeepResearchCreateResponse,\n DeepResearchStatusResponse,\n DeepResearchTaskListItem,\n DeepResearchListResponse,\n DeepResearchUpdateResponse,\n DeepResearchCancelResponse,\n DeepResearchDeleteResponse,\n DeepResearchTogglePublicResponse,\n DeepResearchGetAssetsOptions,\n DeepResearchGetAssetsResponse,\n WaitOptions,\n StreamCallback,\n ListOptions,\n BatchStatus,\n BatchCounts,\n DeepResearchBatch,\n CreateBatchOptions,\n BatchTaskInput,\n AddBatchTasksOptions,\n CreateBatchResponse,\n BatchStatusResponse,\n AddBatchTasksResponse,\n BatchTaskCreated,\n BatchTaskListItem,\n BatchPagination,\n ListBatchTasksOptions,\n ListBatchTasksResponse,\n CancelBatchResponse,\n ListBatchesOptions,\n ListBatchesResponse,\n BatchWaitOptions,\n DatasourceCategoryId,\n DatasourceModality,\n DatasourcePricing,\n DatasourceCoverage,\n Datasource,\n DatasourceCategory,\n DatasourcesListOptions,\n DatasourcesListResponse,\n DatasourcesCategoriesResponse,\n} from \"./types\";\n"],"mappings":"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","names":["axios","response"]}
package/dist/index.mjs CHANGED
@@ -303,6 +303,9 @@ var Valyu = class {
303
303
  if (options.excludeSources !== void 0) {
304
304
  payload.exclude_sources = options.excludeSources;
305
305
  }
306
+ if (options.sourceBiases !== void 0) {
307
+ payload.source_biases = options.sourceBiases;
308
+ }
306
309
  if (options.category !== void 0) {
307
310
  payload.category = options.category;
308
311
  }
@@ -595,6 +598,10 @@ var Valyu = class {
595
598
  code_execution: options.codeExecution !== false
596
599
  };
597
600
  if (options.strategy) payload.strategy = options.strategy;
601
+ if (options.researchStrategy)
602
+ payload.research_strategy = options.researchStrategy;
603
+ if (options.reportFormat)
604
+ payload.report_format = options.reportFormat;
598
605
  if (options.search) {
599
606
  payload.search = {};
600
607
  if (options.search.searchType) {
@@ -606,6 +613,9 @@ var Valyu = class {
606
613
  if (options.search.excludedSources) {
607
614
  payload.search.excluded_sources = options.search.excludedSources;
608
615
  }
616
+ if (options.search.sourceBiases) {
617
+ payload.search.source_biases = options.search.sourceBiases;
618
+ }
609
619
  if (options.search.startDate) {
610
620
  payload.search.start_date = options.search.startDate;
611
621
  }
@@ -902,6 +912,9 @@ var Valyu = class {
902
912
  if (options.search.excludedSources) {
903
913
  payload.search.excluded_sources = options.search.excludedSources;
904
914
  }
915
+ if (options.search.sourceBiases) {
916
+ payload.search.source_biases = options.search.sourceBiases;
917
+ }
905
918
  if (options.search.startDate) {
906
919
  payload.search.start_date = options.search.startDate;
907
920
  }
@@ -989,6 +1002,10 @@ var Valyu = class {
989
1002
  }
990
1003
  if (task.id) taskPayload.id = task.id;
991
1004
  if (task.strategy) taskPayload.strategy = task.strategy;
1005
+ if (task.researchStrategy)
1006
+ taskPayload.research_strategy = task.researchStrategy;
1007
+ if (task.reportFormat)
1008
+ taskPayload.report_format = task.reportFormat;
992
1009
  if (task.urls) taskPayload.urls = task.urls;
993
1010
  if (task.metadata) taskPayload.metadata = task.metadata;
994
1011
  return taskPayload;
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { createHmac, timingSafeEqual } from \"crypto\";\nimport axios from \"axios\";\nimport {\n SearchResponse,\n SearchType,\n SearchOptions,\n ContentsOptions,\n ContentsResponse,\n ContentsAsyncJobResponse,\n ContentsJobResponse,\n ContentsJobWaitOptions,\n AnswerOptions,\n AnswerResponse,\n AnswerSuccessResponse,\n AnswerStreamChunk,\n SearchResult,\n DeepResearchCreateOptions,\n DeepResearchCreateResponse,\n DeepResearchStatusResponse,\n DeepResearchListResponse,\n DeepResearchUpdateResponse,\n DeepResearchCancelResponse,\n DeepResearchDeleteResponse,\n DeepResearchTogglePublicResponse,\n DeepResearchGetAssetsOptions,\n DeepResearchGetAssetsResponse,\n WaitOptions,\n StreamCallback,\n ListOptions,\n CreateBatchOptions,\n CreateBatchResponse,\n BatchStatusResponse,\n AddBatchTasksOptions,\n AddBatchTasksResponse,\n ListBatchTasksOptions,\n ListBatchTasksResponse,\n CancelBatchResponse,\n ListBatchesOptions,\n ListBatchesResponse,\n BatchWaitOptions,\n DeepResearchBatch,\n DatasourcesListOptions,\n DatasourcesListResponse,\n DatasourcesCategoriesResponse,\n} from \"./types\";\n\n/** Normalize API job response (snake_case) to SDK format (camelCase). Omits poll_url. */\nfunction normalizeContentsJobResponse(api: Record<string, any>): ContentsJobResponse {\n return {\n success: api.success ?? true,\n jobId: api.job_id ?? api.jobId,\n status: api.status ?? \"pending\",\n urlsTotal: api.urls_total ?? api.urlsTotal ?? 0,\n urlsProcessed: api.urls_processed ?? api.urlsProcessed ?? 0,\n urlsFailed: api.urls_failed ?? api.urlsFailed ?? 0,\n createdAt: api.created_at ?? api.createdAt ?? 0,\n updatedAt: api.updated_at ?? api.updatedAt ?? 0,\n currentBatch: api.current_batch ?? api.currentBatch,\n totalBatches: api.total_batches ?? api.totalBatches,\n results: api.results,\n actualCostDollars: api.actual_cost_dollars ?? api.actualCostDollars,\n error: api.error,\n webhookSecret: api.webhook_secret ?? api.webhookSecret,\n };\n}\n\n/** Normalize API async job creation response (202) to SDK format. */\nfunction normalizeContentsAsyncJobResponse(\n api: Record<string, any>\n): ContentsAsyncJobResponse {\n return {\n success: api.success ?? true,\n jobId: api.job_id ?? api.jobId,\n status: \"pending\",\n urlsTotal: api.urls_total ?? api.urlsTotal ?? 0,\n webhookSecret: api.webhook_secret ?? api.webhookSecret,\n txId: api.tx_id ?? api.txId ?? \"\",\n };\n}\n\n/**\n * Verify webhook signature for Contents API async completion notifications.\n * Use the raw request body (not parsed JSON) as payload.\n * @param payload - Raw request body string\n * @param signature - X-Webhook-Signature header value\n * @param timestamp - X-Webhook-Timestamp header value\n * @param secret - webhookSecret from job creation\n */\nexport function verifyContentsWebhookSignature(\n payload: string,\n signature: string,\n timestamp: string,\n secret: string\n): boolean {\n const expected = createHmac(\"sha256\", secret)\n .update(`${timestamp}.${payload}`)\n .digest(\"hex\");\n const expectedSignature = `sha256=${expected}`;\n if (signature.length !== expectedSignature.length) return false;\n return timingSafeEqual(\n Buffer.from(signature, \"utf8\"),\n Buffer.from(expectedSignature, \"utf8\")\n );\n}\n\n// Valyu API client\nexport class Valyu {\n private baseUrl: string;\n private headers: Record<string, string>;\n\n // DeepResearch namespace\n public deepresearch: {\n create: (\n options: DeepResearchCreateOptions\n ) => Promise<DeepResearchCreateResponse>;\n status: (taskId: string) => Promise<DeepResearchStatusResponse>;\n wait: (\n taskId: string,\n options?: WaitOptions\n ) => Promise<DeepResearchStatusResponse>;\n stream: (taskId: string, callback: StreamCallback) => Promise<void>;\n list: (options: ListOptions) => Promise<DeepResearchListResponse>;\n update: (\n taskId: string,\n instruction: string\n ) => Promise<DeepResearchUpdateResponse>;\n cancel: (taskId: string) => Promise<DeepResearchCancelResponse>;\n delete: (taskId: string) => Promise<DeepResearchDeleteResponse>;\n togglePublic: (\n taskId: string,\n isPublic: boolean\n ) => Promise<DeepResearchTogglePublicResponse>;\n getAssets: (\n taskId: string,\n assetId: string,\n options?: DeepResearchGetAssetsOptions\n ) => Promise<DeepResearchGetAssetsResponse>;\n };\n\n // Batch API namespace\n public batch: {\n create: (options?: CreateBatchOptions) => Promise<CreateBatchResponse>;\n status: (batchId: string) => Promise<BatchStatusResponse>;\n addTasks: (\n batchId: string,\n options: AddBatchTasksOptions\n ) => Promise<AddBatchTasksResponse>;\n listTasks: (\n batchId: string,\n options?: ListBatchTasksOptions\n ) => Promise<ListBatchTasksResponse>;\n cancel: (batchId: string) => Promise<CancelBatchResponse>;\n list: (options?: ListBatchesOptions) => Promise<ListBatchesResponse>;\n waitForCompletion: (\n batchId: string,\n options?: BatchWaitOptions\n ) => Promise<DeepResearchBatch>;\n };\n\n // Datasources API namespace\n public datasources: {\n list: (options?: DatasourcesListOptions) => Promise<DatasourcesListResponse>;\n categories: () => Promise<DatasourcesCategoriesResponse>;\n };\n\n constructor(apiKey?: string, baseUrl: string = \"https://api.valyu.ai/v1\") {\n if (!apiKey) {\n apiKey = process.env.VALYU_API_KEY;\n if (!apiKey) {\n throw new Error(\"VALYU_API_KEY is not set\");\n }\n }\n this.baseUrl = baseUrl;\n this.headers = {\n \"Content-Type\": \"application/json\",\n \"x-api-key\": apiKey,\n };\n\n // Initialize DeepResearch namespace\n this.deepresearch = {\n create: this._deepresearchCreate.bind(this),\n status: this._deepresearchStatus.bind(this),\n wait: this._deepresearchWait.bind(this),\n stream: this._deepresearchStream.bind(this),\n list: this._deepresearchList.bind(this),\n update: this._deepresearchUpdate.bind(this),\n cancel: this._deepresearchCancel.bind(this),\n delete: this._deepresearchDelete.bind(this),\n togglePublic: this._deepresearchTogglePublic.bind(this),\n getAssets: this._deepresearchGetAssets.bind(this),\n };\n\n // Initialize Batch namespace\n this.batch = {\n create: this._batchCreate.bind(this),\n status: this._batchStatus.bind(this),\n addTasks: this._batchAddTasks.bind(this),\n listTasks: this._batchListTasks.bind(this),\n cancel: this._batchCancel.bind(this),\n list: this._batchList.bind(this),\n waitForCompletion: this._batchWaitForCompletion.bind(this),\n };\n\n // Initialize Datasources namespace\n this.datasources = {\n list: this._datasourcesList.bind(this),\n categories: this._datasourcesCategories.bind(this),\n };\n }\n\n /**\n * Validates date format (YYYY-MM-DD)\n */\n private validateDateFormat(date: string): boolean {\n const dateRegex = /^\\d{4}-\\d{2}-\\d{2}$/;\n if (!dateRegex.test(date)) {\n return false;\n }\n const parsedDate = new Date(date);\n return parsedDate instanceof Date && !isNaN(parsedDate.getTime());\n }\n\n /**\n * Validates if a string is a valid URL\n */\n private validateUrl(url: string): boolean {\n try {\n new URL(url);\n return true;\n } catch {\n return false;\n }\n }\n\n /**\n * Validates if a string is a valid domain (with optional path)\n */\n private validateDomain(domain: string): boolean {\n // Domain must have at least one dot and valid structure\n // Supports: example.com, example.com/path, subdomain.example.com/path/to/resource\n const domainRegex =\n /^[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(\\/.+)?$/;\n return domainRegex.test(domain);\n }\n\n /**\n * Validates if a string is a valid dataset identifier (provider/datasetname)\n */\n private validateDatasetId(datasetId: string): boolean {\n // Dataset format: provider/datasetname (exactly one slash)\n // Provider and dataset name can contain alphanumeric, hyphens, underscores\n const parts = datasetId.split(\"/\");\n if (parts.length !== 2) return false;\n\n const providerRegex = /^[a-zA-Z0-9_-]+$/;\n const datasetRegex = /^[a-zA-Z0-9_-]+$/;\n\n return (\n providerRegex.test(parts[0]) &&\n datasetRegex.test(parts[1]) &&\n parts[0].length > 0 &&\n parts[1].length > 0\n );\n }\n\n /**\n * Validates source strings (domains, URLs, or dataset IDs)\n */\n private validateSource(source: string): boolean {\n // Check if it's a valid URL\n if (this.validateUrl(source)) {\n return true;\n }\n\n // Check if it's a valid domain (with optional path)\n if (this.validateDomain(source)) {\n return true;\n }\n\n // Check if it's a valid dataset identifier\n if (this.validateDatasetId(source)) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Validates an array of source strings\n */\n private validateSources(sources: string[]): {\n valid: boolean;\n invalidSources: string[];\n } {\n const invalidSources: string[] = [];\n\n for (const source of sources) {\n if (!this.validateSource(source)) {\n invalidSources.push(source);\n }\n }\n\n return {\n valid: invalidSources.length === 0,\n invalidSources,\n };\n }\n\n /**\n * Search for information using the Valyu DeepSearch API\n * @param query - The search query string\n * @param options - Search configuration options\n * @param options.searchType - Type of search: \"web\", \"proprietary\", \"all\", or \"news\"\n * @param options.maxNumResults - Maximum number of results (1-100)\n * @param options.maxPrice - Maximum price per thousand characters (CPM)\n * @param options.isToolCall - Whether this is a tool call\n * @param options.relevanceThreshold - Minimum relevance score (0-1)\n * @param options.includedSources - List of specific sources to include\n * @param options.excludeSources - List of URLs/domains to exclude from search results\n * @param options.category - Category filter for search results\n * @param options.startDate - Start date filter (YYYY-MM-DD format)\n * @param options.endDate - End date filter (YYYY-MM-DD format)\n * @param options.countryCode - Country code filter for search results\n * @param options.responseLength - Response content length: \"short\"/\"medium\"/\"large\"/\"max\" or integer character count\n * @param options.fastMode - Fast mode for quicker but shorter results (default: false)\n * @param options.urlOnly - Returns shortened snippets (default: false)\n * @returns Promise resolving to search results\n */\n async search(\n query: string,\n options: SearchOptions = {}\n ): Promise<SearchResponse> {\n try {\n // Default values\n const defaultSearchType: SearchType = \"all\";\n const defaultMaxNumResults = 10;\n const defaultIsToolCall = true;\n const defaultRelevanceThreshold = 0.5;\n\n // Validate searchType\n let finalSearchType: SearchType = defaultSearchType;\n const providedSearchTypeString = options.searchType?.toLowerCase();\n\n if (\n providedSearchTypeString === \"web\" ||\n providedSearchTypeString === \"proprietary\" ||\n providedSearchTypeString === \"all\" ||\n providedSearchTypeString === \"news\"\n ) {\n finalSearchType = providedSearchTypeString as SearchType;\n } else if (options.searchType !== undefined) {\n return {\n success: false,\n error:\n \"Invalid searchType provided. Must be one of: all, web, proprietary, news\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate date formats\n if (options.startDate && !this.validateDateFormat(options.startDate)) {\n return {\n success: false,\n error: \"Invalid startDate format. Must be YYYY-MM-DD\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n if (options.endDate && !this.validateDateFormat(options.endDate)) {\n return {\n success: false,\n error: \"Invalid endDate format. Must be YYYY-MM-DD\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate maxNumResults range\n const maxNumResults = options.maxNumResults ?? defaultMaxNumResults;\n if (maxNumResults < 1 || maxNumResults > 100) {\n return {\n success: false,\n error: \"maxNumResults must be between 1 and 100\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate includedSources format\n if (options.includedSources !== undefined) {\n if (!Array.isArray(options.includedSources)) {\n return {\n success: false,\n error: \"includedSources must be an array\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n const includedSourcesValidation = this.validateSources(\n options.includedSources\n );\n if (!includedSourcesValidation.valid) {\n return {\n success: false,\n error: `Invalid includedSources format. Invalid sources: ${includedSourcesValidation.invalidSources.join(\n \", \"\n )}. Sources must be valid URLs, domains (with optional paths), or dataset identifiers in 'provider/dataset' format.`,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n // Validate excludeSources format\n if (options.excludeSources !== undefined) {\n if (!Array.isArray(options.excludeSources)) {\n return {\n success: false,\n error: \"excludeSources must be an array\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n const excludeSourcesValidation = this.validateSources(\n options.excludeSources\n );\n if (!excludeSourcesValidation.valid) {\n return {\n success: false,\n error: `Invalid excludeSources format. Invalid sources: ${excludeSourcesValidation.invalidSources.join(\n \", \"\n )}. Sources must be valid URLs, domains (with optional paths), or dataset identifiers in 'provider/dataset' format.`,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n // Build payload with snake_case for API\n const payload: Record<string, any> = {\n query,\n search_type: finalSearchType,\n max_num_results: maxNumResults,\n is_tool_call: options.isToolCall ?? defaultIsToolCall,\n relevance_threshold:\n options.relevanceThreshold ?? defaultRelevanceThreshold,\n };\n\n // Add maxPrice only if explicitly provided\n if (options.maxPrice !== undefined) {\n payload.max_price = options.maxPrice;\n }\n\n // Add optional parameters only if provided\n if (options.includedSources !== undefined) {\n payload.included_sources = options.includedSources;\n }\n\n if (options.excludeSources !== undefined) {\n payload.exclude_sources = options.excludeSources;\n }\n\n if (options.category !== undefined) {\n payload.category = options.category;\n }\n\n if (options.startDate !== undefined) {\n payload.start_date = options.startDate;\n }\n\n if (options.endDate !== undefined) {\n payload.end_date = options.endDate;\n }\n\n if (options.countryCode !== undefined) {\n payload.country_code = options.countryCode;\n }\n\n if (options.responseLength !== undefined) {\n payload.response_length = options.responseLength;\n }\n\n if (options.fastMode !== undefined) {\n payload.fast_mode = options.fastMode;\n }\n\n if (options.urlOnly !== undefined) {\n payload.url_only = options.urlOnly;\n }\n\n const response = await axios.post(`${this.baseUrl}/deepsearch`, payload, {\n headers: this.headers,\n });\n\n if (!response.status || response.status < 200 || response.status >= 300) {\n return {\n success: false,\n error: response.data?.error,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n return response.data;\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n /**\n * Extract content from URLs with optional AI processing\n * @param urls - Array of URLs to process (max 10 sync, max 50 with async: true)\n * @param options - Content extraction configuration options\n * @param options.summary - AI summary configuration: false (raw), true (auto), string (custom), or JSON schema\n * @param options.extractEffort - Extraction thoroughness: \"normal\", \"high\", or \"auto\"\n * @param options.responseLength - Content length per URL\n * @param options.maxPriceDollars - Maximum cost limit in USD\n * @param options.screenshot - Request page screenshots (default: false)\n * @param options.async - Force async processing (required for >10 URLs)\n * @param options.webhookUrl - HTTPS URL for completion notification (async only)\n * @returns Promise resolving to sync results or async job (when async: true or >10 URLs)\n */\n async contents(\n urls: string[],\n options: ContentsOptions = {}\n ): Promise<ContentsResponse | ContentsAsyncJobResponse> {\n try {\n // Validate URLs array\n if (!urls || !Array.isArray(urls)) {\n return {\n success: false,\n error: \"urls must be an array\",\n urls_requested: 0,\n urls_processed: 0,\n urls_failed: 0,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n if (urls.length === 0) {\n return {\n success: false,\n error: \"urls array cannot be empty\",\n urls_requested: 0,\n urls_processed: 0,\n urls_failed: 0,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n const isAsync = options.async === true || urls.length > 10;\n\n if (urls.length > 10 && !options.async) {\n return {\n success: false,\n error:\n \"Requests with more than 10 URLs require async processing. Add async: true to the request.\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n if (urls.length > 50) {\n return {\n success: false,\n error: \"Maximum 50 URLs allowed per request\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // Validate extractEffort if provided\n if (\n options.extractEffort &&\n ![\"normal\", \"high\", \"auto\"].includes(options.extractEffort)\n ) {\n return {\n success: false,\n error: \"extractEffort must be 'normal', 'high', or 'auto'\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // Validate responseLength if provided\n if (options.responseLength !== undefined) {\n const validLengths = [\"short\", \"medium\", \"large\", \"max\"];\n if (\n typeof options.responseLength === \"string\" &&\n !validLengths.includes(options.responseLength)\n ) {\n return {\n success: false,\n error:\n \"responseLength must be 'short', 'medium', 'large', 'max', or a number\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n if (\n typeof options.responseLength === \"number\" &&\n options.responseLength <= 0\n ) {\n return {\n success: false,\n error: \"responseLength number must be positive\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n }\n\n // Build payload with snake_case for API\n const payload: Record<string, any> = {\n urls,\n };\n\n // Add optional parameters only if provided\n if (options.summary !== undefined) {\n payload.summary = options.summary;\n }\n\n if (options.extractEffort !== undefined) {\n payload.extract_effort = options.extractEffort;\n }\n\n if (options.responseLength !== undefined) {\n payload.response_length = options.responseLength;\n }\n\n if (options.maxPriceDollars !== undefined) {\n payload.max_price_dollars = options.maxPriceDollars;\n }\n\n if (options.screenshot !== undefined) {\n payload.screenshot = options.screenshot;\n }\n\n if (isAsync) {\n payload.async = true;\n }\n if (options.webhookUrl !== undefined) {\n payload.webhook_url = options.webhookUrl;\n }\n\n const response = await axios.post(`${this.baseUrl}/contents`, payload, {\n headers: this.headers,\n });\n\n if (!response.status || response.status < 200 || response.status >= 300) {\n return {\n success: false,\n error: response.data?.error || \"Request failed\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // 202 Accepted - async job created\n if (response.status === 202) {\n return normalizeContentsAsyncJobResponse(response.data);\n }\n\n return response.data as ContentsResponse;\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n }\n\n /**\n * Get async Contents job status and results\n * @param jobId - Job ID from contents() async response\n * @returns Promise resolving to job status\n */\n async getContentsJob(jobId: string): Promise<ContentsJobResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/contents/jobs/${jobId}`,\n { headers: this.headers }\n );\n return normalizeContentsJobResponse(response.data);\n } catch (e: any) {\n const errData = e.response?.data;\n const status = e.response?.status;\n return {\n success: false,\n jobId,\n status: \"failed\",\n urlsTotal: 0,\n urlsProcessed: 0,\n urlsFailed: 0,\n createdAt: 0,\n updatedAt: 0,\n error:\n errData?.error ||\n (status === 403\n ? \"Forbidden - you do not have access to this job\"\n : status === 404\n ? `Job ${jobId} not found`\n : e.message),\n };\n }\n }\n\n /**\n * Wait for async Contents job completion (polls until terminal state)\n * @param jobId - Job ID from contents() async response\n * @param options - Wait configuration (pollInterval, maxWaitTime, onProgress)\n * @returns Promise resolving to final job status with results\n */\n async waitForJob(\n jobId: string,\n options: ContentsJobWaitOptions = {}\n ): Promise<ContentsJobResponse> {\n const pollInterval = options.pollInterval ?? 5000;\n const maxWaitTime = options.maxWaitTime ?? 7200000;\n const startTime = Date.now();\n\n while (true) {\n const status = await this.getContentsJob(jobId);\n\n if (!status.success && status.error) {\n throw new Error(status.error);\n }\n\n if (options.onProgress) {\n options.onProgress(status);\n }\n\n if (\n status.status === \"completed\" ||\n status.status === \"partial\" ||\n status.status === \"failed\"\n ) {\n return status;\n }\n\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * DeepResearch: Create a new research task\n * @param options.search - Search configuration options\n * @param options.search.searchType - Type of search: \"all\", \"web\", or \"proprietary\" (default: \"all\")\n * @param options.search.includedSources - Array of source types to include (e.g., [\"academic\", \"finance\", \"web\"])\n * @param options.search.excludedSources - Array of source types to exclude (e.g., [\"web\", \"patent\"])\n * @param options.search.startDate - Start date filter in ISO format (YYYY-MM-DD)\n * @param options.search.endDate - End date filter in ISO format (YYYY-MM-DD)\n * @param options.search.category - Category filter for search results\n */\n private async _deepresearchCreate(\n options: DeepResearchCreateOptions\n ): Promise<DeepResearchCreateResponse> {\n try {\n // Use query field (input is supported for backward compatibility)\n const queryValue = options.query ?? options.input;\n\n // Validation\n if (!queryValue?.trim()) {\n return {\n success: false,\n error: \"query is required and cannot be empty\",\n };\n }\n\n // Build payload with snake_case\n // Prefer mode over model (backward compatible)\n const mode = options.mode ?? options.model;\n const payload: Record<string, any> = {\n query: queryValue,\n mode: mode || \"fast\", // API defaults to \"standard\", but we keep \"fast\" for backward compatibility\n output_formats: options.outputFormats || [\"markdown\"],\n code_execution: options.codeExecution !== false,\n };\n\n // Add optional fields\n if (options.strategy) payload.strategy = options.strategy;\n if (options.search) {\n payload.search = {};\n if (options.search.searchType) {\n payload.search.search_type = options.search.searchType;\n }\n if (options.search.includedSources) {\n payload.search.included_sources = options.search.includedSources;\n }\n if (options.search.excludedSources) {\n payload.search.excluded_sources = options.search.excludedSources;\n }\n if (options.search.startDate) {\n payload.search.start_date = options.search.startDate;\n }\n if (options.search.endDate) {\n payload.search.end_date = options.search.endDate;\n }\n if (options.search.category) {\n payload.search.category = options.search.category;\n }\n }\n if (options.urls) payload.urls = options.urls;\n if (options.files) payload.files = options.files;\n if (options.deliverables) payload.deliverables = options.deliverables;\n if (options.mcpServers) payload.mcp_servers = options.mcpServers;\n if (options.previousReports) {\n payload.previous_reports = options.previousReports;\n }\n if (options.webhookUrl) payload.webhook_url = options.webhookUrl;\n if (options.brandCollectionId)\n payload.brand_collection_id = options.brandCollectionId;\n if (options.alertEmail) {\n if (typeof options.alertEmail === \"string\") {\n payload.alert_email = options.alertEmail;\n } else {\n payload.alert_email = {\n email: options.alertEmail.email,\n custom_url: options.alertEmail.custom_url,\n };\n }\n }\n if (options.metadata) payload.metadata = options.metadata;\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks`,\n payload,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Get task status\n */\n private async _deepresearchStatus(\n taskId: string\n ): Promise<DeepResearchStatusResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/status`,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Wait for task completion with polling\n */\n private async _deepresearchWait(\n taskId: string,\n options: WaitOptions = {}\n ): Promise<DeepResearchStatusResponse> {\n const pollInterval = options.pollInterval || 5000;\n const maxWaitTime = options.maxWaitTime || 7200000;\n const startTime = Date.now();\n\n while (true) {\n const status = await this._deepresearchStatus(taskId);\n\n if (!status.success) {\n throw new Error(status.error);\n }\n\n // Notify progress callback\n if (options.onProgress) {\n options.onProgress(status);\n }\n\n // Terminal states\n if (\n status.status === \"completed\" ||\n status.status === \"failed\" ||\n status.status === \"cancelled\"\n ) {\n return status;\n }\n\n // Check timeout\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n // Wait before next poll\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * DeepResearch: Stream real-time updates\n */\n private async _deepresearchStream(\n taskId: string,\n callback: StreamCallback\n ): Promise<void> {\n let isComplete = false;\n let lastMessageCount = 0;\n\n while (!isComplete) {\n try {\n const status = await this._deepresearchStatus(taskId);\n\n if (!status.success) {\n if (callback.onError) {\n callback.onError(new Error(status.error));\n }\n return;\n }\n\n // Progress updates\n if (status.progress && callback.onProgress) {\n callback.onProgress(\n status.progress.current_step,\n status.progress.total_steps\n );\n }\n\n // New messages\n if (status.messages && callback.onMessage) {\n const newMessages = status.messages.slice(lastMessageCount);\n newMessages.forEach((msg) => callback.onMessage!(msg));\n lastMessageCount = status.messages.length;\n }\n\n // Terminal states\n if (status.status === \"completed\") {\n if (callback.onComplete) {\n callback.onComplete(status);\n }\n isComplete = true;\n } else if (\n status.status === \"failed\" ||\n status.status === \"cancelled\"\n ) {\n if (callback.onError) {\n callback.onError(\n new Error(status.error || `Task ${status.status}`)\n );\n }\n isComplete = true;\n }\n\n if (!isComplete) {\n await new Promise((resolve) => setTimeout(resolve, 5000));\n }\n } catch (error: any) {\n if (callback.onError) {\n callback.onError(error);\n }\n throw error;\n }\n }\n }\n\n /**\n * DeepResearch: List all tasks\n */\n private async _deepresearchList(\n options?: ListOptions\n ): Promise<DeepResearchListResponse> {\n try {\n const limit = options?.limit || 10;\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/list?limit=${limit}`,\n { headers: this.headers }\n );\n\n return { success: true, data: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Add follow-up instruction\n */\n private async _deepresearchUpdate(\n taskId: string,\n instruction: string\n ): Promise<DeepResearchUpdateResponse> {\n try {\n if (!instruction?.trim()) {\n return {\n success: false,\n error: \"instruction is required and cannot be empty\",\n };\n }\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/update`,\n { instruction },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Cancel task\n */\n private async _deepresearchCancel(\n taskId: string\n ): Promise<DeepResearchCancelResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/cancel`,\n {},\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Delete task\n */\n private async _deepresearchDelete(\n taskId: string\n ): Promise<DeepResearchDeleteResponse> {\n try {\n const response = await axios.delete(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/delete`,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Toggle public flag\n */\n private async _deepresearchTogglePublic(\n taskId: string,\n isPublic: boolean\n ): Promise<DeepResearchTogglePublicResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/public`,\n { public: isPublic },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Get task assets (images, deliverables, PDFs)\n */\n private async _deepresearchGetAssets(\n taskId: string,\n assetId: string,\n options: DeepResearchGetAssetsOptions = {}\n ): Promise<DeepResearchGetAssetsResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.token) {\n params.append(\"token\", options.token);\n }\n\n // Build headers - use API key if no token provided\n const headers: Record<string, string> = {};\n if (!options.token) {\n headers[\"x-api-key\"] = this.headers[\"x-api-key\"];\n }\n\n const url = `${\n this.baseUrl\n }/deepresearch/tasks/${taskId}/assets/${assetId}${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n\n const response = await axios.get(url, {\n headers,\n responseType: \"arraybuffer\", // For binary data\n });\n\n return {\n success: true,\n data: Buffer.from(response.data),\n contentType:\n response.headers[\"content-type\"] || \"application/octet-stream\",\n };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Create a new batch\n * @param options - Batch configuration options\n * @param options.name - Optional name for the batch\n * @param options.model - DeepResearch mode: \"fast\", \"standard\", or \"heavy\" (default: \"standard\")\n * @param options.outputFormats - Output formats for tasks (default: [\"markdown\"])\n * @param options.search - Search configuration for all tasks in batch\n * @param options.search.searchType - Type of search: \"all\", \"web\", or \"proprietary\" (default: \"all\")\n * @param options.search.includedSources - Array of source types to include (e.g., [\"academic\", \"finance\", \"web\"])\n * @param options.search.excludedSources - Array of source types to exclude (e.g., [\"web\", \"patent\"])\n * @param options.search.startDate - Start date filter in ISO format (YYYY-MM-DD)\n * @param options.search.endDate - End date filter in ISO format (YYYY-MM-DD)\n * @param options.search.category - Category filter for search results\n * @param options.webhookUrl - Optional HTTPS URL for completion notification\n * @param options.metadata - Optional metadata key-value pairs\n * @returns Promise resolving to batch creation response with batch_id and webhook_secret\n */\n private async _batchCreate(\n options: CreateBatchOptions = {}\n ): Promise<CreateBatchResponse> {\n try {\n const payload: Record<string, any> = {};\n\n if (options.name) payload.name = options.name;\n // Accept both mode (preferred) and model (backward compatible)\n const mode = options.mode ?? options.model;\n if (mode) payload.mode = mode;\n if (options.outputFormats) payload.output_formats = options.outputFormats;\n if (options.search) {\n payload.search = {};\n if (options.search.searchType) {\n payload.search.search_type = options.search.searchType;\n }\n if (options.search.includedSources) {\n payload.search.included_sources = options.search.includedSources;\n }\n if (options.search.excludedSources) {\n payload.search.excluded_sources = options.search.excludedSources;\n }\n if (options.search.startDate) {\n payload.search.start_date = options.search.startDate;\n }\n if (options.search.endDate) {\n payload.search.end_date = options.search.endDate;\n }\n if (options.search.category) {\n payload.search.category = options.search.category;\n }\n }\n if (options.webhookUrl) payload.webhook_url = options.webhookUrl;\n if (options.metadata) payload.metadata = options.metadata;\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches`,\n payload,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Get batch status\n * @param batchId - The batch ID to query\n * @returns Promise resolving to batch status with counts and usage\n */\n private async _batchStatus(batchId: string): Promise<BatchStatusResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/batches/${batchId}`,\n { headers: this.headers }\n );\n\n return { success: true, batch: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Add tasks to a batch\n * @param batchId - The batch ID to add tasks to\n * @param options - Task configuration options\n * @param options.tasks - Array of task inputs (use 'query' field for each task)\n * @returns Promise resolving to response with added, tasks array, counts, and batch_id\n */\n private async _batchAddTasks(\n batchId: string,\n options: AddBatchTasksOptions\n ): Promise<AddBatchTasksResponse> {\n try {\n if (!options.tasks || !Array.isArray(options.tasks)) {\n return {\n success: false,\n error: \"tasks must be an array\",\n };\n }\n\n if (options.tasks.length === 0) {\n return {\n success: false,\n error: \"tasks array cannot be empty\",\n };\n }\n\n if (options.tasks.length > 100) {\n return {\n success: false,\n error: \"Maximum 100 tasks allowed per request\",\n };\n }\n\n // Validate that each task has a query\n for (const task of options.tasks) {\n if (!task.query && !task.input) {\n return {\n success: false,\n error: \"Each task must have a 'query' field\",\n };\n }\n }\n\n // Convert tasks to snake_case format for API\n // Note: Tasks can only include: id, query, strategy, urls, metadata\n // Tasks inherit model, output_formats, and search_params from batch\n const tasksPayload = options.tasks.map((task) => {\n const taskPayload: Record<string, any> = {};\n\n // Use query field (input is supported for backward compatibility)\n const queryValue = task.query ?? task.input;\n if (queryValue) {\n taskPayload.query = queryValue;\n }\n\n if (task.id) taskPayload.id = task.id;\n if (task.strategy) taskPayload.strategy = task.strategy;\n if (task.urls) taskPayload.urls = task.urls;\n if (task.metadata) taskPayload.metadata = task.metadata;\n\n return taskPayload;\n });\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches/${batchId}/tasks`,\n { tasks: tasksPayload },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: List all tasks in a batch\n * @param batchId - The batch ID to query\n * @param options - Optional pagination and filtering options\n * @param options.status - Filter by status: \"queued\", \"running\", \"completed\", \"failed\", or \"cancelled\"\n * @param options.limit - Maximum number of tasks to return\n * @param options.lastKey - Pagination token from previous response\n * @returns Promise resolving to list of tasks with their status and pagination info\n */\n private async _batchListTasks(\n batchId: string,\n options: ListBatchTasksOptions = {}\n ): Promise<ListBatchTasksResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.status) {\n params.append(\"status\", options.status);\n }\n if (options.limit !== undefined) {\n params.append(\"limit\", options.limit.toString());\n }\n if (options.lastKey) {\n params.append(\"last_key\", options.lastKey);\n }\n if (options.includeOutput !== undefined) {\n params.append(\"include_output\", options.includeOutput.toString());\n }\n\n const url = `${this.baseUrl}/deepresearch/batches/${batchId}/tasks${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, { headers: this.headers });\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Cancel a batch and all its pending tasks\n * @param batchId - The batch ID to cancel\n * @returns Promise resolving to cancellation confirmation\n */\n private async _batchCancel(batchId: string): Promise<CancelBatchResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches/${batchId}/cancel`,\n {},\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: List all batches\n * @param options - Optional options\n * @param options.limit - Maximum number of batches to return\n * @returns Promise resolving to list of all batches\n */\n private async _batchList(\n options: ListBatchesOptions = {}\n ): Promise<ListBatchesResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.limit !== undefined) {\n params.append(\"limit\", options.limit.toString());\n }\n\n const url = `${this.baseUrl}/deepresearch/batches${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, {\n headers: this.headers,\n });\n\n return { success: true, batches: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Wait for batch completion with polling\n * @param batchId - The batch ID to wait for\n * @param options - Wait configuration options\n * @param options.pollInterval - Polling interval in milliseconds (default: 10000)\n * @param options.maxWaitTime - Maximum wait time in milliseconds (default: 7200000)\n * @param options.onProgress - Callback for progress updates\n * @returns Promise resolving to final batch status\n */\n private async _batchWaitForCompletion(\n batchId: string,\n options: BatchWaitOptions = {}\n ): Promise<DeepResearchBatch> {\n const pollInterval = options.pollInterval || 10000; // 10 seconds default\n const maxWaitTime = options.maxWaitTime || 7200000; // 2 hours default\n const startTime = Date.now();\n\n while (true) {\n const statusResponse = await this._batchStatus(batchId);\n\n if (!statusResponse.success || !statusResponse.batch) {\n throw new Error(statusResponse.error || \"Failed to get batch status\");\n }\n\n const batch = statusResponse.batch;\n\n // Notify progress callback\n if (options.onProgress) {\n options.onProgress(batch);\n }\n\n // Terminal states\n if (\n batch.status === \"completed\" ||\n batch.status === \"completed_with_errors\" ||\n batch.status === \"cancelled\"\n ) {\n return batch;\n }\n\n // Check timeout\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n // Wait before next poll\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * Get AI-powered answers using the Valyu Answer API\n * @param query - The question or query string\n * @param options - Answer configuration options\n * @param options.structuredOutput - JSON Schema object for structured responses\n * @param options.systemInstructions - Custom system-level instructions (max 2000 chars)\n * @param options.searchType - Type of search: \"web\", \"proprietary\", \"all\", or \"news\"\n * @param options.dataMaxPrice - Maximum spend (USD) for data retrieval\n * @param options.countryCode - Country code filter for search results\n * @param options.includedSources - List of specific sources to include\n * @param options.excludedSources - List of URLs/domains to exclude from search results\n * @param options.startDate - Start date filter (YYYY-MM-DD format)\n * @param options.endDate - End date filter (YYYY-MM-DD format)\n * @param options.fastMode - Fast mode for quicker but shorter results (default: false)\n * @param options.streaming - Enable streaming mode (default: false)\n * @returns Promise resolving to answer response, or AsyncGenerator for streaming\n */\n async answer(\n query: string,\n options: AnswerOptions = {}\n ): Promise<\n AnswerResponse | AsyncGenerator<AnswerStreamChunk, void, unknown>\n > {\n // Validate inputs first\n const validationError = this.validateAnswerParams(query, options);\n if (validationError) {\n if (options.streaming) {\n return this.createErrorGenerator(validationError);\n }\n return { success: false, error: validationError };\n }\n\n const payload = this.buildAnswerPayload(query, options);\n\n if (options.streaming) {\n return this.streamAnswer(payload);\n } else {\n return this.fetchAnswer(payload);\n }\n }\n\n /**\n * Validate answer parameters\n */\n private validateAnswerParams(\n query: string,\n options: AnswerOptions\n ): string | null {\n // Validate query\n if (!query || typeof query !== \"string\" || query.trim().length === 0) {\n return \"Query is required and must be a non-empty string\";\n }\n\n // Validate searchType\n const providedSearchTypeString = options.searchType?.toLowerCase();\n if (\n providedSearchTypeString !== undefined &&\n providedSearchTypeString !== \"web\" &&\n providedSearchTypeString !== \"proprietary\" &&\n providedSearchTypeString !== \"all\" &&\n providedSearchTypeString !== \"news\"\n ) {\n return \"Invalid searchType provided. Must be one of: all, web, proprietary, news\";\n }\n\n // Validate systemInstructions\n if (options.systemInstructions !== undefined) {\n if (typeof options.systemInstructions !== \"string\") {\n return \"systemInstructions must be a string\";\n }\n const trimmed = options.systemInstructions.trim();\n if (trimmed.length === 0) {\n return \"systemInstructions cannot be empty when provided\";\n }\n if (trimmed.length > 2000) {\n return \"systemInstructions must be 2000 characters or less\";\n }\n }\n\n // Validate dataMaxPrice\n if (options.dataMaxPrice !== undefined) {\n if (\n typeof options.dataMaxPrice !== \"number\" ||\n options.dataMaxPrice <= 0\n ) {\n return \"dataMaxPrice must be a positive number\";\n }\n }\n\n // Validate date formats\n if (options.startDate && !this.validateDateFormat(options.startDate)) {\n return \"Invalid startDate format. Must be YYYY-MM-DD\";\n }\n if (options.endDate && !this.validateDateFormat(options.endDate)) {\n return \"Invalid endDate format. Must be YYYY-MM-DD\";\n }\n if (options.startDate && options.endDate) {\n const startDate = new Date(options.startDate);\n const endDate = new Date(options.endDate);\n if (startDate > endDate) {\n return \"startDate must be before endDate\";\n }\n }\n\n // Validate sources\n if (options.includedSources !== undefined) {\n if (!Array.isArray(options.includedSources)) {\n return \"includedSources must be an array\";\n }\n const validation = this.validateSources(options.includedSources);\n if (!validation.valid) {\n return `Invalid includedSources format. Invalid sources: ${validation.invalidSources.join(\n \", \"\n )}.`;\n }\n }\n if (options.excludedSources !== undefined) {\n if (!Array.isArray(options.excludedSources)) {\n return \"excludedSources must be an array\";\n }\n const validation = this.validateSources(options.excludedSources);\n if (!validation.valid) {\n return `Invalid excludedSources format. Invalid sources: ${validation.invalidSources.join(\n \", \"\n )}.`;\n }\n }\n\n return null;\n }\n\n /**\n * Build payload for answer API\n */\n private buildAnswerPayload(\n query: string,\n options: AnswerOptions\n ): Record<string, any> {\n const defaultSearchType: SearchType = \"all\";\n const providedSearchTypeString = options.searchType?.toLowerCase();\n let finalSearchType: SearchType = defaultSearchType;\n\n if (\n providedSearchTypeString === \"web\" ||\n providedSearchTypeString === \"proprietary\" ||\n providedSearchTypeString === \"all\" ||\n providedSearchTypeString === \"news\"\n ) {\n finalSearchType = providedSearchTypeString as SearchType;\n }\n\n const payload: Record<string, any> = {\n query: query.trim(),\n search_type: finalSearchType,\n };\n\n if (options.dataMaxPrice !== undefined)\n payload.data_max_price = options.dataMaxPrice;\n if (options.structuredOutput !== undefined)\n payload.structured_output = options.structuredOutput;\n if (options.systemInstructions !== undefined)\n payload.system_instructions = options.systemInstructions.trim();\n if (options.countryCode !== undefined)\n payload.country_code = options.countryCode;\n if (options.includedSources !== undefined)\n payload.included_sources = options.includedSources;\n if (options.excludedSources !== undefined)\n payload.excluded_sources = options.excludedSources;\n if (options.startDate !== undefined) payload.start_date = options.startDate;\n if (options.endDate !== undefined) payload.end_date = options.endDate;\n if (options.fastMode !== undefined) payload.fast_mode = options.fastMode;\n\n return payload;\n }\n\n /**\n * Fetch answer (non-streaming mode)\n */\n private async fetchAnswer(\n payload: Record<string, any>\n ): Promise<AnswerResponse> {\n try {\n const response = await fetch(`${this.baseUrl}/answer`, {\n method: \"POST\",\n headers: {\n ...this.headers,\n Accept: \"text/event-stream\",\n },\n body: JSON.stringify(payload),\n });\n\n if (!response.ok) {\n const errorData = await response.json().catch(() => ({}));\n return {\n success: false,\n error: errorData.error || `HTTP Error: ${response.status}`,\n };\n }\n\n // Collect streamed data into final response\n let fullContent = \"\";\n let searchResults: SearchResult[] = [];\n let finalMetadata: any = {};\n\n const reader = response.body?.getReader();\n const decoder = new TextDecoder();\n let buffer = \"\";\n\n if (reader) {\n while (true) {\n const { done, value } = await reader.read();\n if (done) break;\n\n buffer += decoder.decode(value, { stream: true });\n const lines = buffer.split(\"\\n\");\n buffer = lines.pop() || \"\";\n\n for (const line of lines) {\n if (!line.startsWith(\"data: \")) continue;\n const dataStr = line.slice(6);\n\n if (dataStr === \"[DONE]\") continue;\n\n try {\n const parsed = JSON.parse(dataStr);\n\n // Handle search results\n if (parsed.search_results && !parsed.success) {\n searchResults = [...searchResults, ...parsed.search_results];\n }\n // Handle content chunks\n else if (parsed.choices) {\n const content = parsed.choices[0]?.delta?.content || \"\";\n if (content) fullContent += content;\n }\n // Handle final metadata\n else if (parsed.success !== undefined) {\n finalMetadata = parsed;\n }\n } catch {\n continue;\n }\n }\n }\n }\n\n // Build final response\n if (finalMetadata.success) {\n const finalSearchResults =\n finalMetadata.search_results || searchResults;\n const response: AnswerSuccessResponse = {\n success: true,\n tx_id: finalMetadata.tx_id || \"\",\n original_query: finalMetadata.original_query || payload.query,\n contents: finalMetadata.contents || fullContent || \"\",\n search_results: finalSearchResults,\n search_metadata: finalMetadata.search_metadata || {\n tx_ids: [],\n number_of_results: 0,\n total_characters: 0,\n },\n ai_usage: finalMetadata.ai_usage || {\n input_tokens: 0,\n output_tokens: 0,\n },\n cost: finalMetadata.cost || {\n total_deduction_dollars: 0,\n search_deduction_dollars: 0,\n ai_deduction_dollars: 0,\n },\n };\n if (finalMetadata.extraction_metadata) {\n response.extraction_metadata = finalMetadata.extraction_metadata;\n }\n return response;\n }\n\n return {\n success: false,\n error: finalMetadata.error || \"Unknown error occurred\",\n };\n } catch (e: any) {\n return {\n success: false,\n error: e.message || \"Request failed\",\n };\n }\n }\n\n /**\n * Stream answer using SSE\n */\n private async *streamAnswer(\n payload: Record<string, any>\n ): AsyncGenerator<AnswerStreamChunk, void, unknown> {\n try {\n const response = await fetch(`${this.baseUrl}/answer`, {\n method: \"POST\",\n headers: {\n ...this.headers,\n Accept: \"text/event-stream\",\n },\n body: JSON.stringify(payload),\n });\n\n if (!response.ok) {\n const errorData = await response.json().catch(() => ({}));\n yield {\n type: \"error\",\n error: errorData.error || `HTTP Error: ${response.status}`,\n };\n return;\n }\n\n const reader = response.body?.getReader();\n const decoder = new TextDecoder();\n let buffer = \"\";\n\n if (!reader) {\n yield { type: \"error\", error: \"No response body\" };\n return;\n }\n\n while (true) {\n const { done, value } = await reader.read();\n if (done) break;\n\n buffer += decoder.decode(value, { stream: true });\n const lines = buffer.split(\"\\n\");\n buffer = lines.pop() || \"\";\n\n for (const line of lines) {\n if (!line.startsWith(\"data: \")) continue;\n const dataStr = line.slice(6);\n\n if (dataStr === \"[DONE]\") {\n yield { type: \"done\" };\n continue;\n }\n\n try {\n const parsed = JSON.parse(dataStr);\n\n // Handle search results\n if (parsed.search_results && parsed.success === undefined) {\n yield {\n type: \"search_results\",\n search_results: parsed.search_results,\n };\n }\n // Handle content chunks\n else if (parsed.choices) {\n const delta = parsed.choices[0]?.delta || {};\n const content = delta.content || \"\";\n const finishReason = parsed.choices[0]?.finish_reason;\n\n if (content || finishReason) {\n yield { type: \"content\", content, finish_reason: finishReason };\n }\n }\n // Handle final metadata\n else if (parsed.success !== undefined) {\n yield {\n type: \"metadata\",\n tx_id: parsed.tx_id,\n original_query: parsed.original_query,\n contents: parsed.contents,\n search_results: parsed.search_results,\n search_metadata: parsed.search_metadata,\n ai_usage: parsed.ai_usage,\n cost: parsed.cost,\n extraction_metadata: parsed.extraction_metadata,\n };\n }\n } catch {\n continue;\n }\n }\n }\n } catch (e: any) {\n yield { type: \"error\", error: e.message || \"Stream failed\" };\n }\n }\n\n /**\n * Create an error generator for streaming errors\n */\n private async *createErrorGenerator(\n error: string\n ): AsyncGenerator<AnswerStreamChunk, void, unknown> {\n yield { type: \"error\", error };\n }\n\n /**\n * Datasources: List all available datasources\n * @param options - Optional filter options\n * @param options.category - Filter by category (e.g., \"research\", \"markets\", \"healthcare\")\n * @returns Promise resolving to list of datasources with their metadata\n */\n private async _datasourcesList(\n options: DatasourcesListOptions = {}\n ): Promise<DatasourcesListResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.category) {\n params.append(\"category\", options.category);\n }\n\n const url = `${this.baseUrl}/datasources${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, { headers: this.headers });\n\n return { success: true, datasources: response.data.datasources };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Datasources: Get all available categories\n * @returns Promise resolving to list of categories with their metadata\n */\n private async _datasourcesCategories(): Promise<DatasourcesCategoriesResponse> {\n try {\n const response = await axios.get(`${this.baseUrl}/datasources/categories`, {\n headers: this.headers,\n });\n\n return { success: true, categories: response.data.categories };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n}\n\nexport type {\n SearchResponse,\n SearchType,\n SearchResult,\n FeedbackSentiment,\n FeedbackResponse,\n SearchOptions,\n CountryCode,\n ResponseLength,\n ContentsOptions,\n ContentsResponse,\n ContentsAsyncJobResponse,\n ContentsJobResponse,\n ContentsJobStatus,\n ContentsJobWaitOptions,\n ContentResult,\n ContentResultSuccess,\n ContentResultFailed,\n ExtractEffort,\n ContentResponseLength,\n AnswerOptions,\n AnswerResponse,\n AnswerSuccessResponse,\n AnswerErrorResponse,\n AnswerStreamChunk,\n AnswerStreamChunkType,\n SearchMetadata,\n AIUsage,\n Cost,\n ExtractionMetadata,\n AlertEmailConfig,\n DeepResearchMode,\n DeepResearchStatus,\n DeepResearchOutputFormat,\n ImageType,\n ChartType,\n FileAttachment,\n MCPServerConfig,\n DeepResearchSearchConfig,\n DeepResearchCreateOptions,\n Progress,\n ChartDataPoint,\n ChartDataSeries,\n ImageMetadata,\n DeepResearchSource,\n DeepResearchUsage,\n DeepResearchCreateResponse,\n DeepResearchStatusResponse,\n DeepResearchTaskListItem,\n DeepResearchListResponse,\n DeepResearchUpdateResponse,\n DeepResearchCancelResponse,\n DeepResearchDeleteResponse,\n DeepResearchTogglePublicResponse,\n DeepResearchGetAssetsOptions,\n DeepResearchGetAssetsResponse,\n WaitOptions,\n StreamCallback,\n ListOptions,\n BatchStatus,\n BatchCounts,\n DeepResearchBatch,\n CreateBatchOptions,\n BatchTaskInput,\n AddBatchTasksOptions,\n CreateBatchResponse,\n BatchStatusResponse,\n AddBatchTasksResponse,\n BatchTaskCreated,\n BatchTaskListItem,\n BatchPagination,\n ListBatchTasksOptions,\n ListBatchTasksResponse,\n CancelBatchResponse,\n ListBatchesOptions,\n ListBatchesResponse,\n BatchWaitOptions,\n DatasourceCategoryId,\n DatasourceModality,\n DatasourcePricing,\n DatasourceCoverage,\n Datasource,\n DatasourceCategory,\n DatasourcesListOptions,\n DatasourcesListResponse,\n DatasourcesCategoriesResponse,\n} from \"./types\";\n"],"mappings":";AAAA,SAAS,YAAY,uBAAuB;AAC5C,OAAO,WAAW;AA8ClB,SAAS,6BAA6B,KAA+C;AACnF,SAAO;AAAA,IACL,SAAS,IAAI,WAAW;AAAA,IACxB,OAAO,IAAI,UAAU,IAAI;AAAA,IACzB,QAAQ,IAAI,UAAU;AAAA,IACtB,WAAW,IAAI,cAAc,IAAI,aAAa;AAAA,IAC9C,eAAe,IAAI,kBAAkB,IAAI,iBAAiB;AAAA,IAC1D,YAAY,IAAI,eAAe,IAAI,cAAc;AAAA,IACjD,WAAW,IAAI,cAAc,IAAI,aAAa;AAAA,IAC9C,WAAW,IAAI,cAAc,IAAI,aAAa;AAAA,IAC9C,cAAc,IAAI,iBAAiB,IAAI;AAAA,IACvC,cAAc,IAAI,iBAAiB,IAAI;AAAA,IACvC,SAAS,IAAI;AAAA,IACb,mBAAmB,IAAI,uBAAuB,IAAI;AAAA,IAClD,OAAO,IAAI;AAAA,IACX,eAAe,IAAI,kBAAkB,IAAI;AAAA,EAC3C;AACF;AAGA,SAAS,kCACP,KAC0B;AAC1B,SAAO;AAAA,IACL,SAAS,IAAI,WAAW;AAAA,IACxB,OAAO,IAAI,UAAU,IAAI;AAAA,IACzB,QAAQ;AAAA,IACR,WAAW,IAAI,cAAc,IAAI,aAAa;AAAA,IAC9C,eAAe,IAAI,kBAAkB,IAAI;AAAA,IACzC,MAAM,IAAI,SAAS,IAAI,QAAQ;AAAA,EACjC;AACF;AAUO,SAAS,+BACd,SACA,WACA,WACA,QACS;AACT,QAAM,WAAW,WAAW,UAAU,MAAM,EACzC,OAAO,GAAG,SAAS,IAAI,OAAO,EAAE,EAChC,OAAO,KAAK;AACf,QAAM,oBAAoB,UAAU,QAAQ;AAC5C,MAAI,UAAU,WAAW,kBAAkB,OAAQ,QAAO;AAC1D,SAAO;AAAA,IACL,OAAO,KAAK,WAAW,MAAM;AAAA,IAC7B,OAAO,KAAK,mBAAmB,MAAM;AAAA,EACvC;AACF;AAGO,IAAM,QAAN,MAAY;AAAA,EA2DjB,YAAY,QAAiB,UAAkB,2BAA2B;AACxE,QAAI,CAAC,QAAQ;AACX,eAAS,QAAQ,IAAI;AACrB,UAAI,CAAC,QAAQ;AACX,cAAM,IAAI,MAAM,0BAA0B;AAAA,MAC5C;AAAA,IACF;AACA,SAAK,UAAU;AACf,SAAK,UAAU;AAAA,MACb,gBAAgB;AAAA,MAChB,aAAa;AAAA,IACf;AAGA,SAAK,eAAe;AAAA,MAClB,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,MAAM,KAAK,kBAAkB,KAAK,IAAI;AAAA,MACtC,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,MAAM,KAAK,kBAAkB,KAAK,IAAI;AAAA,MACtC,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,QAAQ,KAAK,oBAAoB,KAAK,IAAI;AAAA,MAC1C,cAAc,KAAK,0BAA0B,KAAK,IAAI;AAAA,MACtD,WAAW,KAAK,uBAAuB,KAAK,IAAI;AAAA,IAClD;AAGA,SAAK,QAAQ;AAAA,MACX,QAAQ,KAAK,aAAa,KAAK,IAAI;AAAA,MACnC,QAAQ,KAAK,aAAa,KAAK,IAAI;AAAA,MACnC,UAAU,KAAK,eAAe,KAAK,IAAI;AAAA,MACvC,WAAW,KAAK,gBAAgB,KAAK,IAAI;AAAA,MACzC,QAAQ,KAAK,aAAa,KAAK,IAAI;AAAA,MACnC,MAAM,KAAK,WAAW,KAAK,IAAI;AAAA,MAC/B,mBAAmB,KAAK,wBAAwB,KAAK,IAAI;AAAA,IAC3D;AAGA,SAAK,cAAc;AAAA,MACjB,MAAM,KAAK,iBAAiB,KAAK,IAAI;AAAA,MACrC,YAAY,KAAK,uBAAuB,KAAK,IAAI;AAAA,IACnD;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKQ,mBAAmB,MAAuB;AAChD,UAAM,YAAY;AAClB,QAAI,CAAC,UAAU,KAAK,IAAI,GAAG;AACzB,aAAO;AAAA,IACT;AACA,UAAM,aAAa,IAAI,KAAK,IAAI;AAChC,WAAO,sBAAsB,QAAQ,CAAC,MAAM,WAAW,QAAQ,CAAC;AAAA,EAClE;AAAA;AAAA;AAAA;AAAA,EAKQ,YAAY,KAAsB;AACxC,QAAI;AACF,UAAI,IAAI,GAAG;AACX,aAAO;AAAA,IACT,QAAQ;AACN,aAAO;AAAA,IACT;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKQ,eAAe,QAAyB;AAG9C,UAAM,cACJ;AACF,WAAO,YAAY,KAAK,MAAM;AAAA,EAChC;AAAA;AAAA;AAAA;AAAA,EAKQ,kBAAkB,WAA4B;AAGpD,UAAM,QAAQ,UAAU,MAAM,GAAG;AACjC,QAAI,MAAM,WAAW,EAAG,QAAO;AAE/B,UAAM,gBAAgB;AACtB,UAAM,eAAe;AAErB,WACE,cAAc,KAAK,MAAM,CAAC,CAAC,KAC3B,aAAa,KAAK,MAAM,CAAC,CAAC,KAC1B,MAAM,CAAC,EAAE,SAAS,KAClB,MAAM,CAAC,EAAE,SAAS;AAAA,EAEtB;AAAA;AAAA;AAAA;AAAA,EAKQ,eAAe,QAAyB;AAE9C,QAAI,KAAK,YAAY,MAAM,GAAG;AAC5B,aAAO;AAAA,IACT;AAGA,QAAI,KAAK,eAAe,MAAM,GAAG;AAC/B,aAAO;AAAA,IACT;AAGA,QAAI,KAAK,kBAAkB,MAAM,GAAG;AAClC,aAAO;AAAA,IACT;AAEA,WAAO;AAAA,EACT;AAAA;AAAA;AAAA;AAAA,EAKQ,gBAAgB,SAGtB;AACA,UAAM,iBAA2B,CAAC;AAElC,eAAW,UAAU,SAAS;AAC5B,UAAI,CAAC,KAAK,eAAe,MAAM,GAAG;AAChC,uBAAe,KAAK,MAAM;AAAA,MAC5B;AAAA,IACF;AAEA,WAAO;AAAA,MACL,OAAO,eAAe,WAAW;AAAA,MACjC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAsBA,MAAM,OACJ,OACA,UAAyB,CAAC,GACD;AACzB,QAAI;AAEF,YAAM,oBAAgC;AACtC,YAAM,uBAAuB;AAC7B,YAAM,oBAAoB;AAC1B,YAAM,4BAA4B;AAGlC,UAAI,kBAA8B;AAClC,YAAM,2BAA2B,QAAQ,YAAY,YAAY;AAEjE,UACE,6BAA6B,SAC7B,6BAA6B,iBAC7B,6BAA6B,SAC7B,6BAA6B,QAC7B;AACA,0BAAkB;AAAA,MACpB,WAAW,QAAQ,eAAe,QAAW;AAC3C,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OACE;AAAA,UACF,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UAAI,QAAQ,aAAa,CAAC,KAAK,mBAAmB,QAAQ,SAAS,GAAG;AACpE,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,UAAI,QAAQ,WAAW,CAAC,KAAK,mBAAmB,QAAQ,OAAO,GAAG;AAChE,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,YAAM,gBAAgB,QAAQ,iBAAiB;AAC/C,UAAI,gBAAgB,KAAK,gBAAgB,KAAK;AAC5C,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UAAI,QAAQ,oBAAoB,QAAW;AACzC,YAAI,CAAC,MAAM,QAAQ,QAAQ,eAAe,GAAG;AAC3C,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO;AAAA,YACP,OAAO;AAAA,YACP;AAAA,YACA,SAAS,CAAC;AAAA,YACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,YAC1C,yBAAyB;AAAA,YAC3B,kBAAkB;AAAA,UACpB;AAAA,QACF;AAEA,cAAM,4BAA4B,KAAK;AAAA,UACrC,QAAQ;AAAA,QACV;AACA,YAAI,CAAC,0BAA0B,OAAO;AACpC,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO,oDAAoD,0BAA0B,eAAe;AAAA,cAClG;AAAA,YACF,CAAC;AAAA,YACD,OAAO;AAAA,YACP;AAAA,YACA,SAAS,CAAC;AAAA,YACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,YAC1C,yBAAyB;AAAA,YAC3B,kBAAkB;AAAA,UACpB;AAAA,QACF;AAAA,MACF;AAGA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,YAAI,CAAC,MAAM,QAAQ,QAAQ,cAAc,GAAG;AAC1C,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO;AAAA,YACP,OAAO;AAAA,YACP;AAAA,YACA,SAAS,CAAC;AAAA,YACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,YAC1C,yBAAyB;AAAA,YAC3B,kBAAkB;AAAA,UACpB;AAAA,QACF;AAEA,cAAM,2BAA2B,KAAK;AAAA,UACpC,QAAQ;AAAA,QACV;AACA,YAAI,CAAC,yBAAyB,OAAO;AACnC,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO,mDAAmD,yBAAyB,eAAe;AAAA,cAChG;AAAA,YACF,CAAC;AAAA,YACD,OAAO;AAAA,YACP;AAAA,YACA,SAAS,CAAC;AAAA,YACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,YAC1C,yBAAyB;AAAA,YAC3B,kBAAkB;AAAA,UACpB;AAAA,QACF;AAAA,MACF;AAGA,YAAM,UAA+B;AAAA,QACnC;AAAA,QACA,aAAa;AAAA,QACb,iBAAiB;AAAA,QACjB,cAAc,QAAQ,cAAc;AAAA,QACpC,qBACE,QAAQ,sBAAsB;AAAA,MAClC;AAGA,UAAI,QAAQ,aAAa,QAAW;AAClC,gBAAQ,YAAY,QAAQ;AAAA,MAC9B;AAGA,UAAI,QAAQ,oBAAoB,QAAW;AACzC,gBAAQ,mBAAmB,QAAQ;AAAA,MACrC;AAEA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,gBAAQ,kBAAkB,QAAQ;AAAA,MACpC;AAEA,UAAI,QAAQ,aAAa,QAAW;AAClC,gBAAQ,WAAW,QAAQ;AAAA,MAC7B;AAEA,UAAI,QAAQ,cAAc,QAAW;AACnC,gBAAQ,aAAa,QAAQ;AAAA,MAC/B;AAEA,UAAI,QAAQ,YAAY,QAAW;AACjC,gBAAQ,WAAW,QAAQ;AAAA,MAC7B;AAEA,UAAI,QAAQ,gBAAgB,QAAW;AACrC,gBAAQ,eAAe,QAAQ;AAAA,MACjC;AAEA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,gBAAQ,kBAAkB,QAAQ;AAAA,MACpC;AAEA,UAAI,QAAQ,aAAa,QAAW;AAClC,gBAAQ,YAAY,QAAQ;AAAA,MAC9B;AAEA,UAAI,QAAQ,YAAY,QAAW;AACjC,gBAAQ,WAAW,QAAQ;AAAA,MAC7B;AAEA,YAAM,WAAW,MAAM,MAAM,KAAK,GAAG,KAAK,OAAO,eAAe,SAAS;AAAA,QACvE,SAAS,KAAK;AAAA,MAChB,CAAC;AAED,UAAI,CAAC,SAAS,UAAU,SAAS,SAAS,OAAO,SAAS,UAAU,KAAK;AACvE,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO,SAAS,MAAM;AAAA,UACtB,OAAO;AAAA,UACP;AAAA,UACA,SAAS,CAAC;AAAA,UACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,UAC5C,yBAAyB;AAAA,UACzB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,aAAO,SAAS;AAAA,IAClB,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,QACpC,OAAO;AAAA,QACP;AAAA,QACA,SAAS,CAAC;AAAA,QACV,mBAAmB,EAAE,KAAK,GAAG,aAAa,EAAE;AAAA,QAC5C,yBAAyB;AAAA,QACzB,kBAAkB;AAAA,MACpB;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAeA,MAAM,SACJ,MACA,UAA2B,CAAC,GAC0B;AACtD,QAAI;AAEF,UAAI,CAAC,QAAQ,CAAC,MAAM,QAAQ,IAAI,GAAG;AACjC,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,gBAAgB;AAAA,UAChB,gBAAgB;AAAA,UAChB,aAAa;AAAA,UACb,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,UAAI,KAAK,WAAW,GAAG;AACrB,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,gBAAgB;AAAA,UAChB,gBAAgB;AAAA,UAChB,aAAa;AAAA,UACb,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,YAAM,UAAU,QAAQ,UAAU,QAAQ,KAAK,SAAS;AAExD,UAAI,KAAK,SAAS,MAAM,CAAC,QAAQ,OAAO;AACtC,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OACE;AAAA,UACF,gBAAgB,KAAK;AAAA,UACrB,gBAAgB;AAAA,UAChB,aAAa,KAAK;AAAA,UAClB,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAEA,UAAI,KAAK,SAAS,IAAI;AACpB,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,gBAAgB,KAAK;AAAA,UACrB,gBAAgB;AAAA,UAChB,aAAa,KAAK;AAAA,UAClB,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UACE,QAAQ,iBACR,CAAC,CAAC,UAAU,QAAQ,MAAM,EAAE,SAAS,QAAQ,aAAa,GAC1D;AACA,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,UACP,gBAAgB,KAAK;AAAA,UACrB,gBAAgB;AAAA,UAChB,aAAa,KAAK;AAAA,UAClB,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,cAAM,eAAe,CAAC,SAAS,UAAU,SAAS,KAAK;AACvD,YACE,OAAO,QAAQ,mBAAmB,YAClC,CAAC,aAAa,SAAS,QAAQ,cAAc,GAC7C;AACA,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OACE;AAAA,YACF,gBAAgB,KAAK;AAAA,YACrB,gBAAgB;AAAA,YAChB,aAAa,KAAK;AAAA,YAClB,SAAS,CAAC;AAAA,YACV,oBAAoB;AAAA,YACpB,kBAAkB;AAAA,UACpB;AAAA,QACF;AACA,YACE,OAAO,QAAQ,mBAAmB,YAClC,QAAQ,kBAAkB,GAC1B;AACA,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO;AAAA,YACP,gBAAgB,KAAK;AAAA,YACrB,gBAAgB;AAAA,YAChB,aAAa,KAAK;AAAA,YAClB,SAAS,CAAC;AAAA,YACV,oBAAoB;AAAA,YACpB,kBAAkB;AAAA,UACpB;AAAA,QACF;AAAA,MACF;AAGA,YAAM,UAA+B;AAAA,QACnC;AAAA,MACF;AAGA,UAAI,QAAQ,YAAY,QAAW;AACjC,gBAAQ,UAAU,QAAQ;AAAA,MAC5B;AAEA,UAAI,QAAQ,kBAAkB,QAAW;AACvC,gBAAQ,iBAAiB,QAAQ;AAAA,MACnC;AAEA,UAAI,QAAQ,mBAAmB,QAAW;AACxC,gBAAQ,kBAAkB,QAAQ;AAAA,MACpC;AAEA,UAAI,QAAQ,oBAAoB,QAAW;AACzC,gBAAQ,oBAAoB,QAAQ;AAAA,MACtC;AAEA,UAAI,QAAQ,eAAe,QAAW;AACpC,gBAAQ,aAAa,QAAQ;AAAA,MAC/B;AAEA,UAAI,SAAS;AACX,gBAAQ,QAAQ;AAAA,MAClB;AACA,UAAI,QAAQ,eAAe,QAAW;AACpC,gBAAQ,cAAc,QAAQ;AAAA,MAChC;AAEA,YAAM,WAAW,MAAM,MAAM,KAAK,GAAG,KAAK,OAAO,aAAa,SAAS;AAAA,QACrE,SAAS,KAAK;AAAA,MAChB,CAAC;AAED,UAAI,CAAC,SAAS,UAAU,SAAS,SAAS,OAAO,SAAS,UAAU,KAAK;AACvE,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO,SAAS,MAAM,SAAS;AAAA,UAC/B,gBAAgB,KAAK;AAAA,UACrB,gBAAgB;AAAA,UAChB,aAAa,KAAK;AAAA,UAClB,SAAS,CAAC;AAAA,UACV,oBAAoB;AAAA,UACpB,kBAAkB;AAAA,QACpB;AAAA,MACF;AAGA,UAAI,SAAS,WAAW,KAAK;AAC3B,eAAO,kCAAkC,SAAS,IAAI;AAAA,MACxD;AAEA,aAAO,SAAS;AAAA,IAClB,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,QACpC,gBAAgB,KAAK;AAAA,QACrB,gBAAgB;AAAA,QAChB,aAAa,KAAK;AAAA,QAClB,SAAS,CAAC;AAAA,QACV,oBAAoB;AAAA,QACpB,kBAAkB;AAAA,MACpB;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOA,MAAM,eAAe,OAA6C;AAChE,QAAI;AACF,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,kBAAkB,KAAK;AAAA,QACtC,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AACA,aAAO,6BAA6B,SAAS,IAAI;AAAA,IACnD,SAAS,GAAQ;AACf,YAAM,UAAU,EAAE,UAAU;AAC5B,YAAM,SAAS,EAAE,UAAU;AAC3B,aAAO;AAAA,QACL,SAAS;AAAA,QACT;AAAA,QACA,QAAQ;AAAA,QACR,WAAW;AAAA,QACX,eAAe;AAAA,QACf,YAAY;AAAA,QACZ,WAAW;AAAA,QACX,WAAW;AAAA,QACX,OACE,SAAS,UACR,WAAW,MACR,mDACA,WAAW,MACT,OAAO,KAAK,eACZ,EAAE;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,MAAM,WACJ,OACA,UAAkC,CAAC,GACL;AAC9B,UAAM,eAAe,QAAQ,gBAAgB;AAC7C,UAAM,cAAc,QAAQ,eAAe;AAC3C,UAAM,YAAY,KAAK,IAAI;AAE3B,WAAO,MAAM;AACX,YAAM,SAAS,MAAM,KAAK,eAAe,KAAK;AAE9C,UAAI,CAAC,OAAO,WAAW,OAAO,OAAO;AACnC,cAAM,IAAI,MAAM,OAAO,KAAK;AAAA,MAC9B;AAEA,UAAI,QAAQ,YAAY;AACtB,gBAAQ,WAAW,MAAM;AAAA,MAC3B;AAEA,UACE,OAAO,WAAW,eAClB,OAAO,WAAW,aAClB,OAAO,WAAW,UAClB;AACA,eAAO;AAAA,MACT;AAEA,UAAI,KAAK,IAAI,IAAI,YAAY,aAAa;AACxC,cAAM,IAAI,MAAM,4BAA4B;AAAA,MAC9C;AAEA,YAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,YAAY,CAAC;AAAA,IAClE;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYA,MAAc,oBACZ,SACqC;AACrC,QAAI;AAEF,YAAM,aAAa,QAAQ,SAAS,QAAQ;AAG5C,UAAI,CAAC,YAAY,KAAK,GAAG;AACvB,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAIA,YAAM,OAAO,QAAQ,QAAQ,QAAQ;AACrC,YAAM,UAA+B;AAAA,QACnC,OAAO;AAAA,QACP,MAAM,QAAQ;AAAA;AAAA,QACd,gBAAgB,QAAQ,iBAAiB,CAAC,UAAU;AAAA,QACpD,gBAAgB,QAAQ,kBAAkB;AAAA,MAC5C;AAGA,UAAI,QAAQ,SAAU,SAAQ,WAAW,QAAQ;AACjD,UAAI,QAAQ,QAAQ;AAClB,gBAAQ,SAAS,CAAC;AAClB,YAAI,QAAQ,OAAO,YAAY;AAC7B,kBAAQ,OAAO,cAAc,QAAQ,OAAO;AAAA,QAC9C;AACA,YAAI,QAAQ,OAAO,iBAAiB;AAClC,kBAAQ,OAAO,mBAAmB,QAAQ,OAAO;AAAA,QACnD;AACA,YAAI,QAAQ,OAAO,iBAAiB;AAClC,kBAAQ,OAAO,mBAAmB,QAAQ,OAAO;AAAA,QACnD;AACA,YAAI,QAAQ,OAAO,WAAW;AAC5B,kBAAQ,OAAO,aAAa,QAAQ,OAAO;AAAA,QAC7C;AACA,YAAI,QAAQ,OAAO,SAAS;AAC1B,kBAAQ,OAAO,WAAW,QAAQ,OAAO;AAAA,QAC3C;AACA,YAAI,QAAQ,OAAO,UAAU;AAC3B,kBAAQ,OAAO,WAAW,QAAQ,OAAO;AAAA,QAC3C;AAAA,MACF;AACA,UAAI,QAAQ,KAAM,SAAQ,OAAO,QAAQ;AACzC,UAAI,QAAQ,MAAO,SAAQ,QAAQ,QAAQ;AAC3C,UAAI,QAAQ,aAAc,SAAQ,eAAe,QAAQ;AACzD,UAAI,QAAQ,WAAY,SAAQ,cAAc,QAAQ;AACtD,UAAI,QAAQ,iBAAiB;AAC3B,gBAAQ,mBAAmB,QAAQ;AAAA,MACrC;AACA,UAAI,QAAQ,WAAY,SAAQ,cAAc,QAAQ;AACtD,UAAI,QAAQ;AACV,gBAAQ,sBAAsB,QAAQ;AACxC,UAAI,QAAQ,YAAY;AACtB,YAAI,OAAO,QAAQ,eAAe,UAAU;AAC1C,kBAAQ,cAAc,QAAQ;AAAA,QAChC,OAAO;AACL,kBAAQ,cAAc;AAAA,YACpB,OAAO,QAAQ,WAAW;AAAA,YAC1B,YAAY,QAAQ,WAAW;AAAA,UACjC;AAAA,QACF;AAAA,MACF;AACA,UAAI,QAAQ,SAAU,SAAQ,WAAW,QAAQ;AAEjD,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO;AAAA,QACf;AAAA,QACA,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACqC;AACrC,QAAI;AACF,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,kBACZ,QACA,UAAuB,CAAC,GACa;AACrC,UAAM,eAAe,QAAQ,gBAAgB;AAC7C,UAAM,cAAc,QAAQ,eAAe;AAC3C,UAAM,YAAY,KAAK,IAAI;AAE3B,WAAO,MAAM;AACX,YAAM,SAAS,MAAM,KAAK,oBAAoB,MAAM;AAEpD,UAAI,CAAC,OAAO,SAAS;AACnB,cAAM,IAAI,MAAM,OAAO,KAAK;AAAA,MAC9B;AAGA,UAAI,QAAQ,YAAY;AACtB,gBAAQ,WAAW,MAAM;AAAA,MAC3B;AAGA,UACE,OAAO,WAAW,eAClB,OAAO,WAAW,YAClB,OAAO,WAAW,aAClB;AACA,eAAO;AAAA,MACT;AAGA,UAAI,KAAK,IAAI,IAAI,YAAY,aAAa;AACxC,cAAM,IAAI,MAAM,4BAA4B;AAAA,MAC9C;AAGA,YAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,YAAY,CAAC;AAAA,IAClE;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACA,UACe;AACf,QAAI,aAAa;AACjB,QAAI,mBAAmB;AAEvB,WAAO,CAAC,YAAY;AAClB,UAAI;AACF,cAAM,SAAS,MAAM,KAAK,oBAAoB,MAAM;AAEpD,YAAI,CAAC,OAAO,SAAS;AACnB,cAAI,SAAS,SAAS;AACpB,qBAAS,QAAQ,IAAI,MAAM,OAAO,KAAK,CAAC;AAAA,UAC1C;AACA;AAAA,QACF;AAGA,YAAI,OAAO,YAAY,SAAS,YAAY;AAC1C,mBAAS;AAAA,YACP,OAAO,SAAS;AAAA,YAChB,OAAO,SAAS;AAAA,UAClB;AAAA,QACF;AAGA,YAAI,OAAO,YAAY,SAAS,WAAW;AACzC,gBAAM,cAAc,OAAO,SAAS,MAAM,gBAAgB;AAC1D,sBAAY,QAAQ,CAAC,QAAQ,SAAS,UAAW,GAAG,CAAC;AACrD,6BAAmB,OAAO,SAAS;AAAA,QACrC;AAGA,YAAI,OAAO,WAAW,aAAa;AACjC,cAAI,SAAS,YAAY;AACvB,qBAAS,WAAW,MAAM;AAAA,UAC5B;AACA,uBAAa;AAAA,QACf,WACE,OAAO,WAAW,YAClB,OAAO,WAAW,aAClB;AACA,cAAI,SAAS,SAAS;AACpB,qBAAS;AAAA,cACP,IAAI,MAAM,OAAO,SAAS,QAAQ,OAAO,MAAM,EAAE;AAAA,YACnD;AAAA,UACF;AACA,uBAAa;AAAA,QACf;AAEA,YAAI,CAAC,YAAY;AACf,gBAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,GAAI,CAAC;AAAA,QAC1D;AAAA,MACF,SAAS,OAAY;AACnB,YAAI,SAAS,SAAS;AACpB,mBAAS,QAAQ,KAAK;AAAA,QACxB;AACA,cAAM;AAAA,MACR;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,kBACZ,SACmC;AACnC,QAAI;AACF,YAAM,QAAQ,SAAS,SAAS;AAChC,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,4BAA4B,KAAK;AAAA,QAChD,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,MAAM,SAAS,KAAK;AAAA,IAC9C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACA,aACqC;AACrC,QAAI;AACF,UAAI,CAAC,aAAa,KAAK,GAAG;AACxB,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAEA,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,EAAE,YAAY;AAAA,QACd,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACqC;AACrC,QAAI;AACF,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,CAAC;AAAA,QACD,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,oBACZ,QACqC;AACrC,QAAI;AACF,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,0BACZ,QACA,UAC2C;AAC3C,QAAI;AACF,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,uBAAuB,MAAM;AAAA,QAC5C,EAAE,QAAQ,SAAS;AAAA,QACnB,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,uBACZ,QACA,SACA,UAAwC,CAAC,GACD;AACxC,QAAI;AAEF,YAAM,SAAS,IAAI,gBAAgB;AACnC,UAAI,QAAQ,OAAO;AACjB,eAAO,OAAO,SAAS,QAAQ,KAAK;AAAA,MACtC;AAGA,YAAM,UAAkC,CAAC;AACzC,UAAI,CAAC,QAAQ,OAAO;AAClB,gBAAQ,WAAW,IAAI,KAAK,QAAQ,WAAW;AAAA,MACjD;AAEA,YAAM,MAAM,GACV,KAAK,OACP,uBAAuB,MAAM,WAAW,OAAO,GAC7C,OAAO,SAAS,IAAI,IAAI,OAAO,SAAS,CAAC,KAAK,EAChD;AAEA,YAAM,WAAW,MAAM,MAAM,IAAI,KAAK;AAAA,QACpC;AAAA,QACA,cAAc;AAAA;AAAA,MAChB,CAAC;AAED,aAAO;AAAA,QACL,SAAS;AAAA,QACT,MAAM,OAAO,KAAK,SAAS,IAAI;AAAA,QAC/B,aACE,SAAS,QAAQ,cAAc,KAAK;AAAA,MACxC;AAAA,IACF,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmBA,MAAc,aACZ,UAA8B,CAAC,GACD;AAC9B,QAAI;AACF,YAAM,UAA+B,CAAC;AAEtC,UAAI,QAAQ,KAAM,SAAQ,OAAO,QAAQ;AAEzC,YAAM,OAAO,QAAQ,QAAQ,QAAQ;AACrC,UAAI,KAAM,SAAQ,OAAO;AACzB,UAAI,QAAQ,cAAe,SAAQ,iBAAiB,QAAQ;AAC5D,UAAI,QAAQ,QAAQ;AAClB,gBAAQ,SAAS,CAAC;AAClB,YAAI,QAAQ,OAAO,YAAY;AAC7B,kBAAQ,OAAO,cAAc,QAAQ,OAAO;AAAA,QAC9C;AACA,YAAI,QAAQ,OAAO,iBAAiB;AAClC,kBAAQ,OAAO,mBAAmB,QAAQ,OAAO;AAAA,QACnD;AACA,YAAI,QAAQ,OAAO,iBAAiB;AAClC,kBAAQ,OAAO,mBAAmB,QAAQ,OAAO;AAAA,QACnD;AACA,YAAI,QAAQ,OAAO,WAAW;AAC5B,kBAAQ,OAAO,aAAa,QAAQ,OAAO;AAAA,QAC7C;AACA,YAAI,QAAQ,OAAO,SAAS;AAC1B,kBAAQ,OAAO,WAAW,QAAQ,OAAO;AAAA,QAC3C;AACA,YAAI,QAAQ,OAAO,UAAU;AAC3B,kBAAQ,OAAO,WAAW,QAAQ,OAAO;AAAA,QAC3C;AAAA,MACF;AACA,UAAI,QAAQ,WAAY,SAAQ,cAAc,QAAQ;AACtD,UAAI,QAAQ,SAAU,SAAQ,WAAW,QAAQ;AAEjD,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO;AAAA,QACf;AAAA,QACA,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOA,MAAc,aAAa,SAA+C;AACxE,QAAI;AACF,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,yBAAyB,OAAO;AAAA,QAC/C,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,OAAO,SAAS,KAAK;AAAA,IAC/C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EASA,MAAc,eACZ,SACA,SACgC;AAChC,QAAI;AACF,UAAI,CAAC,QAAQ,SAAS,CAAC,MAAM,QAAQ,QAAQ,KAAK,GAAG;AACnD,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAEA,UAAI,QAAQ,MAAM,WAAW,GAAG;AAC9B,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAEA,UAAI,QAAQ,MAAM,SAAS,KAAK;AAC9B,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAGA,iBAAW,QAAQ,QAAQ,OAAO;AAChC,YAAI,CAAC,KAAK,SAAS,CAAC,KAAK,OAAO;AAC9B,iBAAO;AAAA,YACL,SAAS;AAAA,YACT,OAAO;AAAA,UACT;AAAA,QACF;AAAA,MACF;AAKA,YAAM,eAAe,QAAQ,MAAM,IAAI,CAAC,SAAS;AAC/C,cAAM,cAAmC,CAAC;AAG1C,cAAM,aAAa,KAAK,SAAS,KAAK;AACtC,YAAI,YAAY;AACd,sBAAY,QAAQ;AAAA,QACtB;AAEA,YAAI,KAAK,GAAI,aAAY,KAAK,KAAK;AACnC,YAAI,KAAK,SAAU,aAAY,WAAW,KAAK;AAC/C,YAAI,KAAK,KAAM,aAAY,OAAO,KAAK;AACvC,YAAI,KAAK,SAAU,aAAY,WAAW,KAAK;AAE/C,eAAO;AAAA,MACT,CAAC;AAED,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,yBAAyB,OAAO;AAAA,QAC/C,EAAE,OAAO,aAAa;AAAA,QACtB,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAWA,MAAc,gBACZ,SACA,UAAiC,CAAC,GACD;AACjC,QAAI;AAEF,YAAM,SAAS,IAAI,gBAAgB;AACnC,UAAI,QAAQ,QAAQ;AAClB,eAAO,OAAO,UAAU,QAAQ,MAAM;AAAA,MACxC;AACA,UAAI,QAAQ,UAAU,QAAW;AAC/B,eAAO,OAAO,SAAS,QAAQ,MAAM,SAAS,CAAC;AAAA,MACjD;AACA,UAAI,QAAQ,SAAS;AACnB,eAAO,OAAO,YAAY,QAAQ,OAAO;AAAA,MAC3C;AACA,UAAI,QAAQ,kBAAkB,QAAW;AACvC,eAAO,OAAO,kBAAkB,QAAQ,cAAc,SAAS,CAAC;AAAA,MAClE;AAEA,YAAM,MAAM,GAAG,KAAK,OAAO,yBAAyB,OAAO,SACzD,OAAO,SAAS,IAAI,IAAI,OAAO,SAAS,CAAC,KAAK,EAChD;AACA,YAAM,WAAW,MAAM,MAAM,IAAI,KAAK,EAAE,SAAS,KAAK,QAAQ,CAAC;AAE/D,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOA,MAAc,aAAa,SAA+C;AACxE,QAAI;AACF,YAAM,WAAW,MAAM,MAAM;AAAA,QAC3B,GAAG,KAAK,OAAO,yBAAyB,OAAO;AAAA,QAC/C,CAAC;AAAA,QACD,EAAE,SAAS,KAAK,QAAQ;AAAA,MAC1B;AAEA,aAAO,EAAE,SAAS,MAAM,GAAG,SAAS,KAAK;AAAA,IAC3C,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,MAAc,WACZ,UAA8B,CAAC,GACD;AAC9B,QAAI;AAEF,YAAM,SAAS,IAAI,gBAAgB;AACnC,UAAI,QAAQ,UAAU,QAAW;AAC/B,eAAO,OAAO,SAAS,QAAQ,MAAM,SAAS,CAAC;AAAA,MACjD;AAEA,YAAM,MAAM,GAAG,KAAK,OAAO,wBACzB,OAAO,SAAS,IAAI,IAAI,OAAO,SAAS,CAAC,KAAK,EAChD;AACA,YAAM,WAAW,MAAM,MAAM,IAAI,KAAK;AAAA,QACpC,SAAS,KAAK;AAAA,MAChB,CAAC;AAED,aAAO,EAAE,SAAS,MAAM,SAAS,SAAS,KAAK;AAAA,IACjD,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAWA,MAAc,wBACZ,SACA,UAA4B,CAAC,GACD;AAC5B,UAAM,eAAe,QAAQ,gBAAgB;AAC7C,UAAM,cAAc,QAAQ,eAAe;AAC3C,UAAM,YAAY,KAAK,IAAI;AAE3B,WAAO,MAAM;AACX,YAAM,iBAAiB,MAAM,KAAK,aAAa,OAAO;AAEtD,UAAI,CAAC,eAAe,WAAW,CAAC,eAAe,OAAO;AACpD,cAAM,IAAI,MAAM,eAAe,SAAS,4BAA4B;AAAA,MACtE;AAEA,YAAM,QAAQ,eAAe;AAG7B,UAAI,QAAQ,YAAY;AACtB,gBAAQ,WAAW,KAAK;AAAA,MAC1B;AAGA,UACE,MAAM,WAAW,eACjB,MAAM,WAAW,2BACjB,MAAM,WAAW,aACjB;AACA,eAAO;AAAA,MACT;AAGA,UAAI,KAAK,IAAI,IAAI,YAAY,aAAa;AACxC,cAAM,IAAI,MAAM,4BAA4B;AAAA,MAC9C;AAGA,YAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,YAAY,CAAC;AAAA,IAClE;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmBA,MAAM,OACJ,OACA,UAAyB,CAAC,GAG1B;AAEA,UAAM,kBAAkB,KAAK,qBAAqB,OAAO,OAAO;AAChE,QAAI,iBAAiB;AACnB,UAAI,QAAQ,WAAW;AACrB,eAAO,KAAK,qBAAqB,eAAe;AAAA,MAClD;AACA,aAAO,EAAE,SAAS,OAAO,OAAO,gBAAgB;AAAA,IAClD;AAEA,UAAM,UAAU,KAAK,mBAAmB,OAAO,OAAO;AAEtD,QAAI,QAAQ,WAAW;AACrB,aAAO,KAAK,aAAa,OAAO;AAAA,IAClC,OAAO;AACL,aAAO,KAAK,YAAY,OAAO;AAAA,IACjC;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKQ,qBACN,OACA,SACe;AAEf,QAAI,CAAC,SAAS,OAAO,UAAU,YAAY,MAAM,KAAK,EAAE,WAAW,GAAG;AACpE,aAAO;AAAA,IACT;AAGA,UAAM,2BAA2B,QAAQ,YAAY,YAAY;AACjE,QACE,6BAA6B,UAC7B,6BAA6B,SAC7B,6BAA6B,iBAC7B,6BAA6B,SAC7B,6BAA6B,QAC7B;AACA,aAAO;AAAA,IACT;AAGA,QAAI,QAAQ,uBAAuB,QAAW;AAC5C,UAAI,OAAO,QAAQ,uBAAuB,UAAU;AAClD,eAAO;AAAA,MACT;AACA,YAAM,UAAU,QAAQ,mBAAmB,KAAK;AAChD,UAAI,QAAQ,WAAW,GAAG;AACxB,eAAO;AAAA,MACT;AACA,UAAI,QAAQ,SAAS,KAAM;AACzB,eAAO;AAAA,MACT;AAAA,IACF;AAGA,QAAI,QAAQ,iBAAiB,QAAW;AACtC,UACE,OAAO,QAAQ,iBAAiB,YAChC,QAAQ,gBAAgB,GACxB;AACA,eAAO;AAAA,MACT;AAAA,IACF;AAGA,QAAI,QAAQ,aAAa,CAAC,KAAK,mBAAmB,QAAQ,SAAS,GAAG;AACpE,aAAO;AAAA,IACT;AACA,QAAI,QAAQ,WAAW,CAAC,KAAK,mBAAmB,QAAQ,OAAO,GAAG;AAChE,aAAO;AAAA,IACT;AACA,QAAI,QAAQ,aAAa,QAAQ,SAAS;AACxC,YAAM,YAAY,IAAI,KAAK,QAAQ,SAAS;AAC5C,YAAM,UAAU,IAAI,KAAK,QAAQ,OAAO;AACxC,UAAI,YAAY,SAAS;AACvB,eAAO;AAAA,MACT;AAAA,IACF;AAGA,QAAI,QAAQ,oBAAoB,QAAW;AACzC,UAAI,CAAC,MAAM,QAAQ,QAAQ,eAAe,GAAG;AAC3C,eAAO;AAAA,MACT;AACA,YAAM,aAAa,KAAK,gBAAgB,QAAQ,eAAe;AAC/D,UAAI,CAAC,WAAW,OAAO;AACrB,eAAO,oDAAoD,WAAW,eAAe;AAAA,UACnF;AAAA,QACF,CAAC;AAAA,MACH;AAAA,IACF;AACA,QAAI,QAAQ,oBAAoB,QAAW;AACzC,UAAI,CAAC,MAAM,QAAQ,QAAQ,eAAe,GAAG;AAC3C,eAAO;AAAA,MACT;AACA,YAAM,aAAa,KAAK,gBAAgB,QAAQ,eAAe;AAC/D,UAAI,CAAC,WAAW,OAAO;AACrB,eAAO,oDAAoD,WAAW,eAAe;AAAA,UACnF;AAAA,QACF,CAAC;AAAA,MACH;AAAA,IACF;AAEA,WAAO;AAAA,EACT;AAAA;AAAA;AAAA;AAAA,EAKQ,mBACN,OACA,SACqB;AACrB,UAAM,oBAAgC;AACtC,UAAM,2BAA2B,QAAQ,YAAY,YAAY;AACjE,QAAI,kBAA8B;AAElC,QACE,6BAA6B,SAC7B,6BAA6B,iBAC7B,6BAA6B,SAC7B,6BAA6B,QAC7B;AACA,wBAAkB;AAAA,IACpB;AAEA,UAAM,UAA+B;AAAA,MACnC,OAAO,MAAM,KAAK;AAAA,MAClB,aAAa;AAAA,IACf;AAEA,QAAI,QAAQ,iBAAiB;AAC3B,cAAQ,iBAAiB,QAAQ;AACnC,QAAI,QAAQ,qBAAqB;AAC/B,cAAQ,oBAAoB,QAAQ;AACtC,QAAI,QAAQ,uBAAuB;AACjC,cAAQ,sBAAsB,QAAQ,mBAAmB,KAAK;AAChE,QAAI,QAAQ,gBAAgB;AAC1B,cAAQ,eAAe,QAAQ;AACjC,QAAI,QAAQ,oBAAoB;AAC9B,cAAQ,mBAAmB,QAAQ;AACrC,QAAI,QAAQ,oBAAoB;AAC9B,cAAQ,mBAAmB,QAAQ;AACrC,QAAI,QAAQ,cAAc,OAAW,SAAQ,aAAa,QAAQ;AAClE,QAAI,QAAQ,YAAY,OAAW,SAAQ,WAAW,QAAQ;AAC9D,QAAI,QAAQ,aAAa,OAAW,SAAQ,YAAY,QAAQ;AAEhE,WAAO;AAAA,EACT;AAAA;AAAA;AAAA;AAAA,EAKA,MAAc,YACZ,SACyB;AACzB,QAAI;AACF,YAAM,WAAW,MAAM,MAAM,GAAG,KAAK,OAAO,WAAW;AAAA,QACrD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,GAAG,KAAK;AAAA,UACR,QAAQ;AAAA,QACV;AAAA,QACA,MAAM,KAAK,UAAU,OAAO;AAAA,MAC9B,CAAC;AAED,UAAI,CAAC,SAAS,IAAI;AAChB,cAAM,YAAY,MAAM,SAAS,KAAK,EAAE,MAAM,OAAO,CAAC,EAAE;AACxD,eAAO;AAAA,UACL,SAAS;AAAA,UACT,OAAO,UAAU,SAAS,eAAe,SAAS,MAAM;AAAA,QAC1D;AAAA,MACF;AAGA,UAAI,cAAc;AAClB,UAAI,gBAAgC,CAAC;AACrC,UAAI,gBAAqB,CAAC;AAE1B,YAAM,SAAS,SAAS,MAAM,UAAU;AACxC,YAAM,UAAU,IAAI,YAAY;AAChC,UAAI,SAAS;AAEb,UAAI,QAAQ;AACV,eAAO,MAAM;AACX,gBAAM,EAAE,MAAM,MAAM,IAAI,MAAM,OAAO,KAAK;AAC1C,cAAI,KAAM;AAEV,oBAAU,QAAQ,OAAO,OAAO,EAAE,QAAQ,KAAK,CAAC;AAChD,gBAAM,QAAQ,OAAO,MAAM,IAAI;AAC/B,mBAAS,MAAM,IAAI,KAAK;AAExB,qBAAW,QAAQ,OAAO;AACxB,gBAAI,CAAC,KAAK,WAAW,QAAQ,EAAG;AAChC,kBAAM,UAAU,KAAK,MAAM,CAAC;AAE5B,gBAAI,YAAY,SAAU;AAE1B,gBAAI;AACF,oBAAM,SAAS,KAAK,MAAM,OAAO;AAGjC,kBAAI,OAAO,kBAAkB,CAAC,OAAO,SAAS;AAC5C,gCAAgB,CAAC,GAAG,eAAe,GAAG,OAAO,cAAc;AAAA,cAC7D,WAES,OAAO,SAAS;AACvB,sBAAM,UAAU,OAAO,QAAQ,CAAC,GAAG,OAAO,WAAW;AACrD,oBAAI,QAAS,gBAAe;AAAA,cAC9B,WAES,OAAO,YAAY,QAAW;AACrC,gCAAgB;AAAA,cAClB;AAAA,YACF,QAAQ;AACN;AAAA,YACF;AAAA,UACF;AAAA,QACF;AAAA,MACF;AAGA,UAAI,cAAc,SAAS;AACzB,cAAM,qBACJ,cAAc,kBAAkB;AAClC,cAAMA,YAAkC;AAAA,UACtC,SAAS;AAAA,UACT,OAAO,cAAc,SAAS;AAAA,UAC9B,gBAAgB,cAAc,kBAAkB,QAAQ;AAAA,UACxD,UAAU,cAAc,YAAY,eAAe;AAAA,UACnD,gBAAgB;AAAA,UAChB,iBAAiB,cAAc,mBAAmB;AAAA,YAChD,QAAQ,CAAC;AAAA,YACT,mBAAmB;AAAA,YACnB,kBAAkB;AAAA,UACpB;AAAA,UACA,UAAU,cAAc,YAAY;AAAA,YAClC,cAAc;AAAA,YACd,eAAe;AAAA,UACjB;AAAA,UACA,MAAM,cAAc,QAAQ;AAAA,YAC1B,yBAAyB;AAAA,YACzB,0BAA0B;AAAA,YAC1B,sBAAsB;AAAA,UACxB;AAAA,QACF;AACA,YAAI,cAAc,qBAAqB;AACrC,UAAAA,UAAS,sBAAsB,cAAc;AAAA,QAC/C;AACA,eAAOA;AAAA,MACT;AAEA,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,cAAc,SAAS;AAAA,MAChC;AAAA,IACF,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,WAAW;AAAA,MACtB;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,OAAe,aACb,SACkD;AAClD,QAAI;AACF,YAAM,WAAW,MAAM,MAAM,GAAG,KAAK,OAAO,WAAW;AAAA,QACrD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,GAAG,KAAK;AAAA,UACR,QAAQ;AAAA,QACV;AAAA,QACA,MAAM,KAAK,UAAU,OAAO;AAAA,MAC9B,CAAC;AAED,UAAI,CAAC,SAAS,IAAI;AAChB,cAAM,YAAY,MAAM,SAAS,KAAK,EAAE,MAAM,OAAO,CAAC,EAAE;AACxD,cAAM;AAAA,UACJ,MAAM;AAAA,UACN,OAAO,UAAU,SAAS,eAAe,SAAS,MAAM;AAAA,QAC1D;AACA;AAAA,MACF;AAEA,YAAM,SAAS,SAAS,MAAM,UAAU;AACxC,YAAM,UAAU,IAAI,YAAY;AAChC,UAAI,SAAS;AAEb,UAAI,CAAC,QAAQ;AACX,cAAM,EAAE,MAAM,SAAS,OAAO,mBAAmB;AACjD;AAAA,MACF;AAEA,aAAO,MAAM;AACX,cAAM,EAAE,MAAM,MAAM,IAAI,MAAM,OAAO,KAAK;AAC1C,YAAI,KAAM;AAEV,kBAAU,QAAQ,OAAO,OAAO,EAAE,QAAQ,KAAK,CAAC;AAChD,cAAM,QAAQ,OAAO,MAAM,IAAI;AAC/B,iBAAS,MAAM,IAAI,KAAK;AAExB,mBAAW,QAAQ,OAAO;AACxB,cAAI,CAAC,KAAK,WAAW,QAAQ,EAAG;AAChC,gBAAM,UAAU,KAAK,MAAM,CAAC;AAE5B,cAAI,YAAY,UAAU;AACxB,kBAAM,EAAE,MAAM,OAAO;AACrB;AAAA,UACF;AAEA,cAAI;AACF,kBAAM,SAAS,KAAK,MAAM,OAAO;AAGjC,gBAAI,OAAO,kBAAkB,OAAO,YAAY,QAAW;AACzD,oBAAM;AAAA,gBACJ,MAAM;AAAA,gBACN,gBAAgB,OAAO;AAAA,cACzB;AAAA,YACF,WAES,OAAO,SAAS;AACvB,oBAAM,QAAQ,OAAO,QAAQ,CAAC,GAAG,SAAS,CAAC;AAC3C,oBAAM,UAAU,MAAM,WAAW;AACjC,oBAAM,eAAe,OAAO,QAAQ,CAAC,GAAG;AAExC,kBAAI,WAAW,cAAc;AAC3B,sBAAM,EAAE,MAAM,WAAW,SAAS,eAAe,aAAa;AAAA,cAChE;AAAA,YACF,WAES,OAAO,YAAY,QAAW;AACrC,oBAAM;AAAA,gBACJ,MAAM;AAAA,gBACN,OAAO,OAAO;AAAA,gBACd,gBAAgB,OAAO;AAAA,gBACvB,UAAU,OAAO;AAAA,gBACjB,gBAAgB,OAAO;AAAA,gBACvB,iBAAiB,OAAO;AAAA,gBACxB,UAAU,OAAO;AAAA,gBACjB,MAAM,OAAO;AAAA,gBACb,qBAAqB,OAAO;AAAA,cAC9B;AAAA,YACF;AAAA,UACF,QAAQ;AACN;AAAA,UACF;AAAA,QACF;AAAA,MACF;AAAA,IACF,SAAS,GAAQ;AACf,YAAM,EAAE,MAAM,SAAS,OAAO,EAAE,WAAW,gBAAgB;AAAA,IAC7D;AAAA,EACF;AAAA;AAAA;AAAA;AAAA,EAKA,OAAe,qBACb,OACkD;AAClD,UAAM,EAAE,MAAM,SAAS,MAAM;AAAA,EAC/B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,MAAc,iBACZ,UAAkC,CAAC,GACD;AAClC,QAAI;AAEF,YAAM,SAAS,IAAI,gBAAgB;AACnC,UAAI,QAAQ,UAAU;AACpB,eAAO,OAAO,YAAY,QAAQ,QAAQ;AAAA,MAC5C;AAEA,YAAM,MAAM,GAAG,KAAK,OAAO,eACzB,OAAO,SAAS,IAAI,IAAI,OAAO,SAAS,CAAC,KAAK,EAChD;AACA,YAAM,WAAW,MAAM,MAAM,IAAI,KAAK,EAAE,SAAS,KAAK,QAAQ,CAAC;AAE/D,aAAO,EAAE,SAAS,MAAM,aAAa,SAAS,KAAK,YAAY;AAAA,IACjE,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,MAAc,yBAAiE;AAC7E,QAAI;AACF,YAAM,WAAW,MAAM,MAAM,IAAI,GAAG,KAAK,OAAO,2BAA2B;AAAA,QACzE,SAAS,KAAK;AAAA,MAChB,CAAC;AAED,aAAO,EAAE,SAAS,MAAM,YAAY,SAAS,KAAK,WAAW;AAAA,IAC/D,SAAS,GAAQ;AACf,aAAO;AAAA,QACL,SAAS;AAAA,QACT,OAAO,EAAE,UAAU,MAAM,SAAS,EAAE;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AACF;","names":["response"]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { createHmac, timingSafeEqual } from \"crypto\";\nimport axios from \"axios\";\nimport {\n SearchResponse,\n SearchType,\n SearchOptions,\n ContentsOptions,\n ContentsResponse,\n ContentsAsyncJobResponse,\n ContentsJobResponse,\n ContentsJobWaitOptions,\n AnswerOptions,\n AnswerResponse,\n AnswerSuccessResponse,\n AnswerStreamChunk,\n SearchResult,\n DeepResearchCreateOptions,\n DeepResearchCreateResponse,\n DeepResearchStatusResponse,\n DeepResearchListResponse,\n DeepResearchUpdateResponse,\n DeepResearchCancelResponse,\n DeepResearchDeleteResponse,\n DeepResearchTogglePublicResponse,\n DeepResearchGetAssetsOptions,\n DeepResearchGetAssetsResponse,\n WaitOptions,\n StreamCallback,\n ListOptions,\n CreateBatchOptions,\n CreateBatchResponse,\n BatchStatusResponse,\n AddBatchTasksOptions,\n AddBatchTasksResponse,\n ListBatchTasksOptions,\n ListBatchTasksResponse,\n CancelBatchResponse,\n ListBatchesOptions,\n ListBatchesResponse,\n BatchWaitOptions,\n DeepResearchBatch,\n DatasourcesListOptions,\n DatasourcesListResponse,\n DatasourcesCategoriesResponse,\n} from \"./types\";\n\n/** Normalize API job response (snake_case) to SDK format (camelCase). Omits poll_url. */\nfunction normalizeContentsJobResponse(api: Record<string, any>): ContentsJobResponse {\n return {\n success: api.success ?? true,\n jobId: api.job_id ?? api.jobId,\n status: api.status ?? \"pending\",\n urlsTotal: api.urls_total ?? api.urlsTotal ?? 0,\n urlsProcessed: api.urls_processed ?? api.urlsProcessed ?? 0,\n urlsFailed: api.urls_failed ?? api.urlsFailed ?? 0,\n createdAt: api.created_at ?? api.createdAt ?? 0,\n updatedAt: api.updated_at ?? api.updatedAt ?? 0,\n currentBatch: api.current_batch ?? api.currentBatch,\n totalBatches: api.total_batches ?? api.totalBatches,\n results: api.results,\n actualCostDollars: api.actual_cost_dollars ?? api.actualCostDollars,\n error: api.error,\n webhookSecret: api.webhook_secret ?? api.webhookSecret,\n };\n}\n\n/** Normalize API async job creation response (202) to SDK format. */\nfunction normalizeContentsAsyncJobResponse(\n api: Record<string, any>\n): ContentsAsyncJobResponse {\n return {\n success: api.success ?? true,\n jobId: api.job_id ?? api.jobId,\n status: \"pending\",\n urlsTotal: api.urls_total ?? api.urlsTotal ?? 0,\n webhookSecret: api.webhook_secret ?? api.webhookSecret,\n txId: api.tx_id ?? api.txId ?? \"\",\n };\n}\n\n/**\n * Verify webhook signature for Contents API async completion notifications.\n * Use the raw request body (not parsed JSON) as payload.\n * @param payload - Raw request body string\n * @param signature - X-Webhook-Signature header value\n * @param timestamp - X-Webhook-Timestamp header value\n * @param secret - webhookSecret from job creation\n */\nexport function verifyContentsWebhookSignature(\n payload: string,\n signature: string,\n timestamp: string,\n secret: string\n): boolean {\n const expected = createHmac(\"sha256\", secret)\n .update(`${timestamp}.${payload}`)\n .digest(\"hex\");\n const expectedSignature = `sha256=${expected}`;\n if (signature.length !== expectedSignature.length) return false;\n return timingSafeEqual(\n Buffer.from(signature, \"utf8\"),\n Buffer.from(expectedSignature, \"utf8\")\n );\n}\n\n// Valyu API client\nexport class Valyu {\n private baseUrl: string;\n private headers: Record<string, string>;\n\n // DeepResearch namespace\n public deepresearch: {\n create: (\n options: DeepResearchCreateOptions\n ) => Promise<DeepResearchCreateResponse>;\n status: (taskId: string) => Promise<DeepResearchStatusResponse>;\n wait: (\n taskId: string,\n options?: WaitOptions\n ) => Promise<DeepResearchStatusResponse>;\n stream: (taskId: string, callback: StreamCallback) => Promise<void>;\n list: (options: ListOptions) => Promise<DeepResearchListResponse>;\n update: (\n taskId: string,\n instruction: string\n ) => Promise<DeepResearchUpdateResponse>;\n cancel: (taskId: string) => Promise<DeepResearchCancelResponse>;\n delete: (taskId: string) => Promise<DeepResearchDeleteResponse>;\n togglePublic: (\n taskId: string,\n isPublic: boolean\n ) => Promise<DeepResearchTogglePublicResponse>;\n getAssets: (\n taskId: string,\n assetId: string,\n options?: DeepResearchGetAssetsOptions\n ) => Promise<DeepResearchGetAssetsResponse>;\n };\n\n // Batch API namespace\n public batch: {\n create: (options?: CreateBatchOptions) => Promise<CreateBatchResponse>;\n status: (batchId: string) => Promise<BatchStatusResponse>;\n addTasks: (\n batchId: string,\n options: AddBatchTasksOptions\n ) => Promise<AddBatchTasksResponse>;\n listTasks: (\n batchId: string,\n options?: ListBatchTasksOptions\n ) => Promise<ListBatchTasksResponse>;\n cancel: (batchId: string) => Promise<CancelBatchResponse>;\n list: (options?: ListBatchesOptions) => Promise<ListBatchesResponse>;\n waitForCompletion: (\n batchId: string,\n options?: BatchWaitOptions\n ) => Promise<DeepResearchBatch>;\n };\n\n // Datasources API namespace\n public datasources: {\n list: (options?: DatasourcesListOptions) => Promise<DatasourcesListResponse>;\n categories: () => Promise<DatasourcesCategoriesResponse>;\n };\n\n constructor(apiKey?: string, baseUrl: string = \"https://api.valyu.ai/v1\") {\n if (!apiKey) {\n apiKey = process.env.VALYU_API_KEY;\n if (!apiKey) {\n throw new Error(\"VALYU_API_KEY is not set\");\n }\n }\n this.baseUrl = baseUrl;\n this.headers = {\n \"Content-Type\": \"application/json\",\n \"x-api-key\": apiKey,\n };\n\n // Initialize DeepResearch namespace\n this.deepresearch = {\n create: this._deepresearchCreate.bind(this),\n status: this._deepresearchStatus.bind(this),\n wait: this._deepresearchWait.bind(this),\n stream: this._deepresearchStream.bind(this),\n list: this._deepresearchList.bind(this),\n update: this._deepresearchUpdate.bind(this),\n cancel: this._deepresearchCancel.bind(this),\n delete: this._deepresearchDelete.bind(this),\n togglePublic: this._deepresearchTogglePublic.bind(this),\n getAssets: this._deepresearchGetAssets.bind(this),\n };\n\n // Initialize Batch namespace\n this.batch = {\n create: this._batchCreate.bind(this),\n status: this._batchStatus.bind(this),\n addTasks: this._batchAddTasks.bind(this),\n listTasks: this._batchListTasks.bind(this),\n cancel: this._batchCancel.bind(this),\n list: this._batchList.bind(this),\n waitForCompletion: this._batchWaitForCompletion.bind(this),\n };\n\n // Initialize Datasources namespace\n this.datasources = {\n list: this._datasourcesList.bind(this),\n categories: this._datasourcesCategories.bind(this),\n };\n }\n\n /**\n * Validates date format (YYYY-MM-DD)\n */\n private validateDateFormat(date: string): boolean {\n const dateRegex = /^\\d{4}-\\d{2}-\\d{2}$/;\n if (!dateRegex.test(date)) {\n return false;\n }\n const parsedDate = new Date(date);\n return parsedDate instanceof Date && !isNaN(parsedDate.getTime());\n }\n\n /**\n * Validates if a string is a valid URL\n */\n private validateUrl(url: string): boolean {\n try {\n new URL(url);\n return true;\n } catch {\n return false;\n }\n }\n\n /**\n * Validates if a string is a valid domain (with optional path)\n */\n private validateDomain(domain: string): boolean {\n // Domain must have at least one dot and valid structure\n // Supports: example.com, example.com/path, subdomain.example.com/path/to/resource\n const domainRegex =\n /^[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(\\/.+)?$/;\n return domainRegex.test(domain);\n }\n\n /**\n * Validates if a string is a valid dataset identifier (provider/datasetname)\n */\n private validateDatasetId(datasetId: string): boolean {\n // Dataset format: provider/datasetname (exactly one slash)\n // Provider and dataset name can contain alphanumeric, hyphens, underscores\n const parts = datasetId.split(\"/\");\n if (parts.length !== 2) return false;\n\n const providerRegex = /^[a-zA-Z0-9_-]+$/;\n const datasetRegex = /^[a-zA-Z0-9_-]+$/;\n\n return (\n providerRegex.test(parts[0]) &&\n datasetRegex.test(parts[1]) &&\n parts[0].length > 0 &&\n parts[1].length > 0\n );\n }\n\n /**\n * Validates source strings (domains, URLs, or dataset IDs)\n */\n private validateSource(source: string): boolean {\n // Check if it's a valid URL\n if (this.validateUrl(source)) {\n return true;\n }\n\n // Check if it's a valid domain (with optional path)\n if (this.validateDomain(source)) {\n return true;\n }\n\n // Check if it's a valid dataset identifier\n if (this.validateDatasetId(source)) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Validates an array of source strings\n */\n private validateSources(sources: string[]): {\n valid: boolean;\n invalidSources: string[];\n } {\n const invalidSources: string[] = [];\n\n for (const source of sources) {\n if (!this.validateSource(source)) {\n invalidSources.push(source);\n }\n }\n\n return {\n valid: invalidSources.length === 0,\n invalidSources,\n };\n }\n\n /**\n * Search for information using the Valyu DeepSearch API\n * @param query - The search query string\n * @param options - Search configuration options\n * @param options.searchType - Type of search: \"web\", \"proprietary\", \"all\", or \"news\"\n * @param options.maxNumResults - Maximum number of results (1-100)\n * @param options.maxPrice - Maximum price per thousand characters (CPM)\n * @param options.isToolCall - Whether this is a tool call\n * @param options.relevanceThreshold - Minimum relevance score (0-1)\n * @param options.includedSources - List of specific sources to include\n * @param options.excludeSources - List of URLs/domains to exclude from search results\n * @param options.category - Category filter for search results\n * @param options.startDate - Start date filter (YYYY-MM-DD format)\n * @param options.endDate - End date filter (YYYY-MM-DD format)\n * @param options.countryCode - Country code filter for search results\n * @param options.responseLength - Response content length: \"short\"/\"medium\"/\"large\"/\"max\" or integer character count\n * @param options.fastMode - Fast mode for quicker but shorter results (default: false)\n * @param options.urlOnly - Returns shortened snippets (default: false)\n * @returns Promise resolving to search results\n */\n async search(\n query: string,\n options: SearchOptions = {}\n ): Promise<SearchResponse> {\n try {\n // Default values\n const defaultSearchType: SearchType = \"all\";\n const defaultMaxNumResults = 10;\n const defaultIsToolCall = true;\n const defaultRelevanceThreshold = 0.5;\n\n // Validate searchType\n let finalSearchType: SearchType = defaultSearchType;\n const providedSearchTypeString = options.searchType?.toLowerCase();\n\n if (\n providedSearchTypeString === \"web\" ||\n providedSearchTypeString === \"proprietary\" ||\n providedSearchTypeString === \"all\" ||\n providedSearchTypeString === \"news\"\n ) {\n finalSearchType = providedSearchTypeString as SearchType;\n } else if (options.searchType !== undefined) {\n return {\n success: false,\n error:\n \"Invalid searchType provided. Must be one of: all, web, proprietary, news\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate date formats\n if (options.startDate && !this.validateDateFormat(options.startDate)) {\n return {\n success: false,\n error: \"Invalid startDate format. Must be YYYY-MM-DD\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n if (options.endDate && !this.validateDateFormat(options.endDate)) {\n return {\n success: false,\n error: \"Invalid endDate format. Must be YYYY-MM-DD\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate maxNumResults range\n const maxNumResults = options.maxNumResults ?? defaultMaxNumResults;\n if (maxNumResults < 1 || maxNumResults > 100) {\n return {\n success: false,\n error: \"maxNumResults must be between 1 and 100\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n // Validate includedSources format\n if (options.includedSources !== undefined) {\n if (!Array.isArray(options.includedSources)) {\n return {\n success: false,\n error: \"includedSources must be an array\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n const includedSourcesValidation = this.validateSources(\n options.includedSources\n );\n if (!includedSourcesValidation.valid) {\n return {\n success: false,\n error: `Invalid includedSources format. Invalid sources: ${includedSourcesValidation.invalidSources.join(\n \", \"\n )}. Sources must be valid URLs, domains (with optional paths), or dataset identifiers in 'provider/dataset' format.`,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n // Validate excludeSources format\n if (options.excludeSources !== undefined) {\n if (!Array.isArray(options.excludeSources)) {\n return {\n success: false,\n error: \"excludeSources must be an array\",\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n const excludeSourcesValidation = this.validateSources(\n options.excludeSources\n );\n if (!excludeSourcesValidation.valid) {\n return {\n success: false,\n error: `Invalid excludeSources format. Invalid sources: ${excludeSourcesValidation.invalidSources.join(\n \", \"\n )}. Sources must be valid URLs, domains (with optional paths), or dataset identifiers in 'provider/dataset' format.`,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n // Build payload with snake_case for API\n const payload: Record<string, any> = {\n query,\n search_type: finalSearchType,\n max_num_results: maxNumResults,\n is_tool_call: options.isToolCall ?? defaultIsToolCall,\n relevance_threshold:\n options.relevanceThreshold ?? defaultRelevanceThreshold,\n };\n\n // Add maxPrice only if explicitly provided\n if (options.maxPrice !== undefined) {\n payload.max_price = options.maxPrice;\n }\n\n // Add optional parameters only if provided\n if (options.includedSources !== undefined) {\n payload.included_sources = options.includedSources;\n }\n\n if (options.excludeSources !== undefined) {\n payload.exclude_sources = options.excludeSources;\n }\n\n if (options.sourceBiases !== undefined) {\n payload.source_biases = options.sourceBiases;\n }\n\n if (options.category !== undefined) {\n payload.category = options.category;\n }\n\n if (options.startDate !== undefined) {\n payload.start_date = options.startDate;\n }\n\n if (options.endDate !== undefined) {\n payload.end_date = options.endDate;\n }\n\n if (options.countryCode !== undefined) {\n payload.country_code = options.countryCode;\n }\n\n if (options.responseLength !== undefined) {\n payload.response_length = options.responseLength;\n }\n\n if (options.fastMode !== undefined) {\n payload.fast_mode = options.fastMode;\n }\n\n if (options.urlOnly !== undefined) {\n payload.url_only = options.urlOnly;\n }\n\n const response = await axios.post(`${this.baseUrl}/deepsearch`, payload, {\n headers: this.headers,\n });\n\n if (!response.status || response.status < 200 || response.status >= 300) {\n return {\n success: false,\n error: response.data?.error,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n\n return response.data;\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n tx_id: null,\n query,\n results: [],\n results_by_source: { web: 0, proprietary: 0 },\n total_deduction_dollars: 0.0,\n total_characters: 0,\n };\n }\n }\n\n /**\n * Extract content from URLs with optional AI processing\n * @param urls - Array of URLs to process (max 10 sync, max 50 with async: true)\n * @param options - Content extraction configuration options\n * @param options.summary - AI summary configuration: false (raw), true (auto), string (custom), or JSON schema\n * @param options.extractEffort - Extraction thoroughness: \"normal\", \"high\", or \"auto\"\n * @param options.responseLength - Content length per URL\n * @param options.maxPriceDollars - Maximum cost limit in USD\n * @param options.screenshot - Request page screenshots (default: false)\n * @param options.async - Force async processing (required for >10 URLs)\n * @param options.webhookUrl - HTTPS URL for completion notification (async only)\n * @returns Promise resolving to sync results or async job (when async: true or >10 URLs)\n */\n async contents(\n urls: string[],\n options: ContentsOptions = {}\n ): Promise<ContentsResponse | ContentsAsyncJobResponse> {\n try {\n // Validate URLs array\n if (!urls || !Array.isArray(urls)) {\n return {\n success: false,\n error: \"urls must be an array\",\n urls_requested: 0,\n urls_processed: 0,\n urls_failed: 0,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n if (urls.length === 0) {\n return {\n success: false,\n error: \"urls array cannot be empty\",\n urls_requested: 0,\n urls_processed: 0,\n urls_failed: 0,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n const isAsync = options.async === true || urls.length > 10;\n\n if (urls.length > 10 && !options.async) {\n return {\n success: false,\n error:\n \"Requests with more than 10 URLs require async processing. Add async: true to the request.\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n if (urls.length > 50) {\n return {\n success: false,\n error: \"Maximum 50 URLs allowed per request\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // Validate extractEffort if provided\n if (\n options.extractEffort &&\n ![\"normal\", \"high\", \"auto\"].includes(options.extractEffort)\n ) {\n return {\n success: false,\n error: \"extractEffort must be 'normal', 'high', or 'auto'\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // Validate responseLength if provided\n if (options.responseLength !== undefined) {\n const validLengths = [\"short\", \"medium\", \"large\", \"max\"];\n if (\n typeof options.responseLength === \"string\" &&\n !validLengths.includes(options.responseLength)\n ) {\n return {\n success: false,\n error:\n \"responseLength must be 'short', 'medium', 'large', 'max', or a number\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n if (\n typeof options.responseLength === \"number\" &&\n options.responseLength <= 0\n ) {\n return {\n success: false,\n error: \"responseLength number must be positive\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n }\n\n // Build payload with snake_case for API\n const payload: Record<string, any> = {\n urls,\n };\n\n // Add optional parameters only if provided\n if (options.summary !== undefined) {\n payload.summary = options.summary;\n }\n\n if (options.extractEffort !== undefined) {\n payload.extract_effort = options.extractEffort;\n }\n\n if (options.responseLength !== undefined) {\n payload.response_length = options.responseLength;\n }\n\n if (options.maxPriceDollars !== undefined) {\n payload.max_price_dollars = options.maxPriceDollars;\n }\n\n if (options.screenshot !== undefined) {\n payload.screenshot = options.screenshot;\n }\n\n if (isAsync) {\n payload.async = true;\n }\n if (options.webhookUrl !== undefined) {\n payload.webhook_url = options.webhookUrl;\n }\n\n const response = await axios.post(`${this.baseUrl}/contents`, payload, {\n headers: this.headers,\n });\n\n if (!response.status || response.status < 200 || response.status >= 300) {\n return {\n success: false,\n error: response.data?.error || \"Request failed\",\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n\n // 202 Accepted - async job created\n if (response.status === 202) {\n return normalizeContentsAsyncJobResponse(response.data);\n }\n\n return response.data as ContentsResponse;\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n urls_requested: urls.length,\n urls_processed: 0,\n urls_failed: urls.length,\n results: [],\n total_cost_dollars: 0,\n total_characters: 0,\n };\n }\n }\n\n /**\n * Get async Contents job status and results\n * @param jobId - Job ID from contents() async response\n * @returns Promise resolving to job status\n */\n async getContentsJob(jobId: string): Promise<ContentsJobResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/contents/jobs/${jobId}`,\n { headers: this.headers }\n );\n return normalizeContentsJobResponse(response.data);\n } catch (e: any) {\n const errData = e.response?.data;\n const status = e.response?.status;\n return {\n success: false,\n jobId,\n status: \"failed\",\n urlsTotal: 0,\n urlsProcessed: 0,\n urlsFailed: 0,\n createdAt: 0,\n updatedAt: 0,\n error:\n errData?.error ||\n (status === 403\n ? \"Forbidden - you do not have access to this job\"\n : status === 404\n ? `Job ${jobId} not found`\n : e.message),\n };\n }\n }\n\n /**\n * Wait for async Contents job completion (polls until terminal state)\n * @param jobId - Job ID from contents() async response\n * @param options - Wait configuration (pollInterval, maxWaitTime, onProgress)\n * @returns Promise resolving to final job status with results\n */\n async waitForJob(\n jobId: string,\n options: ContentsJobWaitOptions = {}\n ): Promise<ContentsJobResponse> {\n const pollInterval = options.pollInterval ?? 5000;\n const maxWaitTime = options.maxWaitTime ?? 7200000;\n const startTime = Date.now();\n\n while (true) {\n const status = await this.getContentsJob(jobId);\n\n if (!status.success && status.error) {\n throw new Error(status.error);\n }\n\n if (options.onProgress) {\n options.onProgress(status);\n }\n\n if (\n status.status === \"completed\" ||\n status.status === \"partial\" ||\n status.status === \"failed\"\n ) {\n return status;\n }\n\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * DeepResearch: Create a new research task\n * @param options.search - Search configuration options\n * @param options.search.searchType - Type of search: \"all\", \"web\", or \"proprietary\" (default: \"all\")\n * @param options.search.includedSources - Array of source types to include (e.g., [\"academic\", \"finance\", \"web\"])\n * @param options.search.excludedSources - Array of source types to exclude (e.g., [\"web\", \"patent\"])\n * @param options.search.startDate - Start date filter in ISO format (YYYY-MM-DD)\n * @param options.search.endDate - End date filter in ISO format (YYYY-MM-DD)\n * @param options.search.category - Category filter for search results\n */\n private async _deepresearchCreate(\n options: DeepResearchCreateOptions\n ): Promise<DeepResearchCreateResponse> {\n try {\n // Use query field (input is supported for backward compatibility)\n const queryValue = options.query ?? options.input;\n\n // Validation\n if (!queryValue?.trim()) {\n return {\n success: false,\n error: \"query is required and cannot be empty\",\n };\n }\n\n // Build payload with snake_case\n // Prefer mode over model (backward compatible)\n const mode = options.mode ?? options.model;\n const payload: Record<string, any> = {\n query: queryValue,\n mode: mode || \"fast\", // API defaults to \"standard\", but we keep \"fast\" for backward compatibility\n output_formats: options.outputFormats || [\"markdown\"],\n code_execution: options.codeExecution !== false,\n };\n\n // Add optional fields\n if (options.strategy) payload.strategy = options.strategy;\n if (options.researchStrategy)\n payload.research_strategy = options.researchStrategy;\n if (options.reportFormat)\n payload.report_format = options.reportFormat;\n if (options.search) {\n payload.search = {};\n if (options.search.searchType) {\n payload.search.search_type = options.search.searchType;\n }\n if (options.search.includedSources) {\n payload.search.included_sources = options.search.includedSources;\n }\n if (options.search.excludedSources) {\n payload.search.excluded_sources = options.search.excludedSources;\n }\n if (options.search.sourceBiases) {\n payload.search.source_biases = options.search.sourceBiases;\n }\n if (options.search.startDate) {\n payload.search.start_date = options.search.startDate;\n }\n if (options.search.endDate) {\n payload.search.end_date = options.search.endDate;\n }\n if (options.search.category) {\n payload.search.category = options.search.category;\n }\n }\n if (options.urls) payload.urls = options.urls;\n if (options.files) payload.files = options.files;\n if (options.deliverables) payload.deliverables = options.deliverables;\n if (options.mcpServers) payload.mcp_servers = options.mcpServers;\n if (options.previousReports) {\n payload.previous_reports = options.previousReports;\n }\n if (options.webhookUrl) payload.webhook_url = options.webhookUrl;\n if (options.brandCollectionId)\n payload.brand_collection_id = options.brandCollectionId;\n if (options.alertEmail) {\n if (typeof options.alertEmail === \"string\") {\n payload.alert_email = options.alertEmail;\n } else {\n payload.alert_email = {\n email: options.alertEmail.email,\n custom_url: options.alertEmail.custom_url,\n };\n }\n }\n if (options.metadata) payload.metadata = options.metadata;\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks`,\n payload,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Get task status\n */\n private async _deepresearchStatus(\n taskId: string\n ): Promise<DeepResearchStatusResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/status`,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Wait for task completion with polling\n */\n private async _deepresearchWait(\n taskId: string,\n options: WaitOptions = {}\n ): Promise<DeepResearchStatusResponse> {\n const pollInterval = options.pollInterval || 5000;\n const maxWaitTime = options.maxWaitTime || 7200000;\n const startTime = Date.now();\n\n while (true) {\n const status = await this._deepresearchStatus(taskId);\n\n if (!status.success) {\n throw new Error(status.error);\n }\n\n // Notify progress callback\n if (options.onProgress) {\n options.onProgress(status);\n }\n\n // Terminal states\n if (\n status.status === \"completed\" ||\n status.status === \"failed\" ||\n status.status === \"cancelled\"\n ) {\n return status;\n }\n\n // Check timeout\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n // Wait before next poll\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * DeepResearch: Stream real-time updates\n */\n private async _deepresearchStream(\n taskId: string,\n callback: StreamCallback\n ): Promise<void> {\n let isComplete = false;\n let lastMessageCount = 0;\n\n while (!isComplete) {\n try {\n const status = await this._deepresearchStatus(taskId);\n\n if (!status.success) {\n if (callback.onError) {\n callback.onError(new Error(status.error));\n }\n return;\n }\n\n // Progress updates\n if (status.progress && callback.onProgress) {\n callback.onProgress(\n status.progress.current_step,\n status.progress.total_steps\n );\n }\n\n // New messages\n if (status.messages && callback.onMessage) {\n const newMessages = status.messages.slice(lastMessageCount);\n newMessages.forEach((msg) => callback.onMessage!(msg));\n lastMessageCount = status.messages.length;\n }\n\n // Terminal states\n if (status.status === \"completed\") {\n if (callback.onComplete) {\n callback.onComplete(status);\n }\n isComplete = true;\n } else if (\n status.status === \"failed\" ||\n status.status === \"cancelled\"\n ) {\n if (callback.onError) {\n callback.onError(\n new Error(status.error || `Task ${status.status}`)\n );\n }\n isComplete = true;\n }\n\n if (!isComplete) {\n await new Promise((resolve) => setTimeout(resolve, 5000));\n }\n } catch (error: any) {\n if (callback.onError) {\n callback.onError(error);\n }\n throw error;\n }\n }\n }\n\n /**\n * DeepResearch: List all tasks\n */\n private async _deepresearchList(\n options?: ListOptions\n ): Promise<DeepResearchListResponse> {\n try {\n const limit = options?.limit || 10;\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/list?limit=${limit}`,\n { headers: this.headers }\n );\n\n return { success: true, data: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Add follow-up instruction\n */\n private async _deepresearchUpdate(\n taskId: string,\n instruction: string\n ): Promise<DeepResearchUpdateResponse> {\n try {\n if (!instruction?.trim()) {\n return {\n success: false,\n error: \"instruction is required and cannot be empty\",\n };\n }\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/update`,\n { instruction },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Cancel task\n */\n private async _deepresearchCancel(\n taskId: string\n ): Promise<DeepResearchCancelResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/cancel`,\n {},\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Delete task\n */\n private async _deepresearchDelete(\n taskId: string\n ): Promise<DeepResearchDeleteResponse> {\n try {\n const response = await axios.delete(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/delete`,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Toggle public flag\n */\n private async _deepresearchTogglePublic(\n taskId: string,\n isPublic: boolean\n ): Promise<DeepResearchTogglePublicResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/tasks/${taskId}/public`,\n { public: isPublic },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * DeepResearch: Get task assets (images, deliverables, PDFs)\n */\n private async _deepresearchGetAssets(\n taskId: string,\n assetId: string,\n options: DeepResearchGetAssetsOptions = {}\n ): Promise<DeepResearchGetAssetsResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.token) {\n params.append(\"token\", options.token);\n }\n\n // Build headers - use API key if no token provided\n const headers: Record<string, string> = {};\n if (!options.token) {\n headers[\"x-api-key\"] = this.headers[\"x-api-key\"];\n }\n\n const url = `${\n this.baseUrl\n }/deepresearch/tasks/${taskId}/assets/${assetId}${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n\n const response = await axios.get(url, {\n headers,\n responseType: \"arraybuffer\", // For binary data\n });\n\n return {\n success: true,\n data: Buffer.from(response.data),\n contentType:\n response.headers[\"content-type\"] || \"application/octet-stream\",\n };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Create a new batch\n * @param options - Batch configuration options\n * @param options.name - Optional name for the batch\n * @param options.model - DeepResearch mode: \"fast\", \"standard\", or \"heavy\" (default: \"standard\")\n * @param options.outputFormats - Output formats for tasks (default: [\"markdown\"])\n * @param options.search - Search configuration for all tasks in batch\n * @param options.search.searchType - Type of search: \"all\", \"web\", or \"proprietary\" (default: \"all\")\n * @param options.search.includedSources - Array of source types to include (e.g., [\"academic\", \"finance\", \"web\"])\n * @param options.search.excludedSources - Array of source types to exclude (e.g., [\"web\", \"patent\"])\n * @param options.search.startDate - Start date filter in ISO format (YYYY-MM-DD)\n * @param options.search.endDate - End date filter in ISO format (YYYY-MM-DD)\n * @param options.search.category - Category filter for search results\n * @param options.webhookUrl - Optional HTTPS URL for completion notification\n * @param options.metadata - Optional metadata key-value pairs\n * @returns Promise resolving to batch creation response with batch_id and webhook_secret\n */\n private async _batchCreate(\n options: CreateBatchOptions = {}\n ): Promise<CreateBatchResponse> {\n try {\n const payload: Record<string, any> = {};\n\n if (options.name) payload.name = options.name;\n // Accept both mode (preferred) and model (backward compatible)\n const mode = options.mode ?? options.model;\n if (mode) payload.mode = mode;\n if (options.outputFormats) payload.output_formats = options.outputFormats;\n if (options.search) {\n payload.search = {};\n if (options.search.searchType) {\n payload.search.search_type = options.search.searchType;\n }\n if (options.search.includedSources) {\n payload.search.included_sources = options.search.includedSources;\n }\n if (options.search.excludedSources) {\n payload.search.excluded_sources = options.search.excludedSources;\n }\n if (options.search.sourceBiases) {\n payload.search.source_biases = options.search.sourceBiases;\n }\n if (options.search.startDate) {\n payload.search.start_date = options.search.startDate;\n }\n if (options.search.endDate) {\n payload.search.end_date = options.search.endDate;\n }\n if (options.search.category) {\n payload.search.category = options.search.category;\n }\n }\n if (options.webhookUrl) payload.webhook_url = options.webhookUrl;\n if (options.metadata) payload.metadata = options.metadata;\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches`,\n payload,\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Get batch status\n * @param batchId - The batch ID to query\n * @returns Promise resolving to batch status with counts and usage\n */\n private async _batchStatus(batchId: string): Promise<BatchStatusResponse> {\n try {\n const response = await axios.get(\n `${this.baseUrl}/deepresearch/batches/${batchId}`,\n { headers: this.headers }\n );\n\n return { success: true, batch: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Add tasks to a batch\n * @param batchId - The batch ID to add tasks to\n * @param options - Task configuration options\n * @param options.tasks - Array of task inputs (use 'query' field for each task)\n * @returns Promise resolving to response with added, tasks array, counts, and batch_id\n */\n private async _batchAddTasks(\n batchId: string,\n options: AddBatchTasksOptions\n ): Promise<AddBatchTasksResponse> {\n try {\n if (!options.tasks || !Array.isArray(options.tasks)) {\n return {\n success: false,\n error: \"tasks must be an array\",\n };\n }\n\n if (options.tasks.length === 0) {\n return {\n success: false,\n error: \"tasks array cannot be empty\",\n };\n }\n\n if (options.tasks.length > 100) {\n return {\n success: false,\n error: \"Maximum 100 tasks allowed per request\",\n };\n }\n\n // Validate that each task has a query\n for (const task of options.tasks) {\n if (!task.query && !task.input) {\n return {\n success: false,\n error: \"Each task must have a 'query' field\",\n };\n }\n }\n\n // Convert tasks to snake_case format for API\n // Note: Tasks can only include: id, query, strategy, urls, metadata\n // Tasks inherit model, output_formats, and search_params from batch\n const tasksPayload = options.tasks.map((task) => {\n const taskPayload: Record<string, any> = {};\n\n // Use query field (input is supported for backward compatibility)\n const queryValue = task.query ?? task.input;\n if (queryValue) {\n taskPayload.query = queryValue;\n }\n\n if (task.id) taskPayload.id = task.id;\n if (task.strategy) taskPayload.strategy = task.strategy;\n if (task.researchStrategy)\n taskPayload.research_strategy = task.researchStrategy;\n if (task.reportFormat)\n taskPayload.report_format = task.reportFormat;\n if (task.urls) taskPayload.urls = task.urls;\n if (task.metadata) taskPayload.metadata = task.metadata;\n\n return taskPayload;\n });\n\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches/${batchId}/tasks`,\n { tasks: tasksPayload },\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: List all tasks in a batch\n * @param batchId - The batch ID to query\n * @param options - Optional pagination and filtering options\n * @param options.status - Filter by status: \"queued\", \"running\", \"completed\", \"failed\", or \"cancelled\"\n * @param options.limit - Maximum number of tasks to return\n * @param options.lastKey - Pagination token from previous response\n * @returns Promise resolving to list of tasks with their status and pagination info\n */\n private async _batchListTasks(\n batchId: string,\n options: ListBatchTasksOptions = {}\n ): Promise<ListBatchTasksResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.status) {\n params.append(\"status\", options.status);\n }\n if (options.limit !== undefined) {\n params.append(\"limit\", options.limit.toString());\n }\n if (options.lastKey) {\n params.append(\"last_key\", options.lastKey);\n }\n if (options.includeOutput !== undefined) {\n params.append(\"include_output\", options.includeOutput.toString());\n }\n\n const url = `${this.baseUrl}/deepresearch/batches/${batchId}/tasks${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, { headers: this.headers });\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Cancel a batch and all its pending tasks\n * @param batchId - The batch ID to cancel\n * @returns Promise resolving to cancellation confirmation\n */\n private async _batchCancel(batchId: string): Promise<CancelBatchResponse> {\n try {\n const response = await axios.post(\n `${this.baseUrl}/deepresearch/batches/${batchId}/cancel`,\n {},\n { headers: this.headers }\n );\n\n return { success: true, ...response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: List all batches\n * @param options - Optional options\n * @param options.limit - Maximum number of batches to return\n * @returns Promise resolving to list of all batches\n */\n private async _batchList(\n options: ListBatchesOptions = {}\n ): Promise<ListBatchesResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.limit !== undefined) {\n params.append(\"limit\", options.limit.toString());\n }\n\n const url = `${this.baseUrl}/deepresearch/batches${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, {\n headers: this.headers,\n });\n\n return { success: true, batches: response.data };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Batch: Wait for batch completion with polling\n * @param batchId - The batch ID to wait for\n * @param options - Wait configuration options\n * @param options.pollInterval - Polling interval in milliseconds (default: 10000)\n * @param options.maxWaitTime - Maximum wait time in milliseconds (default: 7200000)\n * @param options.onProgress - Callback for progress updates\n * @returns Promise resolving to final batch status\n */\n private async _batchWaitForCompletion(\n batchId: string,\n options: BatchWaitOptions = {}\n ): Promise<DeepResearchBatch> {\n const pollInterval = options.pollInterval || 10000; // 10 seconds default\n const maxWaitTime = options.maxWaitTime || 7200000; // 2 hours default\n const startTime = Date.now();\n\n while (true) {\n const statusResponse = await this._batchStatus(batchId);\n\n if (!statusResponse.success || !statusResponse.batch) {\n throw new Error(statusResponse.error || \"Failed to get batch status\");\n }\n\n const batch = statusResponse.batch;\n\n // Notify progress callback\n if (options.onProgress) {\n options.onProgress(batch);\n }\n\n // Terminal states\n if (\n batch.status === \"completed\" ||\n batch.status === \"completed_with_errors\" ||\n batch.status === \"cancelled\"\n ) {\n return batch;\n }\n\n // Check timeout\n if (Date.now() - startTime > maxWaitTime) {\n throw new Error(\"Maximum wait time exceeded\");\n }\n\n // Wait before next poll\n await new Promise((resolve) => setTimeout(resolve, pollInterval));\n }\n }\n\n /**\n * Get AI-powered answers using the Valyu Answer API\n * @param query - The question or query string\n * @param options - Answer configuration options\n * @param options.structuredOutput - JSON Schema object for structured responses\n * @param options.systemInstructions - Custom system-level instructions (max 2000 chars)\n * @param options.searchType - Type of search: \"web\", \"proprietary\", \"all\", or \"news\"\n * @param options.dataMaxPrice - Maximum spend (USD) for data retrieval\n * @param options.countryCode - Country code filter for search results\n * @param options.includedSources - List of specific sources to include\n * @param options.excludedSources - List of URLs/domains to exclude from search results\n * @param options.startDate - Start date filter (YYYY-MM-DD format)\n * @param options.endDate - End date filter (YYYY-MM-DD format)\n * @param options.fastMode - Fast mode for quicker but shorter results (default: false)\n * @param options.streaming - Enable streaming mode (default: false)\n * @returns Promise resolving to answer response, or AsyncGenerator for streaming\n */\n async answer(\n query: string,\n options: AnswerOptions = {}\n ): Promise<\n AnswerResponse | AsyncGenerator<AnswerStreamChunk, void, unknown>\n > {\n // Validate inputs first\n const validationError = this.validateAnswerParams(query, options);\n if (validationError) {\n if (options.streaming) {\n return this.createErrorGenerator(validationError);\n }\n return { success: false, error: validationError };\n }\n\n const payload = this.buildAnswerPayload(query, options);\n\n if (options.streaming) {\n return this.streamAnswer(payload);\n } else {\n return this.fetchAnswer(payload);\n }\n }\n\n /**\n * Validate answer parameters\n */\n private validateAnswerParams(\n query: string,\n options: AnswerOptions\n ): string | null {\n // Validate query\n if (!query || typeof query !== \"string\" || query.trim().length === 0) {\n return \"Query is required and must be a non-empty string\";\n }\n\n // Validate searchType\n const providedSearchTypeString = options.searchType?.toLowerCase();\n if (\n providedSearchTypeString !== undefined &&\n providedSearchTypeString !== \"web\" &&\n providedSearchTypeString !== \"proprietary\" &&\n providedSearchTypeString !== \"all\" &&\n providedSearchTypeString !== \"news\"\n ) {\n return \"Invalid searchType provided. Must be one of: all, web, proprietary, news\";\n }\n\n // Validate systemInstructions\n if (options.systemInstructions !== undefined) {\n if (typeof options.systemInstructions !== \"string\") {\n return \"systemInstructions must be a string\";\n }\n const trimmed = options.systemInstructions.trim();\n if (trimmed.length === 0) {\n return \"systemInstructions cannot be empty when provided\";\n }\n if (trimmed.length > 2000) {\n return \"systemInstructions must be 2000 characters or less\";\n }\n }\n\n // Validate dataMaxPrice\n if (options.dataMaxPrice !== undefined) {\n if (\n typeof options.dataMaxPrice !== \"number\" ||\n options.dataMaxPrice <= 0\n ) {\n return \"dataMaxPrice must be a positive number\";\n }\n }\n\n // Validate date formats\n if (options.startDate && !this.validateDateFormat(options.startDate)) {\n return \"Invalid startDate format. Must be YYYY-MM-DD\";\n }\n if (options.endDate && !this.validateDateFormat(options.endDate)) {\n return \"Invalid endDate format. Must be YYYY-MM-DD\";\n }\n if (options.startDate && options.endDate) {\n const startDate = new Date(options.startDate);\n const endDate = new Date(options.endDate);\n if (startDate > endDate) {\n return \"startDate must be before endDate\";\n }\n }\n\n // Validate sources\n if (options.includedSources !== undefined) {\n if (!Array.isArray(options.includedSources)) {\n return \"includedSources must be an array\";\n }\n const validation = this.validateSources(options.includedSources);\n if (!validation.valid) {\n return `Invalid includedSources format. Invalid sources: ${validation.invalidSources.join(\n \", \"\n )}.`;\n }\n }\n if (options.excludedSources !== undefined) {\n if (!Array.isArray(options.excludedSources)) {\n return \"excludedSources must be an array\";\n }\n const validation = this.validateSources(options.excludedSources);\n if (!validation.valid) {\n return `Invalid excludedSources format. Invalid sources: ${validation.invalidSources.join(\n \", \"\n )}.`;\n }\n }\n\n return null;\n }\n\n /**\n * Build payload for answer API\n */\n private buildAnswerPayload(\n query: string,\n options: AnswerOptions\n ): Record<string, any> {\n const defaultSearchType: SearchType = \"all\";\n const providedSearchTypeString = options.searchType?.toLowerCase();\n let finalSearchType: SearchType = defaultSearchType;\n\n if (\n providedSearchTypeString === \"web\" ||\n providedSearchTypeString === \"proprietary\" ||\n providedSearchTypeString === \"all\" ||\n providedSearchTypeString === \"news\"\n ) {\n finalSearchType = providedSearchTypeString as SearchType;\n }\n\n const payload: Record<string, any> = {\n query: query.trim(),\n search_type: finalSearchType,\n };\n\n if (options.dataMaxPrice !== undefined)\n payload.data_max_price = options.dataMaxPrice;\n if (options.structuredOutput !== undefined)\n payload.structured_output = options.structuredOutput;\n if (options.systemInstructions !== undefined)\n payload.system_instructions = options.systemInstructions.trim();\n if (options.countryCode !== undefined)\n payload.country_code = options.countryCode;\n if (options.includedSources !== undefined)\n payload.included_sources = options.includedSources;\n if (options.excludedSources !== undefined)\n payload.excluded_sources = options.excludedSources;\n if (options.startDate !== undefined) payload.start_date = options.startDate;\n if (options.endDate !== undefined) payload.end_date = options.endDate;\n if (options.fastMode !== undefined) payload.fast_mode = options.fastMode;\n\n return payload;\n }\n\n /**\n * Fetch answer (non-streaming mode)\n */\n private async fetchAnswer(\n payload: Record<string, any>\n ): Promise<AnswerResponse> {\n try {\n const response = await fetch(`${this.baseUrl}/answer`, {\n method: \"POST\",\n headers: {\n ...this.headers,\n Accept: \"text/event-stream\",\n },\n body: JSON.stringify(payload),\n });\n\n if (!response.ok) {\n const errorData = await response.json().catch(() => ({}));\n return {\n success: false,\n error: errorData.error || `HTTP Error: ${response.status}`,\n };\n }\n\n // Collect streamed data into final response\n let fullContent = \"\";\n let searchResults: SearchResult[] = [];\n let finalMetadata: any = {};\n\n const reader = response.body?.getReader();\n const decoder = new TextDecoder();\n let buffer = \"\";\n\n if (reader) {\n while (true) {\n const { done, value } = await reader.read();\n if (done) break;\n\n buffer += decoder.decode(value, { stream: true });\n const lines = buffer.split(\"\\n\");\n buffer = lines.pop() || \"\";\n\n for (const line of lines) {\n if (!line.startsWith(\"data: \")) continue;\n const dataStr = line.slice(6);\n\n if (dataStr === \"[DONE]\") continue;\n\n try {\n const parsed = JSON.parse(dataStr);\n\n // Handle search results\n if (parsed.search_results && !parsed.success) {\n searchResults = [...searchResults, ...parsed.search_results];\n }\n // Handle content chunks\n else if (parsed.choices) {\n const content = parsed.choices[0]?.delta?.content || \"\";\n if (content) fullContent += content;\n }\n // Handle final metadata\n else if (parsed.success !== undefined) {\n finalMetadata = parsed;\n }\n } catch {\n continue;\n }\n }\n }\n }\n\n // Build final response\n if (finalMetadata.success) {\n const finalSearchResults =\n finalMetadata.search_results || searchResults;\n const response: AnswerSuccessResponse = {\n success: true,\n tx_id: finalMetadata.tx_id || \"\",\n original_query: finalMetadata.original_query || payload.query,\n contents: finalMetadata.contents || fullContent || \"\",\n search_results: finalSearchResults,\n search_metadata: finalMetadata.search_metadata || {\n tx_ids: [],\n number_of_results: 0,\n total_characters: 0,\n },\n ai_usage: finalMetadata.ai_usage || {\n input_tokens: 0,\n output_tokens: 0,\n },\n cost: finalMetadata.cost || {\n total_deduction_dollars: 0,\n search_deduction_dollars: 0,\n ai_deduction_dollars: 0,\n },\n };\n if (finalMetadata.extraction_metadata) {\n response.extraction_metadata = finalMetadata.extraction_metadata;\n }\n return response;\n }\n\n return {\n success: false,\n error: finalMetadata.error || \"Unknown error occurred\",\n };\n } catch (e: any) {\n return {\n success: false,\n error: e.message || \"Request failed\",\n };\n }\n }\n\n /**\n * Stream answer using SSE\n */\n private async *streamAnswer(\n payload: Record<string, any>\n ): AsyncGenerator<AnswerStreamChunk, void, unknown> {\n try {\n const response = await fetch(`${this.baseUrl}/answer`, {\n method: \"POST\",\n headers: {\n ...this.headers,\n Accept: \"text/event-stream\",\n },\n body: JSON.stringify(payload),\n });\n\n if (!response.ok) {\n const errorData = await response.json().catch(() => ({}));\n yield {\n type: \"error\",\n error: errorData.error || `HTTP Error: ${response.status}`,\n };\n return;\n }\n\n const reader = response.body?.getReader();\n const decoder = new TextDecoder();\n let buffer = \"\";\n\n if (!reader) {\n yield { type: \"error\", error: \"No response body\" };\n return;\n }\n\n while (true) {\n const { done, value } = await reader.read();\n if (done) break;\n\n buffer += decoder.decode(value, { stream: true });\n const lines = buffer.split(\"\\n\");\n buffer = lines.pop() || \"\";\n\n for (const line of lines) {\n if (!line.startsWith(\"data: \")) continue;\n const dataStr = line.slice(6);\n\n if (dataStr === \"[DONE]\") {\n yield { type: \"done\" };\n continue;\n }\n\n try {\n const parsed = JSON.parse(dataStr);\n\n // Handle search results\n if (parsed.search_results && parsed.success === undefined) {\n yield {\n type: \"search_results\",\n search_results: parsed.search_results,\n };\n }\n // Handle content chunks\n else if (parsed.choices) {\n const delta = parsed.choices[0]?.delta || {};\n const content = delta.content || \"\";\n const finishReason = parsed.choices[0]?.finish_reason;\n\n if (content || finishReason) {\n yield { type: \"content\", content, finish_reason: finishReason };\n }\n }\n // Handle final metadata\n else if (parsed.success !== undefined) {\n yield {\n type: \"metadata\",\n tx_id: parsed.tx_id,\n original_query: parsed.original_query,\n contents: parsed.contents,\n search_results: parsed.search_results,\n search_metadata: parsed.search_metadata,\n ai_usage: parsed.ai_usage,\n cost: parsed.cost,\n extraction_metadata: parsed.extraction_metadata,\n };\n }\n } catch {\n continue;\n }\n }\n }\n } catch (e: any) {\n yield { type: \"error\", error: e.message || \"Stream failed\" };\n }\n }\n\n /**\n * Create an error generator for streaming errors\n */\n private async *createErrorGenerator(\n error: string\n ): AsyncGenerator<AnswerStreamChunk, void, unknown> {\n yield { type: \"error\", error };\n }\n\n /**\n * Datasources: List all available datasources\n * @param options - Optional filter options\n * @param options.category - Filter by category (e.g., \"research\", \"markets\", \"healthcare\")\n * @returns Promise resolving to list of datasources with their metadata\n */\n private async _datasourcesList(\n options: DatasourcesListOptions = {}\n ): Promise<DatasourcesListResponse> {\n try {\n // Build query params\n const params = new URLSearchParams();\n if (options.category) {\n params.append(\"category\", options.category);\n }\n\n const url = `${this.baseUrl}/datasources${\n params.toString() ? `?${params.toString()}` : \"\"\n }`;\n const response = await axios.get(url, { headers: this.headers });\n\n return { success: true, datasources: response.data.datasources };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n\n /**\n * Datasources: Get all available categories\n * @returns Promise resolving to list of categories with their metadata\n */\n private async _datasourcesCategories(): Promise<DatasourcesCategoriesResponse> {\n try {\n const response = await axios.get(`${this.baseUrl}/datasources/categories`, {\n headers: this.headers,\n });\n\n return { success: true, categories: response.data.categories };\n } catch (e: any) {\n return {\n success: false,\n error: e.response?.data?.error || e.message,\n };\n }\n }\n}\n\nexport type {\n SearchResponse,\n SearchType,\n SearchResult,\n FeedbackSentiment,\n FeedbackResponse,\n SearchOptions,\n CountryCode,\n ResponseLength,\n ContentsOptions,\n ContentsResponse,\n ContentsAsyncJobResponse,\n ContentsJobResponse,\n ContentsJobStatus,\n ContentsJobWaitOptions,\n ContentResult,\n ContentResultSuccess,\n ContentResultFailed,\n ExtractEffort,\n ContentResponseLength,\n AnswerOptions,\n AnswerResponse,\n AnswerSuccessResponse,\n AnswerErrorResponse,\n AnswerStreamChunk,\n AnswerStreamChunkType,\n SearchMetadata,\n AIUsage,\n Cost,\n ExtractionMetadata,\n AlertEmailConfig,\n DeepResearchMode,\n DeepResearchStatus,\n DeepResearchOutputFormat,\n ImageType,\n ChartType,\n FileAttachment,\n MCPServerConfig,\n DeepResearchSearchConfig,\n DeepResearchCreateOptions,\n Progress,\n ChartDataPoint,\n ChartDataSeries,\n ImageMetadata,\n DeepResearchSource,\n DeepResearchUsage,\n DeepResearchCreateResponse,\n DeepResearchStatusResponse,\n DeepResearchTaskListItem,\n DeepResearchListResponse,\n DeepResearchUpdateResponse,\n DeepResearchCancelResponse,\n DeepResearchDeleteResponse,\n DeepResearchTogglePublicResponse,\n DeepResearchGetAssetsOptions,\n DeepResearchGetAssetsResponse,\n WaitOptions,\n StreamCallback,\n ListOptions,\n BatchStatus,\n BatchCounts,\n DeepResearchBatch,\n CreateBatchOptions,\n BatchTaskInput,\n AddBatchTasksOptions,\n CreateBatchResponse,\n BatchStatusResponse,\n AddBatchTasksResponse,\n BatchTaskCreated,\n BatchTaskListItem,\n BatchPagination,\n ListBatchTasksOptions,\n ListBatchTasksResponse,\n CancelBatchResponse,\n ListBatchesOptions,\n ListBatchesResponse,\n BatchWaitOptions,\n DatasourceCategoryId,\n DatasourceModality,\n DatasourcePricing,\n DatasourceCoverage,\n Datasource,\n DatasourceCategory,\n DatasourcesListOptions,\n DatasourcesListResponse,\n DatasourcesCategoriesResponse,\n} from \"./types\";\n"],"mappings":"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","names":["response"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valyu-js",
3
- "version": "2.5.9",
3
+ "version": "2.6.0",
4
4
  "description": "Deepsearch API for AI.",
5
5
  "files": [
6
6
  "dist"