From afffc948ebd0c09d7371b809d7cc7b26773b2765 Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Wed, 26 Aug 2026 14:34:18 +0000 Subject: [PATCH] [management] Regenerate the API types after the discovery request change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The generated file carries the schema descriptions as doc comments, so editing them leaves it behind and the release job's diff check fails. Comments only — no field or type moved. --- shared/management/http/api/types.gen.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/management/http/api/types.gen.go b/shared/management/http/api/types.gen.go index db5b2e18e..cdd7702ad 100644 --- a/shared/management/http/api/types.gen.go +++ b/shared/management/http/api/types.gen.go @@ -2202,10 +2202,10 @@ type AgentNetworkModelDiscoveryRequest struct { // CatalogProviderId Catalog provider to query (AgentNetworkCatalogProvider.id). Determines the listing endpoint, the auth header and the response shape. CatalogProviderId string `json:"catalog_provider_id"` - // ProviderId Existing Agent Network provider record whose stored credential and upstream should be used. Lets the form refresh the list without the client holding the key. + // ProviderId Existing Agent Network provider record to query with. Its stored credential is used, and its upstream unless upstream_url overrides it, so the form can refresh the list without the client holding the key. ProviderId *string `json:"provider_id,omitempty"` - // UpstreamUrl The upstream being configured. Used to reach vendors that serve their listing from the same host as inference, and to read back the region for those whose host embeds one. Ignored when provider_id is supplied. + // UpstreamUrl The upstream being configured. Used to reach vendors that serve their listing from the same host as inference, and to read back the region for those whose host embeds one. Sent alongside provider_id, it overrides the stored upstream, so an edit can be listed against the URL on the form before it is saved. UpstreamUrl *string `json:"upstream_url,omitempty"` }