2024-03-19 10:38:55 +01:00
|
|
|
// Do not edit this file manually
|
2024-03-18 16:09:19 +01:00
|
|
|
import { anthropicBlock } from '@typebot.io/anthropic-block'
|
|
|
|
import { anthropicBlockSchema } from '@typebot.io/anthropic-block/schemas'
|
2024-09-12 14:00:50 +02:00
|
|
|
import { calComBlock } from '@typebot.io/bls-cal-block'
|
|
|
|
import { calComBlockSchema } from '@typebot.io/bls-cal-block/schemas'
|
2024-03-18 16:09:19 +01:00
|
|
|
import { chatNodeBlock } from '@typebot.io/chat-node-block'
|
|
|
|
import { chatNodeBlockSchema } from '@typebot.io/chat-node-block/schemas'
|
|
|
|
import { difyAiBlock } from '@typebot.io/dify-ai-block'
|
|
|
|
import { difyAiBlockSchema } from '@typebot.io/dify-ai-block/schemas'
|
|
|
|
import { elevenlabsBlock } from '@typebot.io/elevenlabs-block'
|
|
|
|
import { elevenlabsBlockSchema } from '@typebot.io/elevenlabs-block/schemas'
|
|
|
|
import { mistralBlock } from '@typebot.io/mistral-block'
|
|
|
|
import { mistralBlockSchema } from '@typebot.io/mistral-block/schemas'
|
|
|
|
import { openRouterBlock } from '@typebot.io/open-router-block'
|
|
|
|
import { openRouterBlockSchema } from '@typebot.io/open-router-block/schemas'
|
|
|
|
import { openAIBlock } from '@typebot.io/openai-block'
|
|
|
|
import { openAIBlockSchema } from '@typebot.io/openai-block/schemas'
|
|
|
|
import { qrCodeBlock } from '@typebot.io/qrcode-block'
|
|
|
|
import { qrCodeBlockSchema } from '@typebot.io/qrcode-block/schemas'
|
|
|
|
import { togetherAiBlock } from '@typebot.io/together-ai-block'
|
|
|
|
import { togetherAiBlockSchema } from '@typebot.io/together-ai-block/schemas'
|
2024-05-27 12:46:42 +04:00
|
|
|
import { nocodbBlock } from '@typebot.io/nocodb-block'
|
|
|
|
import { nocodbBlockSchema } from '@typebot.io/nocodb-block/schemas'
|
2024-08-16 11:23:23 -04:00
|
|
|
import { segmentBlock } from '@typebot.io/segment-block'
|
|
|
|
import { segmentBlockSchema } from '@typebot.io/segment-block/schemas'
|
2024-08-22 15:31:05 +02:00
|
|
|
import { groqBlock } from '@typebot.io/groq-block'
|
|
|
|
import { groqBlockSchema } from '@typebot.io/groq-block/schemas'
|
2024-03-18 16:09:19 +01:00
|
|
|
|
|
|
|
export const forgedBlockSchemas = {
|
|
|
|
[openAIBlock.id]: openAIBlockSchema,
|
|
|
|
[calComBlock.id]: calComBlockSchema,
|
|
|
|
[chatNodeBlock.id]: chatNodeBlockSchema,
|
|
|
|
[qrCodeBlock.id]: qrCodeBlockSchema,
|
|
|
|
[difyAiBlock.id]: difyAiBlockSchema,
|
|
|
|
[mistralBlock.id]: mistralBlockSchema,
|
|
|
|
[elevenlabsBlock.id]: elevenlabsBlockSchema,
|
|
|
|
[anthropicBlock.id]: anthropicBlockSchema,
|
|
|
|
[togetherAiBlock.id]: togetherAiBlockSchema,
|
|
|
|
[openRouterBlock.id]: openRouterBlockSchema,
|
2024-05-27 12:46:42 +04:00
|
|
|
[nocodbBlock.id]: nocodbBlockSchema,
|
2024-08-16 11:23:23 -04:00
|
|
|
[segmentBlock.id]: segmentBlockSchema,
|
2024-08-22 15:31:05 +02:00
|
|
|
[groqBlock.id]: groqBlockSchema,
|
2024-03-18 16:09:19 +01:00
|
|
|
}
|