UNPKG

@memberjunction/ai-agent-manager-actions

Version:

Agent Management actions for creating and managing AI agents in MemberJunction

57 lines 3.12 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.LoadAgentManagementActions = void 0; // Export all agent management actions __exportStar(require("./actions/base-agent-management.action"), exports); __exportStar(require("./actions/create-agent.action"), exports); __exportStar(require("./actions/create-sub-agent.action"), exports); __exportStar(require("./actions/update-agent.action"), exports); __exportStar(require("./actions/list-agents.action"), exports); __exportStar(require("./actions/get-agent-details.action"), exports); __exportStar(require("./actions/associate-action-with-agent.action"), exports); __exportStar(require("./actions/list-actions.action"), exports); __exportStar(require("./actions/get-action-details.action"), exports); // Core types should be imported from the core package directly // Load all actions to ensure registration const create_agent_action_1 = require("./actions/create-agent.action"); const create_sub_agent_action_1 = require("./actions/create-sub-agent.action"); const update_agent_action_1 = require("./actions/update-agent.action"); const list_agents_action_1 = require("./actions/list-agents.action"); const get_agent_details_action_1 = require("./actions/get-agent-details.action"); const associate_action_with_agent_action_1 = require("./actions/associate-action-with-agent.action"); const list_actions_action_1 = require("./actions/list-actions.action"); const get_action_details_action_1 = require("./actions/get-action-details.action"); // Execute all loaders to register actions function LoadAgentManagementActions() { (0, create_agent_action_1.LoadCreateAgentAction)(); (0, create_sub_agent_action_1.LoadCreateSubAgentAction)(); (0, update_agent_action_1.LoadUpdateAgentAction)(); (0, list_agents_action_1.LoadListAgentsAction)(); (0, get_agent_details_action_1.LoadGetAgentDetailsAction)(); (0, associate_action_with_agent_action_1.LoadAssociateActionWithAgentAction)(); (0, list_actions_action_1.LoadListActionsAction)(); (0, get_action_details_action_1.LoadGetActionDetailsAction)(); // Additional actions to be implemented: // - DeactivateAgentAction // - SetAgentPromptAction // - ValidateAgentConfigurationAction // - ExportAgentBundleAction } exports.LoadAgentManagementActions = LoadAgentManagementActions; // Auto-load on import LoadAgentManagementActions(); //# sourceMappingURL=index.js.map