From d75533e32a23b68273163f8afbc7753a9644f841 Mon Sep 17 00:00:00 2001 From: avallete <8771783+avallete@users.noreply.github.com> Date: Wed, 25 Jun 2025 08:57:29 +0000 Subject: [PATCH] chore: sync API types from infrastructure --- pkg/api/types.gen.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/api/types.gen.go b/pkg/api/types.gen.go index c6cfdff106..726ccf532d 100644 --- a/pkg/api/types.gen.go +++ b/pkg/api/types.gen.go @@ -1954,15 +1954,15 @@ type ProjectUpgradeEligibilityResponse struct { CurrentAppVersionReleaseChannel ProjectUpgradeEligibilityResponseCurrentAppVersionReleaseChannel `json:"current_app_version_release_channel"` DurationEstimateHours float32 `json:"duration_estimate_hours"` Eligible bool `json:"eligible"` - ExtensionDependentObjects []string `json:"extension_dependent_objects"` LatestAppVersion string `json:"latest_app_version"` LegacyAuthCustomRoles []string `json:"legacy_auth_custom_roles"` - PotentialBreakingChanges []string `json:"potential_breaking_changes"` + ObjectsToBeDropped []string `json:"objects_to_be_dropped"` TargetUpgradeVersions []struct { AppVersion string `json:"app_version"` PostgresVersion ProjectUpgradeEligibilityResponseTargetUpgradeVersionsPostgresVersion `json:"postgres_version"` ReleaseChannel ProjectUpgradeEligibilityResponseTargetUpgradeVersionsReleaseChannel `json:"release_channel"` } `json:"target_upgrade_versions"` + UnsupportedExtensions []string `json:"unsupported_extensions"` } // ProjectUpgradeEligibilityResponseCurrentAppVersionReleaseChannel defines model for ProjectUpgradeEligibilityResponse.CurrentAppVersionReleaseChannel.