@@ -254,8 +254,12 @@ async function run(oaFile, options) {
254
254
// Apply OpenAPI overlay actions
255
255
if ( options . overlaySet ) {
256
256
const resOverlay = await openapiFormat . openapiOverlay ( resObj , options ) ;
257
- if ( resOverlay ?. resultData &&
258
- ( resOverlay . resultData . unusedActions || resOverlay . resultData . appliedActions || resOverlay . resultData . totalActions ) ) {
257
+ if (
258
+ resOverlay ?. resultData &&
259
+ ( resOverlay . resultData . unusedActions ||
260
+ resOverlay . resultData . totalUsedActions ||
261
+ resOverlay . resultData . totalActions )
262
+ ) {
259
263
cliLog . unusedActions = resOverlay . resultData . unusedActions || [ ] ;
260
264
cliLog . totalUsedActions = resOverlay . resultData . totalUsedActions || 0 ;
261
265
cliLog . totalUnusedActions = resOverlay . resultData . totalUnusedActions || 0 ;
@@ -358,7 +362,7 @@ async function run(oaFile, options) {
358
362
}
359
363
360
364
// Show unused components
361
- if ( options . overlaySet && ( cliLog ?. totalActions || cliLog ?. appliedActions || cliLog ?. unusedActions ) ) {
365
+ if ( options . overlaySet && ( cliLog ?. totalActions || cliLog ?. totalUsedActions || cliLog ?. unusedActions ) ) {
362
366
// Log summary of actions
363
367
logOut ( `${ consoleLine } ` , options . verbose ) ; // LOG - horizontal rule
364
368
logOut ( `OpenAPI Overlay actions summary:` , options . verbose ) ;
@@ -369,7 +373,9 @@ async function run(oaFile, options) {
369
373
const cliOut = [ ] ;
370
374
cliLog . unusedActions . forEach ( action => {
371
375
const description = action . description || 'No description provided' ;
372
- cliOut . push ( `- Target: ${ action . target } \n Type: ${ action . update ? 'update' : action . remove ? 'remove' : 'unknown' } ` ) ;
376
+ cliOut . push (
377
+ `- Target: ${ action . target } \n Type: ${ action . update ? 'update' : action . remove ? 'remove' : 'unknown' } `
378
+ ) ;
373
379
} ) ;
374
380
375
381
if ( cliLog . unusedActions . length > 0 ) {
0 commit comments