2023-12-13 10:22:02 +01:00
|
|
|
import { option } from '@typebot.io/forge'
|
|
|
|
|
import { defaultBaseUrl } from './constants'
|
|
|
|
|
|
|
|
|
|
export const baseOptions = option.object({
|
|
|
|
|
baseUrl: option.string.layout({
|
|
|
|
|
label: 'Base origin',
|
2024-09-12 13:54:09 +02:00
|
|
|
placeholder: 'https://cal.bls.media',
|
2023-12-13 10:22:02 +01:00
|
|
|
defaultValue: defaultBaseUrl,
|
|
|
|
|
accordion: 'Customize host',
|
|
|
|
|
}),
|
|
|
|
|
})
|