dynamicsnode
Version:
Create simple scripts to interact with Dynamics CRM using Node.js
8 lines (7 loc) • 428 B
TypeScript
import { CRMClient } from "./CRMClient";
export declare class ImportExportUtil {
/** Exports all the existing records of a given entity to the specified file */
static export(client: CRMClient, entityName: string, fileName: string): void;
/** Loads the specified file in CRM. If the record exists, then it updates. Otherwhise, it creates it. */
static import(client: CRMClient, fileName: string): void;
}