@chinchillaenterprises/mcp-upwork
Version:
Modular Upwork MCP server for job search and proposal management via Upwork API
15 lines • 719 B
TypeScript
import { z } from "zod";
export declare const GetEarningsArgsSchema: z.ZodObject<{
period: z.ZodEnum<["this_week", "last_week", "this_month", "last_month", "this_year", "last_year", "custom"]>;
start_date: z.ZodOptional<z.ZodString>;
end_date: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
period: "this_week" | "last_week" | "this_month" | "last_month" | "this_year" | "last_year" | "custom";
start_date?: string | undefined;
end_date?: string | undefined;
}, {
period: "this_week" | "last_week" | "this_month" | "last_month" | "this_year" | "last_year" | "custom";
start_date?: string | undefined;
end_date?: string | undefined;
}>;
//# sourceMappingURL=earnings.d.ts.map