mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const generateCurlSchema = z.object({
|
|
curl: z
|
|
.string()
|
|
.describe('The curl command that the user could run to call the endpoint they described.'),
|
|
});
|