UNPKG

newo

Version:

NEWO CLI: Professional command-line tool with modular architecture for NEWO AI Agent development. Features IDN-based file management, real-time progress tracking, intelligent sync operations, and comprehensive multi-customer support.

14 lines (12 loc) 567 B
/** * NEWO CLI Sync Operations - Modular architecture entry point */ // Re-export from specialized modules export { saveCustomerAttributes } from './sync/attributes.js'; export { pullConversations } from './sync/conversations.js'; export { status } from './sync/status.js'; export { pullSingleProject, pullAll } from './sync/projects.js'; export { pushChanged } from './sync/push.js'; export { generateFlowsYaml } from './sync/metadata.js'; // Re-export type guards for backward compatibility export { isProjectMap, isLegacyProjectMap } from './sync/projects.js';