@forge/cli

12.9.0-next.18-experimental-f76634b12.9.0-next.23
out/command-line/dependency-injection.js
~out/command-line/dependency-injection.jsModified
+7−1
Index: package/out/command-line/dependency-injection.js
===================================================================
--- package/out/command-line/dependency-injection.js
+++ package/out/command-line/dependency-injection.js
@@ -38,11 +38,13 @@
 const resources_uploader_service_1 = require("../service/resources-uploader-service");
 const tunnel_service_1 = require("../service/tunnel-service");
 const migration_keys_service_1 = require("../service/migration-keys-service");
 const custom_entities_service_1 = require("../service/custom-entities-service");
+const extensions_service_1 = require("../service/extensions-service");
 const local_file_storage_1 = require("../storage/local-file-storage");
 const get_webtrigger_url_1 = require("../webtrigger/get-webtrigger-url");
 const list_webtrigger_urls_1 = require("../webtrigger/list-webtrigger-urls");
+const delete_webtrigger_url_1 = require("../webtrigger/delete-webtrigger-url");
 const worker_info_1 = require("../workers/worker-info");
 const workers_starter_1 = require("../workers/workers-starter");
 const command_1 = require("./command");
 const autocomplete_controller_1 = require("./controller/autocomplete-controller");
@@ -159,8 +161,9 @@
     const listEntitiesIndexesCommand = new list_indexes_1.ListEntitiesIndexesCommand(customEntitiesService);
     const bitbucketTranslation = new site_translation_1.BitbucketTranslator();
     const cloudProductTranslation = new site_translation_1.SitedProductTranslator(graphQLClient);
     const installationsClient = new graphql_client_6.InstallationsGraphqlClient(graphQLClient, cloudProductTranslation, bitbucketTranslation, cli_shared_1.pause);
+    const extensionsService = new extensions_service_1.ExtensionsService(assertiveAppConfigReader, appEnvironmentClient, graphQLClient, installationsClient);
     const installAppSiteCommand = new install_app_site_1.InstallAppSiteCommand(assertiveAppConfigReader, installationsClient);
     const uninstallAppCommand = new uninstall_app_1.UninstallAppCommand(assertiveAppConfigReader, installationsClient);
     const deployMonitorClient = new deploy_1.DeployMonitorGraphqlClient(graphQLClient);
     const webTriggerGraphqlClient = new graphql_client_7.WebTriggerGraphQLClient(graphQLClient);
@@ -174,8 +177,9 @@
     const nativeUiBundler = new bundler_1.NativeUIBundler(ui);
     const appPackager = new deploy_1.AppPackager(runtimeBundler, nativeUiBundler, ui, analyticsClientReporter);
     const getWebTriggerURLCommand = new get_webtrigger_url_1.GetWebTriggerURLCommand(assertiveAppConfigReader, installationsClient, appEnvironmentClient, webTriggerGraphqlClient);
     const listWebTriggerURLCommand = new list_webtrigger_urls_1.ListWebTriggerURLsCommand(assertiveAppConfigReader, installationsClient, appEnvironmentClient, webTriggerGraphqlClient);
+    const deleteWebTriggerURLCommand = new delete_webtrigger_url_1.DeleteWebTriggerURLCommand(webTriggerGraphqlClient);
     const autocompleteController = new autocomplete_controller_1.AutocompleteController(ui);
     const installationsService = new installation_service_1.InstallationService(assertiveAppConfigReader, installationsClient, installationsClient, installationsClient, installationsClient, installationsClient);
     const deploymentsClient = new deployments_graphql_client_1.DeploymentsGraphqlClient(graphQLClient);
     const deploymentsService = new deployment_service_1.DeploymentService(assertiveAppConfigReader, deploymentsClient);
@@ -239,8 +243,9 @@
             deleteEnvironmentCommand,
             viewAppLogsCommand,
             getWebTriggerURLCommand,
             listWebTriggerURLCommand,
+            deleteWebTriggerURLCommand,
             listEntitiesIndexesCommand,
             containerCommand
         },
         services: {
@@ -251,9 +256,10 @@
             credentialStore,
             userRepository,
             supportedProductsService,
             devSpaceService,
-            statsigService
+            statsigService,
+            extensionsService
         },
         controllers: {
             autocompleteController,
             deployController,