import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ConnectorListToolsV1Request = { page?: number | undefined; pageSize?: number | undefined; refresh?: boolean | undefined; /** * Return a simplified payload with only name, description, annotations, and a compact inputSchema. */ pretty?: boolean | undefined; credentialsName?: string | null | undefined; connectorIdOrName: string; }; /** * Successful Response */ export type ResponseConnectorListToolsV1 = Array | Array | Array<{ [k: string]: any; }>; /** @internal */ export type ConnectorListToolsV1Request$Outbound = { page: number; page_size: number; refresh: boolean; pretty: boolean; credentials_name?: string | null | undefined; connector_id_or_name: string; }; /** @internal */ export declare const ConnectorListToolsV1Request$outboundSchema: z.ZodType; export declare function connectorListToolsV1RequestToJSON(connectorListToolsV1Request: ConnectorListToolsV1Request): string; /** @internal */ export declare const ResponseConnectorListToolsV1$inboundSchema: z.ZodType; export declare function responseConnectorListToolsV1FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=connectorlisttoolsv1.d.ts.map