@@ -257,7 +257,8 @@ async function run(oaFile, options) {
257
257
if ( resOverlay ?. resultData &&
258
258
( resOverlay . resultData . unusedActions || resOverlay . resultData . appliedActions || resOverlay . resultData . totalActions ) ) {
259
259
cliLog . unusedActions = resOverlay . resultData . unusedActions || [ ] ;
260
- cliLog . appliedActions = resOverlay . resultData . appliedActions || 0 ;
260
+ cliLog . totalUsedActions = resOverlay . resultData . totalUsedActions || 0 ;
261
+ cliLog . totalUnusedActions = resOverlay . resultData . totalUnusedActions || 0 ;
261
262
cliLog . totalActions = resOverlay . resultData . totalActions || 0 ;
262
263
}
263
264
resObj = resOverlay . data ;
@@ -362,12 +363,13 @@ async function run(oaFile, options) {
362
363
logOut ( `${ consoleLine } ` , options . verbose ) ; // LOG - horizontal rule
363
364
logOut ( `OpenAPI Overlay actions summary:` , options . verbose ) ;
364
365
logOut ( `- Total actions: \t${ cliLog . totalActions } ` , options . verbose ) ;
365
- logOut ( `- Applied actions: \t${ cliLog . appliedActions } ` , options . verbose ) ;
366
+ logOut ( `- Applied actions: \t${ cliLog . totalUsedActions } ` , options . verbose ) ;
367
+ logOut ( `- Unused actions: \t${ cliLog . totalUnusedActions } ` , options . verbose ) ;
366
368
367
369
const cliOut = [ ] ;
368
370
cliLog . unusedActions . forEach ( action => {
369
371
const description = action . description || 'No description provided' ;
370
- cliOut . push ( `- Target: ${ action . target } \n Description : ${ description } ` ) ;
372
+ cliOut . push ( `- Target: ${ action . target } \n Type : ${ action . update ? 'update' : action . remove ? 'remove' : 'unknown' } ` ) ;
371
373
} ) ;
372
374
373
375
if ( cliLog . unusedActions . length > 0 ) {
0 commit comments