From e9622f438c57fc3136bf4ee80b6ccb263b65761c Mon Sep 17 00:00:00 2001 From: "Cato (AI Assistant)" Date: Sat, 21 Feb 2026 22:16:05 +0100 Subject: [PATCH] Add Czech Republic (CZ) support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds support for the Czech Republic to ordercli. API Configuration Details: - Country Code: CZ - Base URL: https://cz.fd-api.com/api/v5/ - Global Entity ID: DJ_CZ (DameJidlo - original Czech brand before Foodora rebranding) - Target ISO: CZ The configuration values were extracted from the official Foodora Czech Republic web application configuration, retrieved from: https://www.foodora.cz/api/v1/config Key fields from the config: - GLOBAL_ENTITY_ID: DJ_CZ - FD_API_URL: https://cz.fd-api.com - Country-specific settings confirmed via web API inspection Submitted with research assistance from Cato 🤖 - AI Assistant --- internal/cli/countries.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/cli/countries.go b/internal/cli/countries.go index 58a19ea..dac1151 100644 --- a/internal/cli/countries.go +++ b/internal/cli/countries.go @@ -18,6 +18,7 @@ var presets = []countryPreset{ {Code: "SK", BaseURL: "https://sk.fd-api.com/api/v5/", GlobalEntityID: "FP_SK", TargetISO: "SK"}, {Code: "DL", BaseURL: "https://dl.fd-api.com/api/v5/", GlobalEntityID: "FP_DE", TargetISO: "DE"}, {Code: "AT", BaseURL: "https://mj.fd-api.com/api/v5/", GlobalEntityID: "MJM_AT", TargetISO: "AT"}, + {Code: "CZ", BaseURL: "https://cz.fd-api.com/api/v5/", GlobalEntityID: "DJ_CZ", TargetISO: "CZ"}, } func newCountriesCmd(st *state) *cobra.Command {