mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-14 22:40:59 +00:00
38e35d328a
Co-authored-by: dadachann <185672915+dadachann@users.noreply.github.com>
60 lines
1.2 KiB
TypeScript
60 lines
1.2 KiB
TypeScript
import { ComponentManifest, I18nObject } from '@/app/infra/entities/common';
|
|
|
|
export interface Plugin {
|
|
status: 'intialized' | 'mounted' | 'unmounted';
|
|
priority: number;
|
|
plugin_config: object;
|
|
manifest: {
|
|
manifest: ComponentManifest;
|
|
};
|
|
debug: boolean;
|
|
enabled: boolean;
|
|
install_source: string;
|
|
install_info: Record<string, any>;
|
|
components: PluginComponent[];
|
|
}
|
|
|
|
export interface PluginComponent {
|
|
component_config: object;
|
|
manifest: {
|
|
manifest: ComponentManifest;
|
|
};
|
|
}
|
|
|
|
// A single log line captured from a running plugin's stderr.
|
|
export interface PluginLogEntry {
|
|
ts: number;
|
|
level: string;
|
|
text: string;
|
|
}
|
|
|
|
// marketplace plugin v4
|
|
export enum PluginV4Status {
|
|
Any = 'any',
|
|
Live = 'live',
|
|
Deleted = 'deleted',
|
|
}
|
|
|
|
export interface PluginV4 {
|
|
id: number;
|
|
plugin_id: string;
|
|
mcp_id?: string;
|
|
skill_id?: string;
|
|
author: string;
|
|
name: string;
|
|
label: I18nObject;
|
|
description: I18nObject;
|
|
icon: string;
|
|
repository: string;
|
|
tags: string[];
|
|
install_count: number;
|
|
like_count?: number;
|
|
hot_score?: number;
|
|
latest_version: string;
|
|
components: Record<string, number>;
|
|
status: PluginV4Status;
|
|
type?: 'plugin' | 'mcp' | 'skill';
|
|
created_at: string;
|
|
updated_at: string;
|
|
}
|