From 865140e6819ecc1c445b26f747114df4961d8a47 Mon Sep 17 00:00:00 2001 From: Rafael Date: Tue, 16 Dec 2025 21:05:21 -0300 Subject: [PATCH] fix: pass type field to Elasticsearch createPipeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The type field was missing from the createPipeline call, causing ES documents to not have the type field set. Maps: jdbc->database, singer->application, s3->file 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/modules/platform-api/platform-api.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/platform-api/platform-api.controller.ts b/src/modules/platform-api/platform-api.controller.ts index 1f1fc98..383647c 100644 --- a/src/modules/platform-api/platform-api.controller.ts +++ b/src/modules/platform-api/platform-api.controller.ts @@ -490,6 +490,7 @@ export class PlatformApiController { cron: body.cron, tables: inputId, properties, + type: this.mapConnectorToDynamoType(connectorType), }, connector, );