newo
Version:
NEWO CLI: Professional command-line tool with modular architecture for NEWO AI Agent development. Features account migration, integration management, webhook automation, AKB knowledge base, project attributes, sandbox testing, IDN-based file management, r
15 lines (13 loc) • 619 B
text/typescript
/**
* 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';
export { migrateAccount } from './sync/migrate.js';
// Re-export type guards for backward compatibility
export { isProjectMap, isLegacyProjectMap } from './sync/projects.js';