exerciseTemplateSchema.ts•675 B
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { z } from 'zod'
export const exerciseTemplateSchema = z.object({
id: z.string().describe('The exercise template ID.').optional(),
title: z.string().describe('The exercise title.').optional(),
type: z.string().describe('The exercise type.').optional(),
primary_muscle_group: z.string().describe('The primary muscle group of the exercise.').optional(),
secondary_muscle_groups: z.array(z.string()).describe('The secondary muscle groups of the exercise.').optional(),
is_custom: z.boolean().describe('A boolean indicating whether the exercise is a custom exercise.').optional(),
})