/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: f2b4ff3383fc */ import * as z from "zod/v4"; export type RefreshDomainGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type RefreshDomainRequest = { /** * Unique identifier for the domain. */ id: string; }; /** @internal */ export type RefreshDomainRequest$Outbound = { id: string; }; /** @internal */ export const RefreshDomainRequest$outboundSchema: z.ZodType< RefreshDomainRequest$Outbound, RefreshDomainRequest > = z.object({ id: z.string(), }); export function refreshDomainRequestToJSON( refreshDomainRequest: RefreshDomainRequest, ): string { return JSON.stringify( RefreshDomainRequest$outboundSchema.parse(refreshDomainRequest), ); }