/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The direction in which to sort the results */ export const SortDirection = { Asc: "asc", Desc: "desc", } as const; /** * The direction in which to sort the results */ export type SortDirection = ClosedEnum; /** @internal */ export const SortDirection$inboundSchema: z.ZodNativeEnum< typeof SortDirection > = z.nativeEnum(SortDirection); /** @internal */ export const SortDirection$outboundSchema: z.ZodNativeEnum< typeof SortDirection > = SortDirection$inboundSchema; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace SortDirection$ { /** @deprecated use `SortDirection$inboundSchema` instead. */ export const inboundSchema = SortDirection$inboundSchema; /** @deprecated use `SortDirection$outboundSchema` instead. */ export const outboundSchema = SortDirection$outboundSchema; }