Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2026-04-06 00:02:01 +00:00
parent 8946457151
commit 356be496be
2 changed files with 111 additions and 5 deletions
@@ -14,11 +14,25 @@ public interface PackageApi {
* @param owner owner of the package (required)
* @param type type of the package (required)
* @param name name of the package (required)
* @return Call<Void>
*/
@DELETE("packages/{owner}/{type}/{name}")
Call<Void> deletePackage(
@retrofit2.http.Path("owner") String owner,
@retrofit2.http.Path("type") String type,
@retrofit2.http.Path("name") String name);
/**
* Delete a package version
*
* @param owner owner of the package (required)
* @param type type of the package (required)
* @param name name of the package (required)
* @param version version of the package (required)
* @return Call&lt;Void&gt;
*/
@DELETE("packages/{owner}/{type}/{name}/{version}")
Call<Void> deletePackage(
Call<Void> deletePackageVersion(
@retrofit2.http.Path("owner") String owner,
@retrofit2.http.Path("type") String type,
@retrofit2.http.Path("name") String name,