@@ -18,7 +18,7 @@ import (
1818 dashboardItem "github.com/fastly/cli/pkg/commands/dashboard/item"
1919 "github.com/fastly/cli/pkg/commands/dictionary"
2020 "github.com/fastly/cli/pkg/commands/dictionaryentry"
21- "github.com/fastly/cli/pkg/commands/domainv1 "
21+ "github.com/fastly/cli/pkg/commands/domain "
2222 "github.com/fastly/cli/pkg/commands/healthcheck"
2323 "github.com/fastly/cli/pkg/commands/imageoptimizerdefaults"
2424 "github.com/fastly/cli/pkg/commands/install"
@@ -93,7 +93,7 @@ import (
9393 "github.com/fastly/cli/pkg/commands/secretstore"
9494 "github.com/fastly/cli/pkg/commands/secretstoreentry"
9595 "github.com/fastly/cli/pkg/commands/service"
96- "github.com/fastly/cli/pkg/commands/service/domain"
96+ servicedomain "github.com/fastly/cli/pkg/commands/service/domain"
9797 "github.com/fastly/cli/pkg/commands/serviceauth"
9898 "github.com/fastly/cli/pkg/commands/serviceversion"
9999 "github.com/fastly/cli/pkg/commands/shellcomplete"
@@ -221,12 +221,12 @@ func Define( // nolint:revive // function-length
221221 dictionaryEntryUpdate := dictionaryentry .NewUpdateCommand (dictionaryEntryCmdRoot .CmdClause , data )
222222 dictionaryList := dictionary .NewListCommand (dictionaryCmdRoot .CmdClause , data )
223223 dictionaryUpdate := dictionary .NewUpdateCommand (dictionaryCmdRoot .CmdClause , data )
224- domainv1CmdRoot := domainv1 .NewRootCommand (app , data )
225- domainv1Create := domainv1 .NewCreateCommand (domainv1CmdRoot .CmdClause , data )
226- domainv1Delete := domainv1 .NewDeleteCommand (domainv1CmdRoot .CmdClause , data )
227- domainv1Describe := domainv1 .NewDescribeCommand (domainv1CmdRoot .CmdClause , data )
228- domainv1List := domainv1 .NewListCommand (domainv1CmdRoot .CmdClause , data )
229- domainv1Update := domainv1 .NewUpdateCommand (domainv1CmdRoot .CmdClause , data )
224+ domainCmdRoot := domain .NewRootCommand (app , data )
225+ domainCreate := domain .NewCreateCommand (domainCmdRoot .CmdClause , data )
226+ domainDelete := domain .NewDeleteCommand (domainCmdRoot .CmdClause , data )
227+ domainDescribe := domain .NewDescribeCommand (domainCmdRoot .CmdClause , data )
228+ domainList := domain .NewListCommand (domainCmdRoot .CmdClause , data )
229+ domainUpdate := domain .NewUpdateCommand (domainCmdRoot .CmdClause , data )
230230 healthcheckCmdRoot := healthcheck .NewRootCommand (app , data )
231231 healthcheckCreate := healthcheck .NewCreateCommand (healthcheckCmdRoot .CmdClause , data )
232232 healthcheckDelete := healthcheck .NewDeleteCommand (healthcheckCmdRoot .CmdClause , data )
@@ -631,13 +631,13 @@ func Define( // nolint:revive // function-length
631631 serviceVersionStage := serviceversion .NewStageCommand (serviceVersionCmdRoot .CmdClause , data )
632632 serviceVersionUnstage := serviceversion .NewUnstageCommand (serviceVersionCmdRoot .CmdClause , data )
633633 serviceVersionUpdate := serviceversion .NewUpdateCommand (serviceVersionCmdRoot .CmdClause , data )
634- servicedomainCmdRoot := domain .NewRootCommand (serviceCmdRoot .CmdClause , data )
635- servicedomainCreate := domain .NewCreateCommand (servicedomainCmdRoot .CmdClause , data )
636- servicedomainDelete := domain .NewDeleteCommand (servicedomainCmdRoot .CmdClause , data )
637- servicedomainDescribe := domain .NewDescribeCommand (servicedomainCmdRoot .CmdClause , data )
638- servicedomainList := domain .NewListCommand (servicedomainCmdRoot .CmdClause , data )
639- servicedomainUpdate := domain .NewUpdateCommand (servicedomainCmdRoot .CmdClause , data )
640- servicedomainValidate := domain .NewValidateCommand (servicedomainCmdRoot .CmdClause , data )
634+ servicedomainCmdRoot := servicedomain .NewRootCommand (serviceCmdRoot .CmdClause , data )
635+ servicedomainCreate := servicedomain .NewCreateCommand (servicedomainCmdRoot .CmdClause , data )
636+ servicedomainDelete := servicedomain .NewDeleteCommand (servicedomainCmdRoot .CmdClause , data )
637+ servicedomainDescribe := servicedomain .NewDescribeCommand (servicedomainCmdRoot .CmdClause , data )
638+ servicedomainList := servicedomain .NewListCommand (servicedomainCmdRoot .CmdClause , data )
639+ servicedomainUpdate := servicedomain .NewUpdateCommand (servicedomainCmdRoot .CmdClause , data )
640+ servicedomainValidate := servicedomain .NewValidateCommand (servicedomainCmdRoot .CmdClause , data )
641641 statsCmdRoot := stats .NewRootCommand (app , data )
642642 statsHistorical := stats .NewHistoricalCommand (statsCmdRoot .CmdClause , data )
643643 statsRealtime := stats .NewRealtimeCommand (statsCmdRoot .CmdClause , data )
@@ -799,12 +799,12 @@ func Define( // nolint:revive // function-length
799799 dictionaryEntryUpdate ,
800800 dictionaryList ,
801801 dictionaryUpdate ,
802- domainv1CmdRoot ,
803- domainv1Create ,
804- domainv1Delete ,
805- domainv1Describe ,
806- domainv1List ,
807- domainv1Update ,
802+ domainCmdRoot ,
803+ domainCreate ,
804+ domainDelete ,
805+ domainDescribe ,
806+ domainList ,
807+ domainUpdate ,
808808 healthcheckCmdRoot ,
809809 healthcheckCreate ,
810810 healthcheckDelete ,
0 commit comments