From f920288a0d17e343244b0e7a778ac34b8cb4c27c 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 62995a15f77..25e5dbf2924 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)]