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