mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
14 lines
254 B
TypeScript
14 lines
254 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const testMetricCreateRequestBodySchema = z
|
|
.object({
|
|
name: z.string().min(1).max(255),
|
|
})
|
|
.strict();
|
|
|
|
export const testMetricPatchRequestBodySchema = z
|
|
.object({
|
|
name: z.string().min(1).max(255),
|
|
})
|
|
.strict();
|