/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 839e566eb29c */ import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export const Granularity = { Auto: "auto", Second: "second", Minute: "minute", Hour: "hour", Day: "day", Week: "week", Month: "month", } as const; export type Granularity = ClosedEnum; /** @internal */ export const Granularity$outboundSchema: z.ZodEnum = z.enum( Granularity, );