First of all: Many thanks for this project! It was very helpful for me :heart:
I came across a small issue in line 37 of BitbucketCloudClient.cs: The query parameter should be named state instead of q to match the description of the API method:
public async Task<IEnumerable<PullRequest>> GetRepositoryPullRequestsAsync(string workspaceId, string repositorySlug, int? maxPages = null, string state = null)
{
var queryParamValues = new Dictionary<string, object>
{
[nameof(state)] = state
};
...
First of all: Many thanks for this project! It was very helpful for me :heart:
I came across a small issue in line 37 of BitbucketCloudClient.cs: The query parameter should be named
state
instead ofq
to match the description of the API method: