@websolutespa/payload-plugin-bowl-llm
Version:
LLM plugin for Bowl PayloadCms plugin
38 lines (37 loc) • 734 B
JavaScript
import { options } from '../../options';
import { withIntegration } from './withIntegration';
export const LlmKbSftp = withIntegration(options.slug.llmKbSftp, [
{
name: 'remoteUrl',
type: 'withText',
required: true
},
{
name: 'host',
type: 'withText'
},
{
name: 'port',
type: 'number'
},
{
name: 'username',
type: 'withText',
required: true
},
{
name: 'password',
type: 'withText',
required: true
},
{
name: 'recursive',
type: 'checkbox'
},
{
name: 'extension',
type: 'text',
hasMany: true
}
]);
//# sourceMappingURL=LlmKbSftp.js.map