Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2026-01-17 00:09:55 +00:00
parent 5f235784ea
commit c6e3e1a5d2
2 changed files with 7 additions and 3 deletions
@@ -1581,13 +1581,15 @@ public interface RepositoryApi {
* @param repo name of the repo (required)
* @param archive the git reference for download with attached archive format (e.g. master.zip)
* (required)
* @param path subpath of the repository to download (optional)
* @return Call<Void>
*/
@GET("repos/{owner}/{repo}/archive/{archive}")
Call<Void> repoGetArchive(
@retrofit2.http.Path("owner") String owner,
@retrofit2.http.Path("repo") String repo,
@retrofit2.http.Path("archive") String archive);
@retrofit2.http.Path("archive") String archive,
@retrofit2.http.Query("path") List<String> path);
/**
* Return all users that have write access and can be assigned to issues