-
Notifications
You must be signed in to change notification settings - Fork 3
Fix daemon mode prompting, remove API call causing error #42
Conversation
Signed-off-by: Andrew W. Harn <[email protected]>
Codecov Report
@@ Coverage Diff @@
## next #42 +/- ##
==========================================
- Coverage 91.84% 91.82% -0.02%
==========================================
Files 41 41
Lines 417 416 -1
Branches 29 28 -1
==========================================
- Hits 383 382 -1
Misses 32 32
Partials 2 2
Continue to review full report at Codecov.
|
Signed-off-by: Andrew W. Harn <[email protected]>
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
* | ||
* @returns {Promise<IIMSApiResponse>} The response from the underlying ims api call. | ||
*/ | ||
public abstract async processWithSession( | ||
commandParameters: IHandlerParameters, | ||
session: ImsSession, | ||
imsProfile: IProfile | ||
session: ImsSession | ||
): Promise<IIMSApiResponse>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I initially thought this could've been a breaking change but since we do not export anything on the src/cli
folder, we are fine 😋
Still good to do as part of vNext though since it's kind of a big change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Boy, we really passed the "profile" parameter around a lot, to never use it. Thanks for cleaning this up.
Signed-off-by: Andrew W. Harn [email protected]