mcp-casual-interview
Version:
MCP server for casual interview preparation workflow management
31 lines • 2.19 kB
TypeScript
import { z } from 'zod';
export declare const workflowResetSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
declare const WorkflowState: z.ZodEnum<["information_initially_registered", "career_summary_created", "match_position_determined", "match_degree_prediagnosed", "attract_plan_determined", "completed"]>;
export declare const workflowResetOutputSchema: z.ZodObject<{
success: z.ZodBoolean;
previousState: z.ZodNullable<z.ZodEnum<["information_initially_registered", "career_summary_created", "match_position_determined", "match_degree_prediagnosed", "attract_plan_determined", "completed"]>>;
currentState: z.ZodEnum<["information_initially_registered", "career_summary_created", "match_position_determined", "match_degree_prediagnosed", "attract_plan_determined", "completed"]>;
notionPageUrl: z.ZodNullable<z.ZodString>;
lastUpdated: z.ZodString;
message: z.ZodString;
}, "strip", z.ZodTypeAny, {
message: string;
currentState: "career_summary_created" | "match_position_determined" | "attract_plan_determined" | "completed" | "information_initially_registered" | "match_degree_prediagnosed";
notionPageUrl: string | null;
lastUpdated: string;
success: boolean;
previousState: "career_summary_created" | "match_position_determined" | "attract_plan_determined" | "completed" | "information_initially_registered" | "match_degree_prediagnosed" | null;
}, {
message: string;
currentState: "career_summary_created" | "match_position_determined" | "attract_plan_determined" | "completed" | "information_initially_registered" | "match_degree_prediagnosed";
notionPageUrl: string | null;
lastUpdated: string;
success: boolean;
previousState: "career_summary_created" | "match_position_determined" | "attract_plan_determined" | "completed" | "information_initially_registered" | "match_degree_prediagnosed" | null;
}>;
export declare const toolParams: {};
export type WorkflowResetParams = z.infer<typeof workflowResetSchema>;
export type WorkflowResetOutput = z.infer<typeof workflowResetOutputSchema>;
export type WorkflowStateType = z.infer<typeof WorkflowState>;
export {};
//# sourceMappingURL=schema.d.ts.map