diff --git a/custom/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java b/custom/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java index ac4e4f4..c2b88fc 100644 --- a/custom/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java +++ b/custom/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java @@ -98,4 +98,37 @@ public interface CustomApi { @Headers({"Content-Type:application/json"}) @HTTP(method = "DELETE", path = "user/emails", hasBody = true) Call userDeleteEmailWithBody(@Body DeleteEmailOption body); + + /** + * Get a file from a repository + * + * @param owner owner of the repo (required) + * @param repo name of the repo (required) + * @param filepath filepath of the file to get (required) + * @param ref The name of the commit/branch/tag. Default the repository’s default branch (usually + * master) (optional) + * @return Call<Void> + */ + @GET("repos/{owner}/{repo}/raw/{filepath}") + Call repoGetRawFile( + @retrofit2.http.Path("owner") String owner, + @retrofit2.http.Path("repo") String repo, + @retrofit2.http.Path("filepath") String filepath, + @retrofit2.http.Query("ref") String ref); + /** + * Get a file or it's LFS object from a repository + * + * @param owner owner of the repo (required) + * @param repo name of the repo (required) + * @param filepath filepath of the file to get (required) + * @param ref The name of the commit/branch/tag. Default the repository’s default branch (usually + * master) (optional) + * @return Call<Void> + */ + @GET("repos/{owner}/{repo}/media/{filepath}") + Call repoGetRawFileOrLFS( + @retrofit2.http.Path("owner") String owner, + @retrofit2.http.Path("repo") String repo, + @retrofit2.http.Path("filepath") String filepath, + @retrofit2.http.Query("ref") String ref); }