UNPKG

@salesforce/acu-pack

Version:
52 lines 2.68 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const os = require("os"); class Constants { } exports.default = Constants; Constants.PLUGIN_NAME = 'acu-pack'; Constants.DEFAULT_XML_NAMESPACE = 'http://soap.sforce.com/2006/04/metadata'; // public static readonly METADATA_COVERAGE_REPORT_URL = 'https://mdcoverage.secure.force.com/services/apexrest/report'; Constants.METADATA_COVERAGE_REPORT_URL = 'https://dx-extended-coverage.my.salesforce-sites.com/services/apexrest/report'; Constants.DEFAULT_PACKAGE_NAME = 'package.xml'; Constants.DEFAULT_PACKAGE_PATH = 'manifest/' + Constants.DEFAULT_PACKAGE_NAME; Constants.SFDX_DESCRIBE_METADATA = 'sfdx force:mdapi:describemetadata'; Constants.SFDX_APEX_EXECUTE = 'sfdx force:apex:execute'; Constants.SFDX_SOURCE_RETRIEVE = 'sfdx force:source:retrieve'; Constants.SFDX_PROJECT_CREATE = 'sfdx force:project:create'; Constants.SFDX_MDAPI_LISTMETADATA = 'sfdx force:mdapi:listmetadata'; Constants.SFDX_SCHEMA_DESCRIBE = 'sfdx force:schema:sobject:describe'; Constants.SFDX_DATA_UPSERT = 'sfdx force:data:bulk:upsert'; Constants.SFDX_DATA_STATUS = 'sfdx force:data:bulk:status'; Constants.SFDX_ORG_DISPLAY = 'sfdx force:org:display'; Constants.SFDX_SOURCE_STATUS = 'sfdx force:source:status'; Constants.SFDX_CONFIG_GET = 'sfdx config:get'; Constants.SFDX_CONFIG_SET = 'sfdx config:set'; Constants.SFDX_CONFIG_DEFAULT_USERNAME = 'defaultusername'; Constants.SFDX_CONFIG_MAX_QUERY_LIMIT = 'maxQueryLimit'; Constants.SFDX_PERMISSION_APEX_CLASS = 'ApexClass'; Constants.SFDX_PERMISSION_APEX_PAGE = 'ApexPage'; Constants.SFDX_PERMISSION_CUSTOM_APP = 'CustomApplication'; Constants.SFDX_PERMISSION_CUSTOM_OBJ = 'CustomObject'; Constants.SFDX_PERMISSION_CUSTOM_FIELD = 'CustomField'; Constants.SFDX_PERMISSION_CUSTOM_TAB = 'CustomTab'; Constants.SFDX_PERMISSION_SET = 'PermissionSet'; Constants.SFDX_PERMISSION_PROFILE = 'Profile'; Constants.SFDX_PERMISSION_RECORD_TYPE = 'RecordType'; Constants.SFDX_PERMISSION_LAYOUT = 'Layout'; Constants.SFDX_DATA_QUERY = 'sfdx force:data:soql:query'; Constants.DEFAULT_PROJECT_FILE_NAME = 'sfdx-project.json'; Constants.DEFAULT_SFDC_LOGIN_URL = 'https://login.salesforce.com'; Constants.DEFAULT_PACKAGE_VERSION = '49.0'; Constants.ENOENT = 'ENOENT'; Constants.CONTENT_TYPE_APPLICATION = 'application/octetstream'; Constants.HEADERS_CONTENT_TYPE = 'content-type'; Constants.METADATA_FILE_SUFFIX = '-meta.xml'; Constants.HTTP_STATUS_REDIRECT = [301]; Constants.EOL = os.EOL; Constants.CR = '\r'; Constants.LF = '\n'; Constants.CONENTVERSION_MAX_SIZE = 37000000; Constants.MIME_JSON = 'application/json'; Constants.DEFAULT_CSV_TEXT_WRAPPERS = ['"']; //# sourceMappingURL=constants.js.map