We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As part of completing #760 a number of overloads need to be added to the client interfaces.
As an example, this has been added to IReleasesClientand IObservableReleasesClient.
IReleasesClient
IObservableReleasesClient
The checklist for porting each method is:
IStarredClient
ApiOptions
IObservableStarredClient
This needs to be done for each of these methods:
Task<IReadOnlyList<Repository>> GetAllForCurrent()
Task<IReadOnlyList<Repository>> GetAllForCurrent(StarredRequest request)
Task<IReadOnlyList<RepositoryStar>> GetAllForCurrentWithTimestamps()
Task<IReadOnlyList<RepositoryStar>> GetAllForCurrentWithTimestamps(StarredRequest request)
Task<IReadOnlyList<Repository>> GetAllForUser(String user)
Task<IReadOnlyList<Repository>> GetAllForUser(String user, StarredRequest request)
Task<IReadOnlyList<RepositoryStar>> GetAllForUserWithTimestamps(String user)
Task<IReadOnlyList<RepositoryStar>> GetAllForUserWithTimestamps(String user, StarredRequest request)
Task<IReadOnlyList<User>> GetAllStargazers(String owner, String name)
Task<IReadOnlyList<UserStar>> GetAllStargazersWithTimestamps(String owner, String name)
The text was updated successfully, but these errors were encountered:
This was fixed in #1336
Sorry, something went wrong.
No branches or pull requests
As part of completing #760 a number of overloads need to be added to the client interfaces.
As an example, this has been added to
IReleasesClient
andIObservableReleasesClient
.The checklist for porting each method is:
IStarredClient
with a new parameterApiOptions
IStarredClient
IObservableStarredClient
with a new parameterApiOptions
IObservableStarredClient
This needs to be done for each of these methods:
Task<IReadOnlyList<Repository>> GetAllForCurrent()
Task<IReadOnlyList<Repository>> GetAllForCurrent(StarredRequest request)
Task<IReadOnlyList<RepositoryStar>> GetAllForCurrentWithTimestamps()
Task<IReadOnlyList<RepositoryStar>> GetAllForCurrentWithTimestamps(StarredRequest request)
Task<IReadOnlyList<Repository>> GetAllForUser(String user)
Task<IReadOnlyList<Repository>> GetAllForUser(String user, StarredRequest request)
Task<IReadOnlyList<RepositoryStar>> GetAllForUserWithTimestamps(String user)
Task<IReadOnlyList<RepositoryStar>> GetAllForUserWithTimestamps(String user, StarredRequest request)
Task<IReadOnlyList<User>> GetAllStargazers(String owner, String name)
Task<IReadOnlyList<UserStar>> GetAllStargazersWithTimestamps(String owner, String name)
The text was updated successfully, but these errors were encountered: