@websolutespa/payload-plugin-bowl-llm
Version:
LLM plugin for Bowl PayloadCms plugin
39 lines (38 loc) • 792 B
JavaScript
import { options } from '../../options';
import { withIntegration } from './withIntegration';
export const LlmKbSharepoint = withIntegration(options.slug.llmKbSharepoint, [
{
name: 'clientId',
type: 'withText'
},
{
name: 'clientSecret',
type: 'withText'
},
{
name: 'tenantId',
type: 'withText',
required: false
},
{
name: 'siteUrl',
type: 'withText'
},
{
name: 'sitePath',
type: 'withText',
required: false
},
{
name: 'recursive',
type: 'checkbox',
required: false
},
{
name: 'extension',
type: 'text',
hasMany: true,
required: false
}
]);
//# sourceMappingURL=LlmKbSharepoint.js.map