File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1+ - Enable apphosting:rollouts: create command. (#8031 )
12- Added default value for ` emulators.dataconnect.dataDir ` to ` init dataconnect ` .
23- Fixed issue where expired auth tokens would not refresh when running on IDX.
34- Fixed an issue where ` firebase ` would error out instead of displaying help text.
Original file line number Diff line number Diff line change @@ -177,6 +177,8 @@ export function load(client: any): any {
177177 client . apphosting . secrets . grantaccess = loadCommand ( "apphosting-secrets-grantaccess" ) ;
178178 client . apphosting . secrets . describe = loadCommand ( "apphosting-secrets-describe" ) ;
179179 client . apphosting . secrets . access = loadCommand ( "apphosting-secrets-access" ) ;
180+ client . apphosting . rollouts = { } ;
181+ client . apphosting . rollouts . create = loadCommand ( "apphosting-rollouts-create" ) ;
180182 client . apphosting . config = { } ;
181183 client . apphosting . config . export = loadCommand ( "apphosting-config-export" ) ;
182184 if ( experiments . isEnabled ( "internaltesting" ) ) {
@@ -185,8 +187,6 @@ export function load(client: any): any {
185187 client . apphosting . builds . create = loadCommand ( "apphosting-builds-create" ) ;
186188 client . apphosting . repos = { } ;
187189 client . apphosting . repos . create = loadCommand ( "apphosting-repos-create" ) ;
188- client . apphosting . rollouts = { } ;
189- client . apphosting . rollouts . create = loadCommand ( "apphosting-rollouts-create" ) ;
190190 client . apphosting . rollouts . list = loadCommand ( "apphosting-rollouts-list" ) ;
191191 }
192192 }
You can’t perform that action at this time.
0 commit comments