/* * 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 AggregationFunction = { Count: "count", Sum: "sum", Max: "max", Min: "min", Avg: "avg", Unique: "unique", } as const; export type AggregationFunction = ClosedEnum; /** @internal */ export const AggregationFunction$outboundSchema: z.ZodMiniEnum< typeof AggregationFunction > = z.enum(AggregationFunction);