Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2023-04-30 00:26:42 +00:00
parent e5720459cd
commit 93694b9996
2 changed files with 7 additions and 3 deletions
@@ -1005,6 +1005,7 @@ public interface RepositoryApi {
* (optional)
* @param page page number of results to return (1-based) (optional)
* @param limit page size of results (ignored if used with 'path') (optional)
* @param not commits that match the given specifier will not be listed. (optional)
* @return Call<List<Commit>>
*/
@GET("repos/{owner}/{repo}/commits")
@@ -1015,7 +1016,8 @@ public interface RepositoryApi {
@retrofit2.http.Query("path") String path,
@retrofit2.http.Query("stat") Boolean stat,
@retrofit2.http.Query("page") Integer page,
@retrofit2.http.Query("limit") Integer limit);
@retrofit2.http.Query("limit") Integer limit,
@retrofit2.http.Query("not") String not);
/**
* Get an archive of a repository