UNPKG

@websolutespa/payload-plugin-bowl-llm

Version:

LLM plugin for Bowl PayloadCms plugin

44 lines (43 loc) 870 B
import { options } from '../../options'; import { withIntegration } from './withIntegration'; export const LlmKbJira = withIntegration(options.slug.llmKbJira, [ { name: 'accessToken', type: 'withText', required: true }, { name: 'url', type: 'withText', required: true }, { name: 'userEmail', type: 'withText', required: true }, { name: 'projects', type: 'text', hasMany: true, required: true }, { name: 'boards', type: 'text', hasMany: true }, { name: 'issues', type: 'text', hasMany: true }, { name: 'jqlFilter', type: 'withText', admin: { description: 'jira_JQL_filter' } } ]); //# sourceMappingURL=LlmKbJira.js.map