add support for free/paid in module, theme, translation installation

This commit is contained in:
Shaun Walker
2021-08-13 15:56:22 -04:00
parent b19cbf54e0
commit ffe724b32d
9 changed files with 177 additions and 35 deletions

View File

@ -7,7 +7,7 @@ namespace Oqtane.Services
public interface IPackageService
{
Task<List<Package>> GetPackagesAsync(string type);
Task<List<Package>> GetPackagesAsync(string type, string search);
Task<List<Package>> GetPackagesAsync(string type, string search, string price);
Task<Package> GetPackageAsync(string packageId, string version);
Task DownloadPackageAsync(string packageId, string version, string folder);
Task InstallPackagesAsync();