import * as z from "zod/v4"; import { DeploymentRole } from "./deploymentrole.js"; /** * Deployment-scoped configuration */ export type DeploymentScope = { type: "deployment"; /** * ID of the deployment this is scoped to */ deploymentId: string; /** * ID of the project this deployment belongs to */ projectId: string; /** * Role for deployment-scoped service accounts */ role: DeploymentRole; }; /** @internal */ export type DeploymentScope$Outbound = { type: "deployment"; deploymentId: string; projectId: string; role: string; }; /** @internal */ export declare const DeploymentScope$outboundSchema: z.ZodType; export declare function deploymentScopeToJSON(deploymentScope: DeploymentScope): string; //# sourceMappingURL=deploymentscope.d.ts.map