mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-09-17 15:27:15 +00:00
feat(bots): bind plugin processor configurations independently
This commit is contained in:
@@ -329,11 +329,17 @@ export interface Bot {
|
||||
adapter: string;
|
||||
adapter_config: object;
|
||||
event_bindings?: EventBinding[];
|
||||
plugin_processors?: PluginProcessorBinding[];
|
||||
created_at?: string;
|
||||
updated_at?: string;
|
||||
adapter_runtime_values?: object;
|
||||
}
|
||||
|
||||
export interface PluginProcessorBinding {
|
||||
processor_uuid: string;
|
||||
enabled: boolean;
|
||||
}
|
||||
|
||||
export interface EventBinding {
|
||||
id?: string;
|
||||
event_pattern: string;
|
||||
|
||||
Reference in New Issue
Block a user