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
32 lines • 916 B
TypeScript
/**
* Account migration operations
* Migrates complete account from source to destination
*/
import type { AxiosInstance } from 'axios';
import type { CustomerConfig } from '../types.js';
interface MigrationOptions {
sourceCustomer: CustomerConfig;
destCustomer: CustomerConfig;
sourceClient: AxiosInstance;
destClient: AxiosInstance;
verbose: boolean;
}
interface MigrationResult {
success: boolean;
projectsCreated: number;
agentsCreated: number;
flowsCreated: number;
skillsCreated: number;
attributesMigrated: number;
personasCreated: number;
articlesImported: number;
connectorsCreated: number;
webhooksCreated: number;
errors: string[];
}
/**
* Migrate complete account from source to destination
*/
export declare function migrateAccount(options: MigrationOptions): Promise<MigrationResult>;
export {};
//# sourceMappingURL=migrate.d.ts.map