UNPKG

mcp-casual-interview

Version:

MCP server for casual interview preparation workflow management

22 lines 1.45 kB
import { z } from 'zod'; export declare const progressCheckSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; declare const WorkflowState: z.ZodEnum<["not_started", "initial_info_registered", "career_summary_created", "match_position_determined", "match_degree_diagnosed", "attract_plan_determined", "completed"]>; export declare const progressCheckOutputSchema: z.ZodObject<{ currentState: z.ZodEnum<["not_started", "initial_info_registered", "career_summary_created", "match_position_determined", "match_degree_diagnosed", "attract_plan_determined", "completed"]>; nextAction: z.ZodString; notion_page_url: z.ZodString; }, "strip", z.ZodTypeAny, { currentState: "not_started" | "initial_info_registered" | "career_summary_created" | "match_position_determined" | "match_degree_diagnosed" | "attract_plan_determined" | "completed"; nextAction: string; notion_page_url: string; }, { currentState: "not_started" | "initial_info_registered" | "career_summary_created" | "match_position_determined" | "match_degree_diagnosed" | "attract_plan_determined" | "completed"; nextAction: string; notion_page_url: string; }>; export declare const toolParams: {}; export type ProgressCheckParams = z.infer<typeof progressCheckSchema>; export type ProgressCheckOutput = z.infer<typeof progressCheckOutputSchema>; export type WorkflowStateType = z.infer<typeof WorkflowState>; export {}; //# sourceMappingURL=schema.d.ts.map