UNPKG

n8n

Version:

n8n Workflow Automation Tool

60 lines (59 loc) 1.48 kB
import type { IncomingMessage } from 'http'; import type { WebSocket } from 'ws'; import { z } from 'zod'; export interface ChatRequest extends IncomingMessage { url: string; query: { sessionId: string; executionId: string; isPublic?: boolean; }; ws: WebSocket; } export type Session = { connection: WebSocket; executionId: string; sessionId: string; intervalId: NodeJS.Timeout; nodeWaitingForChatResponse?: string; isPublic: boolean; isProcessing: boolean; lastHeartbeat?: number; }; export declare const chatMessageSchema: z.ZodObject<{ sessionId: z.ZodString; action: z.ZodLiteral<"sendMessage">; chatInput: z.ZodString; files: z.ZodOptional<z.ZodArray<z.ZodObject<{ name: z.ZodString; type: z.ZodString; data: z.ZodString; }, "strip", z.ZodTypeAny, { data: string; name: string; type: string; }, { data: string; name: string; type: string; }>, "many">>; }, "strip", z.ZodTypeAny, { action: "sendMessage"; sessionId: string; chatInput: string; files?: { data: string; name: string; type: string; }[] | undefined; }, { action: "sendMessage"; sessionId: string; chatInput: string; files?: { data: string; name: string; type: string; }[] | undefined; }>; export type ChatMessage = z.infer<typeof chatMessageSchema>;