import { BundledScripts } from "./function-registry-types.mjs"; import "../../services/application.mjs"; import "../../shared/client.mjs"; import "./types.mjs"; import "./apply-phases.mjs"; import "./deployment-target.mjs"; import "./event-subscriptions.mjs"; //#region src/cli/commands/deploy/deploy.d.ts export interface DeployOptions { workspaceId?: string; profile?: string; configPath?: string; dryRun?: boolean; yes?: boolean; noSchemaCheck?: boolean; noValidate?: boolean; noCache?: boolean; cleanCache?: boolean; createWorkspace?: boolean; workspaceName?: string; workspaceRegion?: string; organizationId?: string; folderId?: string; buildOnly?: boolean; } /** * Deploy using the programmatic CLI API. * @param options - Deploy execution options * @returns Deploy result */ export declare function deploy(options?: DeployOptions): Promise<{ bundledScripts: BundledScripts; } | undefined>; //#endregion