@coinbase/agentkit
Version:
Coinbase AgentKit core primitives
29 lines (28 loc) • 709 B
TypeScript
import { z } from "zod";
/**
* Input argument schema for the account_details action.
*/
export declare const FarcasterAccountDetailsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
/**
* Input argument schema for the post cast action.
*/
export declare const FarcasterPostCastSchema: z.ZodObject<{
castText: z.ZodString;
embeds: z.ZodOptional<z.ZodArray<z.ZodObject<{
url: z.ZodString;
}, "strip", z.ZodTypeAny, {
url: string;
}, {
url: string;
}>, "many">>;
}, "strip", z.ZodTypeAny, {
castText: string;
embeds?: {
url: string;
}[] | undefined;
}, {
castText: string;
embeds?: {
url: string;
}[] | undefined;
}>;