From 8be0611e05da58383388858a77e7dd54f979a67f Mon Sep 17 00:00:00 2001 From: Roman Date: Thu, 30 Nov 2023 15:08:16 +0100 Subject: [PATCH] Add checksums to artifactory search result --- gttools/jfrog_artifactory.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gttools/jfrog_artifactory.go b/gttools/jfrog_artifactory.go index 97b3b17..d18ae4f 100644 --- a/gttools/jfrog_artifactory.go +++ b/gttools/jfrog_artifactory.go @@ -26,6 +26,9 @@ type ArtifactorySearchResultItem struct { Modified time.Time `json:"modified"` Type string `json:"type"` Size int `json:"size"` + Md5 string `json:"actual_md5"` + Sha1 string `json:"actual_sha1"` + Sha256 string `json:"sha256"` Properties []ArtifactorySearchResultProperty `json:"properties"` }