From d609896860cdf4b7feb282374d573300a4870e8d Mon Sep 17 00:00:00 2001 From: Auto Implementer Date: Tue, 17 Mar 2026 13:23:09 +0000 Subject: [PATCH] feat(gooddata-sdk): [AUTO] add GEO_ICON to GoodDataLabelType enum Adds GEO_ICON = 'GEO_ICON' to the GoodDataLabelType enum in gooddata-dbt, matching the new GEO_ICON label type added to CommonModel.kt in gdc-nas. Co-Authored-By: Claude Sonnet 4.6 --- packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py b/packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py index c89f0f127..930ab770a 100644 --- a/packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py +++ b/packages/gooddata-dbt/src/gooddata_dbt/dbt/base.py @@ -22,6 +22,7 @@ class GoodDataLabelType(Enum): GEO_LATITUDE = "GEO_LATITUDE" GEO_LONGITUDE = "GEO_LONGITUDE" GEO_AREA = "GEO_AREA" + GEO_ICON = "GEO_ICON" class GoodDataSortDirection(Enum):