-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds "m365 spe container list" command. Closes #6082 #6412
Conversation
Thank you, well try to review it ASAP! |
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.
@nanddeepn Awesome work so far 👏👏👏👏
I added only a few minor comments we should sort out and we will be ready to merge 🚀
You Rock 🤩
src/utils/spo.ts
Outdated
const response: ClientSvcResponseContents = json[0]; | ||
|
||
if (response.ErrorInfo) { | ||
throw response.ErrorInfo.ErrorMessage; |
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.
from util we should rather wrap it with Error
throw response.ErrorInfo.ErrorMessage; | |
throw new Error(response.ErrorInfo.ErrorMessage); |
@nanddeepn I added the |
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.
@nanddeepn Awesome work 👏👏👏👏
I played with it a bit and it works really good
ready to merge 🚀 |
Merged manually. Awesome work 👏. You Rock 🤩 |
Adds
m365 spe container list
command. Closes #6082