2024-03-18 16:09:19 +01:00
|
|
|
// Do not edit this file manually
|
|
|
|
import { parseBlockCredentials, parseBlockSchema } from '@typebot.io/forge'
|
|
|
|
import { anthropicBlock } from '.'
|
2024-07-16 15:11:48 +02:00
|
|
|
import { auth } from './auth'
|
2024-03-18 16:09:19 +01:00
|
|
|
|
|
|
|
export const anthropicBlockSchema = parseBlockSchema(anthropicBlock)
|
2024-07-16 15:11:48 +02:00
|
|
|
export const anthropicCredentialsSchema = parseBlockCredentials(
|
|
|
|
anthropicBlock.id,
|
|
|
|
auth.schema
|
|
|
|
)
|