From e2b4f0659c1d61227f3458805f7e75b8ee78d991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20Mu=C3=B1oz?= Date: Tue, 7 Jan 2025 15:17:49 +0100 Subject: [PATCH] Document new parameters for VectorTableSourceOptions and VectorQuerySourceOptions (#9335) --- docs/api-reference/carto/data-sources.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/api-reference/carto/data-sources.md b/docs/api-reference/carto/data-sources.md index 2751c6f4a15..4296f1a2950 100644 --- a/docs/api-reference/carto/data-sources.md +++ b/docs/api-reference/carto/data-sources.md @@ -64,6 +64,7 @@ type VectorTableSourceOptions = { columns?: string[]; spatialDataColumn?: string; tableName: string; + aggregationExp?: string; }; ``` @@ -74,6 +75,7 @@ type VectorQuerySourceOptions = { spatialDataColumn?: string; sqlQuery: string; queryParameters: QueryParameters; + aggregationExp?: string; }; ```