@mondaydotcomorg/atp-client
Version:
Client SDK for Agent Tool Protocol
14 lines • 489 B
TypeScript
import { z } from 'zod';
import type { AgentToolProtocolClient } from '../client.js';
import { type Tool } from './types.js';
declare const exploreApiInputSchema: z.ZodObject<{
path: z.ZodString;
}, "strip", z.ZodTypeAny, {
path: string;
}, {
path: string;
}>;
type ExploreApiInput = z.infer<typeof exploreApiInputSchema>;
export declare function createExploreApiTool(client: AgentToolProtocolClient): Tool<ExploreApiInput>;
export {};
//# sourceMappingURL=explore-api.d.ts.map