/* * 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 ProductSortProperty = { CreatedAt: "created_at", MinusCreatedAt: "-created_at", Name: "name", MinusName: "-name", PriceAmountType: "price_amount_type", MinusPriceAmountType: "-price_amount_type", PriceAmount: "price_amount", MinusPriceAmount: "-price_amount", } as const; export type ProductSortProperty = ClosedEnum; /** @internal */ export const ProductSortProperty$outboundSchema: z.ZodMiniEnum< typeof ProductSortProperty > = z.enum(ProductSortProperty);