/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const ShippingCarrier = { Amazon: "amazon", Bpost: "bpost", Brt: "brt", CanadaPost: "canada_post", CeskaPosta: "ceska_posta", Dhl: "dhl", Doordash: "doordash", Dpd: "dpd", Evri: "evri", Fedex: "fedex", Gls: "gls", Inpost: "inpost", JtExpress: "jt_express", LandmarkGlobal: "landmark_global", Lasership: "lasership", Packeta: "packeta", Ppl: "ppl", Purolator: "purolator", RrDonnelley: "rr_donnelley", Sda: "sda", Ups: "ups", Usps: "usps", Veho: "veho", Other: "other", } as const; export type ShippingCarrier = OpenEnum; /** @internal */ export const ShippingCarrier$inboundSchema: z.ZodType< ShippingCarrier, z.ZodTypeDef, unknown > = openEnums.inboundSchema(ShippingCarrier); /** @internal */ export const ShippingCarrier$outboundSchema: z.ZodType< string, z.ZodTypeDef, ShippingCarrier > = openEnums.outboundSchema(ShippingCarrier);