import * as z from "zod/v4"; import { DebugSessionState } from "./debugsessionstate.js"; export type CreateDebugSessionRequest = { /** * Override the generated id. Manager passes the registry session id so logs correlate. */ id?: string | undefined; /** * Unique identifier for the deployment. */ deploymentId: string; owner?: string | null | undefined; expiresAt: Date; state?: DebugSessionState | undefined; }; /** @internal */ export type CreateDebugSessionRequest$Outbound = { id?: string | undefined; deploymentId: string; owner?: string | null | undefined; expiresAt: string; state?: string | undefined; }; /** @internal */ export declare const CreateDebugSessionRequest$outboundSchema: z.ZodType; export declare function createDebugSessionRequestToJSON(createDebugSessionRequest: CreateDebugSessionRequest): string; //# sourceMappingURL=createdebugsessionrequest.d.ts.map