From 891e0aa1923ec88852ca6b074ac289bb5450fcfb Mon Sep 17 00:00:00 2001 From: Serhii Filonenko Date: Mon, 27 Apr 2026 14:27:17 +0300 Subject: [PATCH] HCK-15896: add dbt config incremental strategy --- .../entity_level/entityLevelConfig.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/properties_pane/entity_level/entityLevelConfig.json b/properties_pane/entity_level/entityLevelConfig.json index 0ce9cf7..42a7185 100644 --- a/properties_pane/entity_level/entityLevelConfig.json +++ b/properties_pane/entity_level/entityLevelConfig.json @@ -1854,5 +1854,29 @@ making sure that you maintain a proper JSON format. ] } ] + }, + { + "lowerTab": "dbt", + "system": true, + "structure": [ + { + "propertyName": "Config", + "propertyKeyword": "dbtConfig", + "propertyType": "block", + "structure": [ + { + "propertyName": "Incremental strategy", + "propertyKeyword": "dbtIncrementalStrategy", + "propertyType": "select", + "options": ["", "append", "delete+insert"], + "hidden": false, + "dependency": { + "key": "dbtMaterialized", + "value": "incremental" + } + } + ] + } + ] } ]