feat: add Memind analytics admin and Umami SSO

This commit is contained in:
john
2026-07-16 14:09:12 +08:00
parent 23a5f147fd
commit 7c2af3306a
9 changed files with 170 additions and 3 deletions
+16
View File
@@ -281,6 +281,21 @@ export type WechatScheduleLlmConfig = {
export type MindSpaceAdminConfig = {
publicPageLimit: number;
analytics: {
enabled: boolean;
websiteId: string;
analyticsUrl: string;
domains: string;
idSecretConfigured: boolean;
};
};
export type MindSpaceAnalyticsUpdate = {
enabled?: boolean;
websiteId?: string;
analyticsUrl?: string;
domains?: string;
idSecret?: string;
};
export type MemoryV2AdminSection = Record<string, string | boolean>;
@@ -297,6 +312,7 @@ export type MemoryV2AdminConfig = {
};
chatIntentRouter: MemoryV2AdminSection;
candidateMemory: MemoryV2AdminSection;
runtimeControl: MemoryV2AdminSection;
policy: MemoryV2AdminSection;
retriever: MemoryV2AdminSection;
lifecycle: MemoryV2AdminSection;