hinzufügen von BLS cal
This commit is contained in:
@ -20308,7 +20308,7 @@
|
|||||||
"type": {
|
"type": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"cal-com"
|
"bls-cal"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
|
@ -10516,7 +10516,7 @@
|
|||||||
"type": {
|
"type": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"cal-com"
|
"bls-cal"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
|
@ -40,7 +40,7 @@ const main = async () => {
|
|||||||
id: ({ results }) =>
|
id: ({ results }) =>
|
||||||
p.text({
|
p.text({
|
||||||
message:
|
message:
|
||||||
'Integration ID? (should be a slug like: cal-com, openai...)',
|
'Integration ID? (should be a slug like: bls-cal, openai...)',
|
||||||
placeholder: 'my-integration',
|
placeholder: 'my-integration',
|
||||||
initialValue: slugify(results.name ?? ''),
|
initialValue: slugify(results.name ?? ''),
|
||||||
validate: (val) => {
|
validate: (val) => {
|
||||||
|
@ -3,7 +3,7 @@ import { ForgedBlock } from './types'
|
|||||||
|
|
||||||
export const forgedBlockIds = [
|
export const forgedBlockIds = [
|
||||||
'openai',
|
'openai',
|
||||||
'cal-com',
|
'bls-cal',
|
||||||
'chat-node',
|
'chat-node',
|
||||||
'qr-code',
|
'qr-code',
|
||||||
'dify-ai',
|
'dify-ai',
|
||||||
|
@ -7,7 +7,7 @@ import { difyAiBlock } from '@typebot.io/dify-ai-block'
|
|||||||
import { mistralBlock } from '@typebot.io/mistral-block'
|
import { mistralBlock } from '@typebot.io/mistral-block'
|
||||||
import { qrCodeBlock } from '@typebot.io/qrcode-block'
|
import { qrCodeBlock } from '@typebot.io/qrcode-block'
|
||||||
import { chatNodeBlock } from '@typebot.io/chat-node-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 { openAIBlock } from '@typebot.io/openai-block'
|
||||||
import { nocodbBlock } from '@typebot.io/nocodb-block'
|
import { nocodbBlock } from '@typebot.io/nocodb-block'
|
||||||
import { segmentBlock } from '@typebot.io/segment-block'
|
import { segmentBlock } from '@typebot.io/segment-block'
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@typebot.io/forge": "workspace:*",
|
"@typebot.io/forge": "workspace:*",
|
||||||
"@typebot.io/openai-block": "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/chat-node-block": "workspace:*",
|
||||||
"@typebot.io/qrcode-block": "workspace:*",
|
"@typebot.io/qrcode-block": "workspace:*",
|
||||||
"@typebot.io/dify-ai-block": "workspace:*",
|
"@typebot.io/dify-ai-block": "workspace:*",
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
// Do not edit this file manually
|
// Do not edit this file manually
|
||||||
import { anthropicBlock } from '@typebot.io/anthropic-block'
|
import { anthropicBlock } from '@typebot.io/anthropic-block'
|
||||||
import { anthropicBlockSchema } from '@typebot.io/anthropic-block/schemas'
|
import { anthropicBlockSchema } from '@typebot.io/anthropic-block/schemas'
|
||||||
import { calComBlock } from '@typebot.io/cal-com-block'
|
import { calComBlock } from '@typebot.io/bls-cal-block'
|
||||||
import { calComBlockSchema } from '@typebot.io/cal-com-block/schemas'
|
import { calComBlockSchema } from '@typebot.io/bls-cal-block/schemas'
|
||||||
import { chatNodeBlock } from '@typebot.io/chat-node-block'
|
import { chatNodeBlock } from '@typebot.io/chat-node-block'
|
||||||
import { chatNodeBlockSchema } from '@typebot.io/chat-node-block/schemas'
|
import { chatNodeBlockSchema } from '@typebot.io/chat-node-block/schemas'
|
||||||
import { difyAiBlock } from '@typebot.io/dify-ai-block'
|
import { difyAiBlock } from '@typebot.io/dify-ai-block'
|
||||||
|
Reference in New Issue
Block a user