20 lines
483 B
TypeScript
20 lines
483 B
TypeScript
import type { WecomBotRuntimeConfig } from './wecom-bot.types';
|
|
|
|
/** 审计占位:插件无长连接 Bot 行,botKey 固定为 plugin */
|
|
export const WECOM_PLUGIN_AUDIT_BOT: WecomBotRuntimeConfig = {
|
|
id: '',
|
|
key: 'plugin',
|
|
role: 'OPERATIONS',
|
|
name: '企微 API 插件',
|
|
enabled: true,
|
|
botId: '',
|
|
secret: '',
|
|
welcome: '',
|
|
avatarUrl: null,
|
|
permissions: [],
|
|
reviewSuperAdminWecomUserIds: [],
|
|
aiEnabled: false,
|
|
llmConfigId: null,
|
|
knowledgeBaseId: null,
|
|
};
|