import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DeploymentLocation } from "./deploymentlocation.js"; export type DeploymentWorkerResponse = { /** * Worker name */ name: string; /** * When the worker first registered */ createdAt: Date; /** * When the worker last registered */ updatedAt: Date; /** * Whether this worker's liveness key is currently alive */ isActive: boolean; /** * Where the worker is running; null if the worker did not report a location */ location?: DeploymentLocation | null | undefined; }; /** @internal */ export declare const DeploymentWorkerResponse$inboundSchema: z.ZodType; export declare function deploymentWorkerResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deploymentworkerresponse.d.ts.map