mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-06 18:02:16 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -1034,27 +1034,30 @@ public interface IssueApi {
|
||||
/**
|
||||
* Search for issues across the repositories that the user has access to
|
||||
*
|
||||
* @param state whether issue is open or closed (optional)
|
||||
* @param labels comma separated list of labels. Fetch only issues that have any of this labels.
|
||||
* Non existent labels are discarded (optional)
|
||||
* @param milestones comma separated list of milestone names. Fetch only issues that have any of
|
||||
* this milestones. Non existent are discarded (optional)
|
||||
* @param q search string (optional)
|
||||
* @param priorityRepoId repository to prioritize in the results (optional)
|
||||
* @param type filter by type (issues / pulls) if set (optional)
|
||||
* @param since Only show notifications updated after the given time. This is a timestamp in RFC
|
||||
* 3339 format (optional)
|
||||
* @param before Only show notifications updated before the given time. This is a timestamp in RFC
|
||||
* 3339 format (optional)
|
||||
* @param assigned filter (issues / pulls) assigned to you, default is false (optional)
|
||||
* @param created filter (issues / pulls) created by you, default is false (optional)
|
||||
* @param mentioned filter (issues / pulls) mentioning you, default is false (optional)
|
||||
* @param reviewRequested filter pulls requesting your review, default is false (optional)
|
||||
* @param reviewed filter pulls reviewed by you, default is false (optional)
|
||||
* @param owner filter by owner (optional)
|
||||
* @param team filter by team (requires organization owner parameter to be provided) (optional)
|
||||
* @param page page number of results to return (1-based) (optional)
|
||||
* @param limit page size of results (optional)
|
||||
* @param state State of the issue (optional, default to open)
|
||||
* @param labels Comma-separated list of label names. Fetch only issues that have any of these
|
||||
* labels. Non existent labels are discarded. (optional)
|
||||
* @param milestones Comma-separated list of milestone names. Fetch only issues that have any of
|
||||
* these milestones. Non existent milestones are discarded. (optional)
|
||||
* @param q Search string (optional)
|
||||
* @param priorityRepoId Repository ID to prioritize in the results (optional)
|
||||
* @param type Filter by issue type (optional)
|
||||
* @param since Only show issues updated after the given time (RFC 3339 format) (optional)
|
||||
* @param before Only show issues updated before the given time (RFC 3339 format) (optional)
|
||||
* @param assigned Filter issues or pulls assigned to the authenticated user (optional, default to
|
||||
* false)
|
||||
* @param created Filter issues or pulls created by the authenticated user (optional, default to
|
||||
* false)
|
||||
* @param mentioned Filter issues or pulls mentioning the authenticated user (optional, default to
|
||||
* false)
|
||||
* @param reviewRequested Filter pull requests where the authenticated user's review was
|
||||
* requested (optional, default to false)
|
||||
* @param reviewed Filter pull requests reviewed by the authenticated user (optional, default to
|
||||
* false)
|
||||
* @param owner Filter by repository owner (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)
|
||||
* @return Call<List<Issue>>
|
||||
*/
|
||||
@GET("repos/issues/search")
|
||||
|
||||
Reference in New Issue
Block a user