diff --git a/docs/IssueApi.md b/docs/IssueApi.md index cd4deda..01572a0 100644 --- a/docs/IssueApi.md +++ b/docs/IssueApi.md @@ -5670,7 +5670,7 @@ Name | Type | Description | Notes # **issueSearchIssues** -> List<Issue> issueSearchIssues(state, labels, milestones, q, type, since, before, assigned, created, mentioned, reviewRequested, reviewed, owner, team, page, limit) +> List<Issue> issueSearchIssues(state, labels, milestones, q, type, since, before, assigned, created, mentioned, reviewRequested, reviewed, owner, createdBy, team, page, limit) Search for issues across the repositories that the user has access to @@ -5739,11 +5739,12 @@ Boolean mentioned = false; // Boolean | Filter issues or pulls mentioning the au Boolean reviewRequested = false; // Boolean | Filter pull requests where the authenticated user's review was requested Boolean reviewed = false; // Boolean | Filter pull requests reviewed by the authenticated user String owner = "owner_example"; // String | Filter by repository owner +String createdBy = "createdBy_example"; // String | Only show items which were created by the given user String team = "team_example"; // String | Filter by team (requires organization owner parameter) Integer page = 1; // Integer | Page number of results to return (1-based) Integer limit = 56; // Integer | Number of items per page try { - List result = apiInstance.issueSearchIssues(state, labels, milestones, q, type, since, before, assigned, created, mentioned, reviewRequested, reviewed, owner, team, page, limit); + List result = apiInstance.issueSearchIssues(state, labels, milestones, q, type, since, before, assigned, created, mentioned, reviewRequested, reviewed, owner, createdBy, team, page, limit); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling IssueApi#issueSearchIssues"); @@ -5768,6 +5769,7 @@ Name | Type | Description | Notes **reviewRequested** | **Boolean**| Filter pull requests where the authenticated user's review was requested | [optional] [default to false] **reviewed** | **Boolean**| Filter pull requests reviewed by the authenticated user | [optional] [default to false] **owner** | **String**| Filter by repository owner | [optional] + **createdBy** | **String**| Only show items which were created by the given user | [optional] **team** | **String**| Filter by team (requires organization owner parameter) | [optional] **page** | **Integer**| Page number of results to return (1-based) | [optional] [default to 1] [enum: ] **limit** | **Integer**| Number of items per page | [optional] [enum: ] diff --git a/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java b/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java index fd11a48..ba4e3d1 100644 --- a/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java +++ b/src/main/java/org/gitnex/tea4j/v2/apis/IssueApi.java @@ -1072,6 +1072,7 @@ public interface IssueApi { * @param reviewed Filter pull requests reviewed by the authenticated user (optional, default to * false) * @param owner Filter by repository owner (optional) + * @param createdBy Only show items which were created by the given user (optional) * @param team Filter by team (requires organization owner parameter) (optional) * @param page Page number of results to return (1-based) (optional, default to 1) * @param limit Number of items per page (optional) @@ -1092,6 +1093,7 @@ public interface IssueApi { @retrofit2.http.Query("review_requested") Boolean reviewRequested, @retrofit2.http.Query("reviewed") Boolean reviewed, @retrofit2.http.Query("owner") String owner, + @retrofit2.http.Query("created_by") String createdBy, @retrofit2.http.Query("team") String team, @retrofit2.http.Query("page") Integer page, @retrofit2.http.Query("limit") Integer limit);