/* * 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 Region = { Seattle: "Seattle", LosAngeles: "Los_Angeles", WashingtonDC: "Washington_DC", Chicago: "Chicago", London: "London", Frankfurt: "Frankfurt", Mumbai: "Mumbai", Singapore: "Singapore", Tokyo: "Tokyo", Sydney: "Sydney", SaoPaulo: "Sao_Paulo", Dallas: "Dallas", Johannesburg: "Johannesburg", Dubai: "Dubai", } as const; export type Region = OpenEnum; /** @internal */ export const Region$inboundSchema: z.ZodType = openEnums.inboundSchema(Region); /** @internal */ export const Region$outboundSchema: z.ZodType = openEnums.outboundSchema(Region);