actionPlan
Variable: actionPlan
const actionPlan: {
addGroupToActionPlan: (planId: string, group: ActionPlanGroup) => Promise<any>;
addTaskToActionPlan: (planId: string, task: ActionPlanTask) => Promise<any>;
createActionPlan: (payload: {
agentId?: string;
agentName?: string;
description?: string;
name: string;
planId?: string;
status?: string;
}) => Promise<any>;
getActionPlanDetail: (planId: string) => Promise<any>;
getAllPlans: () => Promise<any>;
getPlanDetail: (planId: string) => Promise<any>;
startTaskStep: (planId: string, taskId: string) => Promise<any>;
startTaskStepWithListener: (planId: string, taskId: string, onResponse: (response: TaskStepResponse) => void) => () => void;
updateActionPlan: (planId: string, updateData: ActionPlanUpdateData) => Promise<any>;
};
Defined in: packages/codeboltjs/src/modules/actionPlan.ts:19