n8n/packages/cli/src/services/ai/schemas/retrieveService.ts
2024-05-02 13:52:15 +03:00

10 lines
220 B
TypeScript

import { z } from 'zod';
export const retrieveServiceSchema = z.object({
id: z
.string()
.describe(
'The id of the service, has to match the `id` of one of the entries in the CSV file or empty string',
),
});