11 lines
352 B
TypeScript
11 lines
352 B
TypeScript
// Do not edit this file manually
|
|
import { parseBlockCredentials, parseBlockSchema } from '@typebot.io/forge'
|
|
import { openRouterBlock } from '.'
|
|
import { auth } from './auth'
|
|
|
|
export const openRouterBlockSchema = parseBlockSchema(openRouterBlock)
|
|
export const openRouterCredentialsSchema = parseBlockCredentials(
|
|
openRouterBlock.id,
|
|
auth.schema
|
|
)
|