import { PlatformProperties, AgentProperties, Argument, RegistryCredentials } from './index.js'; export type DockerBuildRequest = { dockerFilePath: string; platform: PlatformProperties; type: string; agentConfiguration: AgentProperties; arguments?: Argument[]; credentials?: RegistryCredentials; imageNames?: string[]; isArchiveEnabled?: boolean; isPushEnabled?: boolean; noCache?: boolean; sourceLocation: string; target?: string; timeout?: number; };