@@ -6,11 +6,10 @@ import { DeploymentService } from "./deployment.service";
66class Module extends IModule {
77
88 public register ( context : Context , configurator : Configurator ) : void {
9- const deploymentCommand = configurator . command ( "deployment" ) . beta ( )
9+ const deploymentCommand = configurator . command ( "deployment" )
1010 . description ( "Create deployments, list their history, check active deployments, and retrieve deployables and targets" ) ;
1111
1212 deploymentCommand . command ( "create" )
13- . beta ( )
1413 . description ( "Create a new deployment" )
1514 . requiredOption ( "--packageKey <packageKey>" , "Identifier of the package to deploy" )
1615 . requiredOption ( "--packageVersion <packageVersion>" , "Version of the package to deploy" )
@@ -20,10 +19,9 @@ class Module extends IModule {
2019 . action ( this . createDeployment ) ;
2120
2221 const listCommand = deploymentCommand . command ( "list" )
23- . description ( "List deployment history, active deployments, deployables or targets" ) . beta ( ) ;
22+ . description ( "List deployment history, active deployments, deployables or targets" ) ;
2423
2524 listCommand . command ( "history" )
26- . beta ( )
2725 . description ( "List deployment history" )
2826 . option ( "--packageKey <packageKey>" , "Filter deployment history by package key" )
2927 . option ( "--targetId <targetId>" , "Filter deployment history by target ID" )
@@ -36,7 +34,6 @@ class Module extends IModule {
3634 . action ( this . listDeploymentHistory ) ;
3735
3836 listCommand . command ( "active" )
39- . beta ( )
4037 . description ( "Get the active deployment(s) for a given target or package.\n" +
4138 "You can use the command to list the active deployment(s) for a specific target or for a specific package.\n" +
4239 "The targetIds filter is available only for getting the active deployments for a given package. \n" +
@@ -50,14 +47,12 @@ class Module extends IModule {
5047 . action ( this . listActiveDeployments ) ;
5148
5249 listCommand . command ( "deployables" )
53- . beta ( )
5450 . description ( "List all deployables" )
5551 . option ( "--flavor <flavor>" , "Filter deployables by flavor" )
5652 . option ( "--json" , "Return the response as a JSON file" )
5753 . action ( this . listDeployables ) ;
5854
5955 listCommand . command ( "targets" )
60- . beta ( )
6156 . description ( "List all targets for a given deployable type and package key" )
6257 . requiredOption ( "--deployableType <deployableType>" , "The type of the deployable" )
6358 . requiredOption ( "--packageKey <packageKey>" , "Identifier of the package to list targets for" )
0 commit comments