UNPKG

@salesforce/source-deploy-retrieve

Version:

JavaScript library to run Salesforce metadata deploys and retrieves

10 lines (9 loc) 526 B
import type { CustomLabel } from '@jsforce/jsforce-node/lib/api/metadata'; import { XMLParser } from 'fast-xml-parser'; export declare const parser: XMLParser; export declare function generateMetaXML(typeName: string, apiVersion: string, status: string): string; export declare function generateMetaXMLPath(sourcePath: string): string; export declare function trimMetaXmlSuffix(sourcePath: string): string; export declare const customLabelHasFullName: (label: CustomLabel) => label is CustomLabel & { fullName: string; };