From fe3d1d403f3ce842b78c084ffd2aa359d90291bf Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Tue, 20 Feb 2024 23:17:44 +0100 Subject: [PATCH] feat(backend-api): Add download_url to PackageDistribution Needed for the integration tests. --- lib/backend-api/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/backend-api/src/types.rs b/lib/backend-api/src/types.rs index 802b2c0be82..1d9a1d99d2e 100644 --- a/lib/backend-api/src/types.rs +++ b/lib/backend-api/src/types.rs @@ -70,6 +70,7 @@ mod queries { pub struct PackageDistribution { pub pirita_sha256_hash: Option, pub pirita_download_url: Option, + pub download_url: Option, } #[derive(cynic::QueryFragment, Debug, Clone)]