Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2026-02-27 00:02:12 +00:00
parent f61298d6c1
commit 7aeb345a00
2 changed files with 6 additions and 2 deletions
+4 -2
View File
@@ -5670,7 +5670,7 @@ Name | Type | Description | Notes
<a name="issueSearchIssues"></a>
# **issueSearchIssues**
> List&lt;Issue&gt; issueSearchIssues(state, labels, milestones, q, type, since, before, assigned, created, mentioned, reviewRequested, reviewed, owner, team, page, limit)
> List&lt;Issue&gt; 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<Issue> result = apiInstance.issueSearchIssues(state, labels, milestones, q, type, since, before, assigned, created, mentioned, reviewRequested, reviewed, owner, team, page, limit);
List<Issue> 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&#x27;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: ]
@@ -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);