# for symmetry
def get_feeds(..., new: Optional[bool] = None)
def get_feed_counts(..., new: Optional[bool] = None)
# convenience property
class Feed:
...
new: bool
# for compatibility, we'll have to keep also new_only around until 2.0;
# we should also make the arguments kw-only then
# def update_feeds(..., new_only: bool = False)
def update_feeds(..., new: Optional[bool] = None)
def update_feeds_iter(..., new: Optional[bool] = None)
Needed for the
reader update
progress bar; https://github.com/lemon24/reader/issues/204#issuecomment-780541740.Types look as follows: