2
0
Files
bot/packages/forge/blocks/difyAi/deprecated.ts
2024-04-23 11:23:04 +02:00

13 lines
415 B
TypeScript

import { option } from '@typebot.io/forge'
export const deprecatedCreateChatMessageOptions = option.object({
conversation_id: option.string
.layout({
label: 'Conversation ID',
moreInfoTooltip:
'Used to remember the conversation with the user. If empty, a new conversation id is created.',
isHidden: true,
})
.describe('Deprecated, use `conversationVariableId` instead'),
})