@mondaydotcomorg/atp-client
Version:
Client SDK for Agent Tool Protocol
14 lines • 582 B
TypeScript
import { z } from 'zod';
import type { AgentToolProtocolClient } from '../client.js';
import { type Tool } from './types.js';
declare const fetchAllApisInputSchema: z.ZodObject<{
apiGroups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
}, "strip", z.ZodTypeAny, {
apiGroups?: string[] | undefined;
}, {
apiGroups?: string[] | undefined;
}>;
type FetchAllApisInput = z.infer<typeof fetchAllApisInputSchema>;
export declare function createFetchAllApisTool(client: AgentToolProtocolClient): Tool<FetchAllApisInput>;
export {};
//# sourceMappingURL=fetch-all-apis.d.ts.map