UNPKG

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

13 lines 752 B
import type { AxiosInstance } from 'axios'; import type { ProjectMap, LegacyProjectMap, CustomerConfig } from '../types.js'; export declare function isProjectMap(x: unknown): x is ProjectMap; export declare function isLegacyProjectMap(x: unknown): x is LegacyProjectMap; /** * Pull a single project and all its data */ export declare function pullSingleProject(client: AxiosInstance, customer: CustomerConfig, projectId: string | null, verbose?: boolean, silentOverwrite?: boolean): Promise<void>; /** * Pull all projects for a customer */ export declare function pullAll(client: AxiosInstance, customer: CustomerConfig, projectId?: string | null, verbose?: boolean, silentOverwrite?: boolean): Promise<void>; //# sourceMappingURL=projects.d.ts.map