n8n
Version:
n8n Workflow Automation Tool
9 lines • 434 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.buildAgentPreviewPath = buildAgentPreviewPath;
function buildAgentPreviewPath(projectId, agentId) {
const encodedProjectId = encodeURIComponent(projectId);
const encodedAgentId = encodeURIComponent(agentId);
return `/projects/${encodedProjectId}/agents/${encodedAgentId}/preview`;
}
//# sourceMappingURL=agent-builder-preview-path.js.map