import { z } from 'zod';
import { allCommandsConfigSchema } from '../command';

export const flowSchema = z.object({
  id: z.number(),
  name: z.string(),
  description: z.string().optional(),
  commands: z.array(allCommandsConfigSchema),
});
