This will decrease the page number by one:
\addtocounter{page}{-1}
This will suppress the page number on the current page: (which you can leave if the page number is not currently displayed)
\thispagestyle{empty}
So you can put together your own macro (I call it \mypart, but call it whatever) to do all three things at once:
\newcommand{\mypart}[1]{\part{
source
share