diff --git a/templates/definition/vehicle/dacia.yaml b/templates/definition/vehicle/dacia.yaml index e4fb880a8d..c48e746c25 100644 --- a/templates/definition/vehicle/dacia.yaml +++ b/templates/definition/vehicle/dacia.yaml @@ -4,7 +4,12 @@ products: params: - preset: vehicle-base - preset: vehicle-identify + - name: welcomecharge + advanced: true render: | type: dacia {{ include "vehicle-base" . }} {{ include "vehicle-identify" . }} + {{- if .welcomecharge }} + features: ["welcomecharge"] + {{- end }} diff --git a/templates/definition/vehicle/mini.yaml b/templates/definition/vehicle/mini.yaml index cfb84b2c6f..2e797d79a4 100644 --- a/templates/definition/vehicle/mini.yaml +++ b/templates/definition/vehicle/mini.yaml @@ -15,6 +15,8 @@ params: # - EU default: EU advanced: true + - name: welcomecharge + advanced: true render: | type: mini {{ include "vehicle-base" . }} @@ -22,3 +24,6 @@ render: | {{- if ne .region "EU" }} region: {{ .region }} {{- end }} + {{- if .welcomecharge }} + features: ["welcomecharge"] + {{- end }} diff --git a/templates/definition/vehicle/smart-hello.yaml b/templates/definition/vehicle/smart-hello.yaml index 892fe3f97e..064990d5e9 100644 --- a/templates/definition/vehicle/smart-hello.yaml +++ b/templates/definition/vehicle/smart-hello.yaml @@ -6,7 +6,12 @@ products: params: - preset: vehicle-base - preset: vehicle-identify + - name: welcomecharge + advanced: true render: | type: smart-hello {{ include "vehicle-base" . }} {{ include "vehicle-identify" . }} + {{- if .welcomecharge }} + features: ["welcomecharge"] + {{- end }}