declare const DeploymentVerificationDetailsQuery = "\n query DeploymentVerificationDetails($deploymentId: ID!) {\n deploymentVerificationDetails(id: $deploymentId) {\n url\n status\n error\n startupTime\n }\n }\n"; interface DeploymentVerificationDetailsQueryData { deploymentVerificationDetails: DeploymentVerificationDetailsResponse | null; } interface DeploymentVerificationDetailsResponse { url: string; status: string; error?: string; startupTime?: number; } declare enum Status { Pending = "PENDING", Deployed = "DEPLOYED", Failed = "FAILED", Cancelled = "CANCELLED" } export { DeploymentVerificationDetailsQuery, type DeploymentVerificationDetailsQueryData, type DeploymentVerificationDetailsResponse, Status };