mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-26 15:34:26 +00:00
ce31fc81b8
The 12 old adapters that now have an EBA replacement are tagged `spec.legacy: true` in their source manifests. Principle: don't delete, de-emphasize. - sources/*.yaml (aiocqhttp, dingtalk, discord, kook, lark, officialaccount, qqofficial, slack, telegram, wecom, wecombot, wecomcs): add spec.legacy: true - Adapter / IChooseAdapterEntity types: add optional legacy flag - BotForm adapter Select: split legacy adapters into a collapsed, grayscale group at the bottom with an explanatory hint; auto-expand when the bot already uses a legacy adapter - Wizard platform picker: same collapsed legacy section - i18n: legacyAdapters / legacyAdaptersHint (zh-Hans, en-US) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
13 lines
211 B
TypeScript
13 lines
211 B
TypeScript
export interface IChooseAdapterEntity {
|
|
label: string;
|
|
value: string;
|
|
categories?: string[];
|
|
legacy?: boolean;
|
|
}
|
|
|
|
export interface IPipelineEntity {
|
|
label: string;
|
|
value: string;
|
|
emoji?: string;
|
|
}
|