From 55bfec4b523ff35fde7b35b13d3ec74c7d8c110a Mon Sep 17 00:00:00 2001 From: Ben Moskovitz Date: Mon, 26 Aug 2024 15:43:14 +1200 Subject: [PATCH] Add package name to Package type --- buildkite/packages.go | 1 + 1 file changed, 1 insertion(+) diff --git a/buildkite/packages.go b/buildkite/packages.go index bca72abb..41baf08d 100644 --- a/buildkite/packages.go +++ b/buildkite/packages.go @@ -18,6 +18,7 @@ type PackagesService struct { // Package represents a package which has been stored in a registry type Package struct { ID string `json:"id"` + Name string `json:"name"` URL string `json:"url"` WebURL string `json:"web_url"` Organization Organization `json:"organization"`