Add wechat reminder LLM admin toggle

This commit is contained in:
john
2026-07-07 12:10:21 +08:00
parent ebcc33b367
commit b9cadd91fc
6 changed files with 79 additions and 1 deletions
+7
View File
@@ -241,6 +241,7 @@ export type WechatAdminSummary = {
bindPath: string | null;
tokenEndpointConfigured: boolean;
customerServiceEndpointConfigured: boolean;
scheduleLlmEnabled: boolean;
};
counts: {
boundUsers: number;
@@ -251,6 +252,12 @@ export type WechatAdminSummary = {
};
};
export type WechatScheduleLlmConfig = {
scheduleLlmEnabled: boolean;
updatedAt: number | null;
updatedBy: string | null;
};
export type MindSpaceAdminConfig = {
publicPageLimit: number;
};