system-prompts-and-models-o.../NotionAi/notion-ai_20260322/modules/confluence/integration.ts
2026-03-22 18:31:30 +08:00

16 lines
282 B
TypeScript

export type ConfluenceIntegration = {
type: "confluence"
name: string
enabled: boolean
}
export type ModulePermissions = {
search: boolean
cqlQuery: boolean
loadPage: boolean
}
export type ModuleState = {
integration: ConfluenceIntegration
permissions: ModulePermissions
}