2
0

hinzufügen von BLS cal

This commit is contained in:
2024-09-12 14:00:50 +02:00
parent 84fb8b0710
commit 7ee7c74017
7 changed files with 8 additions and 8 deletions

View File

@ -40,7 +40,7 @@ const main = async () => {
id: ({ results }) =>
p.text({
message:
'Integration ID? (should be a slug like: cal-com, openai...)',
'Integration ID? (should be a slug like: bls-cal, openai...)',
placeholder: 'my-integration',
initialValue: slugify(results.name ?? ''),
validate: (val) => {

View File

@ -3,7 +3,7 @@ import { ForgedBlock } from './types'
export const forgedBlockIds = [
'openai',
'cal-com',
'bls-cal',
'chat-node',
'qr-code',
'dify-ai',

View File

@ -7,7 +7,7 @@ import { difyAiBlock } from '@typebot.io/dify-ai-block'
import { mistralBlock } from '@typebot.io/mistral-block'
import { qrCodeBlock } from '@typebot.io/qrcode-block'
import { chatNodeBlock } from '@typebot.io/chat-node-block'
import { calComBlock } from '@typebot.io/cal-com-block'
import { calComBlock } from '@typebot.io/bls-cal-block'
import { openAIBlock } from '@typebot.io/openai-block'
import { nocodbBlock } from '@typebot.io/nocodb-block'
import { segmentBlock } from '@typebot.io/segment-block'

View File

@ -8,7 +8,7 @@
"devDependencies": {
"@typebot.io/forge": "workspace:*",
"@typebot.io/openai-block": "workspace:*",
"@typebot.io/cal-com-block": "workspace:*",
"@typebot.io/bls-cal-block": "workspace:*",
"@typebot.io/chat-node-block": "workspace:*",
"@typebot.io/qrcode-block": "workspace:*",
"@typebot.io/dify-ai-block": "workspace:*",

View File

@ -1,8 +1,8 @@
// Do not edit this file manually
import { anthropicBlock } from '@typebot.io/anthropic-block'
import { anthropicBlockSchema } from '@typebot.io/anthropic-block/schemas'
import { calComBlock } from '@typebot.io/cal-com-block'
import { calComBlockSchema } from '@typebot.io/cal-com-block/schemas'
import { calComBlock } from '@typebot.io/bls-cal-block'
import { calComBlockSchema } from '@typebot.io/bls-cal-block/schemas'
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'