@@ -20,15 +20,32 @@ export const CHANNEL_INTEGRATION_DEFINITIONS = [
2020 { exportName : 'postgresJsIntegration' , modules : [ 'postgres' ] } ,
2121 { exportName : 'mysqlIntegration' , modules : [ 'mysql' ] } ,
2222 { exportName : 'mysql2Integration' , modules : [ 'mysql2' ] } ,
23+ { exportName : 'mongoIntegration' , modules : [ 'mongodb' ] } ,
2324 { exportName : 'mongooseIntegration' , modules : [ 'mongoose' ] } ,
25+ { exportName : 'knexIntegration' , modules : [ 'knex' ] } ,
26+ { exportName : 'tediousIntegration' , modules : [ 'tedious' ] } ,
2427 { exportName : 'genericPoolIntegration' , modules : [ 'generic-pool' ] } ,
2528 { exportName : 'lruMemoizerIntegration' , modules : [ 'lru-memoizer' ] } ,
2629 { exportName : 'openAIIntegration' , modules : [ 'openai' ] } ,
2730 { exportName : 'anthropicAIIntegration' , modules : [ '@anthropic-ai/sdk' ] } ,
2831 { exportName : 'googleGenAIIntegration' , modules : [ '@google/genai' ] } ,
2932 { exportName : 'vercelAIIntegration' , modules : [ 'ai' ] } ,
33+ {
34+ exportName : 'langChainIntegration' ,
35+ modules : [
36+ '@langchain/core' ,
37+ '@langchain/openai' ,
38+ '@langchain/google-common' ,
39+ '@langchain/google-genai' ,
40+ '@langchain/mistralai' ,
41+ ] ,
42+ } ,
43+ { exportName : 'langGraphIntegration' , modules : [ '@langchain/langgraph' ] } ,
44+ { exportName : 'awsIntegration' , modules : [ '@aws-sdk/smithy-client' , '@smithy/core' , '@smithy/smithy-client' ] } ,
45+ { exportName : 'firebaseIntegration' , modules : [ '@firebase/firestore' , 'firebase-functions' ] } ,
3046 { exportName : 'amqplibIntegration' , modules : [ 'amqplib' ] } ,
3147 { exportName : 'hapiIntegration' , modules : [ '@hapi/hapi' ] } ,
48+ { exportName : 'koaIntegration' , modules : [ 'koa' ] } ,
3249 { exportName : 'expressIntegration' , modules : [ 'express' , 'router' ] } ,
3350 { exportName : 'graphqlIntegration' , modules : [ 'graphql' ] } ,
3451 { exportName : 'kafkaIntegration' , modules : [ 'kafkajs' ] } ,
0 commit comments