Skip to content

Commit 2cefb38

Browse files
bchapuisclaude
andcommitted
Add missing whatsapp converter to parameter mapper
The whatsapp input type had no converter registered, causing "No converter for type: whatsapp" errors when executing WhatsApp bot workflows. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3c1a04d commit 2cefb38

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

packages/runtime/src/parameter-mapper.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,10 @@ const converters: Record<string, Converter> = {
331331
nodeToApi: typeValidatingNodeToApi("string"),
332332
apiToNode: typeValidatingApiToNode("string"),
333333
},
334+
whatsapp: {
335+
nodeToApi: typeValidatingNodeToApi("string"),
336+
apiToNode: typeValidatingApiToNode("string"),
337+
},
334338
any: {
335339
nodeToApi: (
336340
value: NodeParameterValue,

0 commit comments

Comments
 (0)