mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(editor): Add pre-built agents experiment (#18124)
This commit is contained in:
@@ -1344,12 +1344,25 @@ export type NodePropertyAction = {
|
||||
target?: string;
|
||||
};
|
||||
|
||||
export type CalloutActionType = 'openRagStarterTemplate';
|
||||
export interface CalloutAction {
|
||||
type: CalloutActionType;
|
||||
export interface CalloutActionBase {
|
||||
type: string;
|
||||
label: string;
|
||||
icon?: string;
|
||||
}
|
||||
|
||||
export interface CalloutActionOpenPreBuiltAgentsCollection extends CalloutActionBase {
|
||||
type: 'openPreBuiltAgentsCollection';
|
||||
}
|
||||
|
||||
export interface CalloutActionOpenSampleWorkflowTemplate extends CalloutActionBase {
|
||||
type: 'openSampleWorkflowTemplate';
|
||||
templateId: string;
|
||||
}
|
||||
|
||||
export type CalloutAction =
|
||||
| CalloutActionOpenPreBuiltAgentsCollection
|
||||
| CalloutActionOpenSampleWorkflowTemplate;
|
||||
|
||||
export interface INodePropertyTypeOptions {
|
||||
// Supported by: button
|
||||
buttonConfig?: {
|
||||
|
||||
Reference in New Issue
Block a user