UNPKG

heat-sfdx-metadata

Version:

![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat) [![npm version](https://badge.fury.io/js/heat-sfdx-metadata.svg)](https://badge.fury.io/js/heat-sfdx-metadata) [![Code Climate](https://codeclimate.com/github/takahitomiyamoto/hea

11 lines (10 loc) 923 B
/** * @name index.ts * @description index */ import { createMetadata, deleteMetadata, readMetadata, renameMetadata, updateMetadata, upsertMetadata } from './crud-based-calls'; import { cancelDeploy, checkDeployStatus, deploy, deployRecentValidation, retrieve } from './file-based-calls'; import { checkRetrieveStatus, describeMetadata, describeValueType, listMetadata } from './utility-calls'; import { METADATA_TYPE2FOLDER_MAP, METADATA_FOLDER2TYPE_MAP, methodsMetadata, specificationMetadata } from './common'; import { buildManifest } from './custom-calls'; export { buildManifest, createMetadata, deleteMetadata, readMetadata, renameMetadata, updateMetadata, upsertMetadata, cancelDeploy, checkDeployStatus, deploy, deployRecentValidation, retrieve, checkRetrieveStatus, describeMetadata, describeValueType, listMetadata, METADATA_TYPE2FOLDER_MAP, METADATA_FOLDER2TYPE_MAP, methodsMetadata, specificationMetadata };