2024-05-27 12:46:42 +04:00
|
|
|
// Do not edit this file manually
|
|
|
|
import { parseBlockCredentials, parseBlockSchema } from '@typebot.io/forge'
|
|
|
|
import { nocodbBlock } from '.'
|
2024-07-16 15:11:48 +02:00
|
|
|
import { auth } from './auth'
|
2024-05-27 12:46:42 +04:00
|
|
|
|
|
|
|
export const nocodbBlockSchema = parseBlockSchema(nocodbBlock)
|
2024-07-16 15:11:48 +02:00
|
|
|
export const nocodbCredentialsSchema = parseBlockCredentials(
|
|
|
|
nocodbBlock.id,
|
|
|
|
auth.schema
|
|
|
|
)
|