/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export const TimeInterval = { Year: "year", Month: "month", Week: "week", Day: "day", Hour: "hour", } as const; export type TimeInterval = ClosedEnum; /** @internal */ export const TimeInterval$outboundSchema: z.ZodMiniEnum = z .enum(TimeInterval);