From 17efb8a71a1087c7a9c07a35df4a09bf67b49d6e Mon Sep 17 00:00:00 2001 From: Mael Abgrall <172921326+Mael-Abgrall@users.noreply.github.com> Date: Tue, 12 May 2026 10:01:49 +0100 Subject: [PATCH] Expand SearchDepth type to include 'fast' --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 134bcb0..3d41e57 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2,7 +2,7 @@ import { ZodObject, ZodRawShape } from 'zod'; import type { X402Signer } from './x402/types'; -export type SearchDepth = 'standard' | 'deep'; +export type SearchDepth = 'fast' | 'standard' | 'deep'; export type ApiKeyConfig = { apiKey: string; baseUrl?: string };