@forge/cli

12.16.1-next.6-experimental-13a01c212.17.0-next.7
out/command-line/controller/deploy-controller.d.ts
~out/command-line/controller/deploy-controller.d.tsModified
+3−1
Index: package/out/command-line/controller/deploy-controller.d.ts
===================================================================
--- package/out/command-line/controller/deploy-controller.d.ts
+++ package/out/command-line/controller/deploy-controller.d.ts
@@ -7,8 +7,9 @@
 import { DeploymentResult } from '../register-deployment-commands';
 import { CreateEnvironmentCommand } from '../../environment/create-environment';
 import { CustomEntitiesService } from '../../service/custom-entities-service';
 import { RoaService } from '../../service/roa-service';
+import { DevSpaceService } from '../../devspace';
 interface DeployOptions {
     environment: string;
     verify: boolean;
     nonInteractive?: boolean;
@@ -38,9 +39,10 @@
     private readonly appEnvironmentClient;
     private readonly deployView;
     private readonly nodePackageUploadDeployCommand;
     private readonly createEnvironmentCommand;
-    constructor(appConfigProvider: AppConfigProvider, configFile: ConfigFile, lintService: LintService, installationsService: InstallationService, roaService: RoaService, migrationKeysService: MigrationKeysService, customEntitiesService: CustomEntitiesService, appEnvironmentClient: AppEnvironmentClient, deployView: DeployView, nodePackageUploadDeployCommand: PackageUploadDeployCommand, createEnvironmentCommand: CreateEnvironmentCommand);
+    private readonly devSpaceService;
+    constructor(appConfigProvider: AppConfigProvider, configFile: ConfigFile, lintService: LintService, installationsService: InstallationService, roaService: RoaService, migrationKeysService: MigrationKeysService, customEntitiesService: CustomEntitiesService, appEnvironmentClient: AppEnvironmentClient, deployView: DeployView, nodePackageUploadDeployCommand: PackageUploadDeployCommand, createEnvironmentCommand: CreateEnvironmentCommand, devSpaceService: DevSpaceService);
     private isMpacProductionApp;
     private connectKeyDeleted;
     private connectKeyChanged;
     private connectKeyMutatedInProduction;