UNPKG

@posthog/wizard

Version:

The PostHog wizard helps you to configure your project

52 lines (51 loc) 1.97 kB
import z from 'zod'; export declare const DefaultMCPClientConfig: z.ZodObject<{ mcpServers: z.ZodRecord<z.ZodString, z.ZodObject<{ command: z.ZodOptional<z.ZodString>; args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; }, "strip", z.ZodTypeAny, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ mcpServers: z.ZodRecord<z.ZodString, z.ZodObject<{ command: z.ZodOptional<z.ZodString>; args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; }, "strip", z.ZodTypeAny, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ mcpServers: z.ZodRecord<z.ZodString, z.ZodObject<{ command: z.ZodOptional<z.ZodString>; args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; }, "strip", z.ZodTypeAny, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; export declare const getDefaultServerConfig: (apiKey: string) => { command: string; args: string[]; env: { POSTHOG_AUTH_HEADER: string; }; };