/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: deee30ce5d4f */ import * as z from "zod/v4"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const MetricAggregation = { Count: "count", CountDistinct: "count_distinct", Sum: "sum", Avg: "avg", Min: "min", Max: "max", P50: "p50", P90: "p90", P95: "p95", P99: "p99", } as const; export type MetricAggregation = OpenEnum; /** @internal */ export const MetricAggregation$inboundSchema: z.ZodType< MetricAggregation, unknown > = openEnums.inboundSchema(MetricAggregation); /** @internal */ export const MetricAggregation$outboundSchema: z.ZodType< string, MetricAggregation > = openEnums.outboundSchema(MetricAggregation);