From 1c4c384288b4833f57543999d497d24aaf1e0715 Mon Sep 17 00:00:00 2001 From: Auto Impl Date: Wed, 18 Mar 2026 10:19:40 +0000 Subject: [PATCH] fix(gooddata-dbt): [AUTO] remove GEO_ICON from GoodDataLabelType enum GEO_ICON was removed from the OpenAPI valueType enum in afm-exec-api. Remove the stale GEO_ICON entry from the LabelType enum to keep the SDK in sync with the updated API spec. Co-Authored-By: Claude Sonnet 4.6 --- packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py b/packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py index 930ab770a..c89f0f127 100644 --- a/packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py +++ b/packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py @@ -22,7 +22,6 @@ class GoodDataLabelType(Enum): GEO_LATITUDE = "GEO_LATITUDE" GEO_LONGITUDE = "GEO_LONGITUDE" GEO_AREA = "GEO_AREA" - GEO_ICON = "GEO_ICON" class GoodDataSortDirection(Enum):